/* Reset and Base Styles */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: Arial, Helvetica, sans-serif; background: #fff; color: #302014; }
img { max-width: 100%; display: block; }

/* CSS Variables - Color Palette */
:root {
    --brown: #9b632b;
    --brown2: #704117;
    --cream: #fbf5ec;
    --sand: #f5ead8;
    --dark: #332014;
    --muted: #76685d;
    --line: #eadcc8;
    --white: #fff;
}

/* Layout */
.container { width: 92%; max-width: 1180px; margin: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brown);
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    border: 0;
    box-shadow: 0 14px 28px rgba(155, 99, 43, .25);
    transition: .25s;
}
.btn:hover { background: var(--brown2); transform: translateY(-2px); }
.btn.light { background: #fff; color: var(--brown) !important; }
.btn.outline { background: transparent; border: 1px solid rgba(255, 255, 255, .7); box-shadow: none; }

/* Sections */
.section { padding: 78px 0; }
.kicker { display: block; text-align: center; color: var(--brown); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; font-weight: 900; margin-bottom: 10px; }
.section-title { text-align: center; font-family: Georgia, serif; font-size: 44px; line-height: 1.1; color: var(--dark); margin: 0 0 14px; }
.section-subtitle { max-width: 800px; margin: 0 auto 42px; text-align: center; color: var(--muted); line-height: 1.8; font-size: 17px; }

/* Top Bar */
.topbar { background: var(--cream); border-bottom: 1px solid var(--line); font-size: 14px; color: var(--dark); }
.topbar .container { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.topbar a { color: var(--dark); text-decoration: none; font-weight: 700; }

/* Header & Navigation */
.header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 18px rgba(0, 0, 0, .06); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo img { height: 70px; width: auto; }
.menu { display: flex; gap: 24px; align-items: center; }
.menu a { color: var(--dark); text-decoration: none; text-transform: uppercase; font-weight: 800; font-size: 13px; }
.menu a:hover { color: var(--brown); }
.has-drop { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); min-width: 240px; box-shadow: 0 16px 36px rgba(0, 0, 0, .12); border-radius: 12px; padding: 10px; }
.has-drop:hover .dropdown { display: grid; }
.dropdown a { padding: 12px; border-radius: 8px; text-transform: none; }
.dropdown a:hover { background: var(--cream); }

/* Hero Section */
.hero {
    min-height: 670px;
    background: linear-gradient(90deg, rgba(51, 32, 20, .85), rgba(51, 32, 20, .34)), url('/assets/img/hero.svg') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-content { max-width: 760px; padding: 90px 0; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); padding: 9px 15px; border-radius: 999px; text-transform: uppercase; font-size: 13px; letter-spacing: 1.5px; font-weight: 800; margin-bottom: 20px; }
.hero h1 { font-family: Georgia, serif; font-size: 64px; line-height: 1.05; margin: 0 0 20px; color: #fff; }
.hero p { font-size: 18px; line-height: 1.75; color: rgba(255, 255, 255, .9); margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Slider */
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(51, 32, 20, .85), rgba(51, 32, 20, .34)); }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -55px; position: relative; z-index: 5; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; text-align: center; box-shadow: 0 18px 40px rgba(0, 0, 0, .10); }
.feature .icon { width: 54px; height: 54px; background: var(--brown); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 24px; }
.feature h3 { margin: 0 0 8px; color: var(--dark); }
.feature p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Intro Section */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.intro img { height: 510px; width: 100%; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 50px rgba(0, 0, 0, .14); }
.intro h2 { font-family: Georgia, serif; font-size: 42px; color: var(--dark); line-height: 1.14; margin: 0 0 16px; }
.intro p { color: var(--muted); line-height: 1.8; }

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--dark); line-height: 1.5; }
.check-list li:before { content: '✓'; position: absolute; left: 0; top: 0; background: var(--brown); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; }

/* Tour Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 12px 38px rgba(0, 0, 0, .08); transition: .25s; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0, 0, 0, .14); }
.tour-img { height: 245px; position: relative; overflow: hidden; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.tour-card:hover .tour-img img { transform: scale(1.06); }
.tag { position: absolute; top: 16px; left: 16px; background: var(--brown); color: #fff; padding: 8px 12px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.tour-body { padding: 24px; }
.tour-body h3 { font-family: Georgia, serif; font-size: 24px; line-height: 1.25; margin: 0 0 10px; color: var(--dark); }
.tour-body p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.tour-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 15px 0; }
.tour-meta span { background: var(--cream); border: 1px solid var(--line); color: var(--dark); font-weight: 800; font-size: 12px; border-radius: 999px; padding: 8px 10px; }
.tour-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.tour-buttons .btn { padding: 12px 10px; font-size: 13px; }

/* Category Hero */
.category-hero { background: linear-gradient(90deg, rgba(51, 32, 20, .82), rgba(51, 32, 20, .35)), url('/assets/img/desert.svg') center/cover no-repeat; color: #fff; padding: 105px 0; }
.category-hero h1 { font-family: Georgia, serif; font-size: 54px; margin: 0 0 15px; }
.category-hero p { max-width: 780px; line-height: 1.8; color: rgba(255, 255, 255, .9); }

/* Page Grid & Boxes */
.page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.box { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: 0 12px 34px rgba(0, 0, 0, .07); margin-bottom: 24px; }
.box h2 { font-family: Georgia, serif; color: var(--dark); font-size: 32px; margin: 0 0 16px; }
.box p { color: var(--muted); line-height: 1.8; }

/* Contact Form */
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--line); background: var(--cream); border-radius: 12px; padding: 15px; font: inherit; }
.contact-form textarea { min-height: 130px; }

/* Footer */
.footer { background: var(--dark); color: #fff; padding: 55px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 30px; }
.footer h3 { font-family: Georgia, serif; margin: 0 0 15px; color: #fff; font-size: 18px; }
.footer h4 { font-size: 14px; margin: 0 0 10px; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1px; }
.footer p, .footer a, .footer li { color: rgba(255, 255, 255, .78); line-height: 1.7; font-size: 14px; text-decoration: none; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a:hover { color: var(--brown); }
.footer-logo { max-width: 240px; background: var(--cream); border-radius: 18px; margin-bottom: 15px; }
.footer-desc { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

/* Language Selector in Footer */
.footer-languages { margin-top: 20px; }
.language-selector { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
}
.lang-link:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}
.lang-link.active {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
}

/* Payment Methods */
.footer-payment { margin-top: 20px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 4px 6px;
}
.payment-icon svg { display: block; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 18px; margin-top: 32px; text-align: center; color: rgba(255, 255, 255, .65); font-size: 13px; }
.footer-legal { margin-top: 8px; display: flex; justify-content: center; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.5); font-size: 12px; }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* WhatsApp Float Button */
.wa-float { position: fixed; right: 18px; bottom: 18px; background: #25D366; color: #fff; text-decoration: none; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 99; font-size: 25px; font-weight: 900; box-shadow: 0 14px 28px rgba(0, 0, 0, .25); }

/* Form Messages */
.thank { background: #dff4e7; color: #164a2b; padding: 14px; border-radius: 12px; margin-bottom: 18px; font-weight: 700; }
.error { background: #fde2e2; color: #792020; padding: 14px; border-radius: 12px; margin-bottom: 18px; font-weight: 700; }

/* Blog Slider */
.blog-slider-wrapper { position: relative; overflow: hidden; padding: 0 40px; }
.blog-slider { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; overflow-x: hidden; scroll-behavior: smooth; }
.blog-slider::-webkit-scrollbar { display: none; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, .06); transition: .25s; display: flex; flex-direction: column; min-width: 280px; max-width: 320px; flex-shrink: 0; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .1); }
.blog-img { height: 160px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: .3s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-family: Georgia, serif; font-size: 17px; line-height: 1.3; margin: 0 0 8px; color: var(--dark); }
.blog-body p { color: var(--muted); line-height: 1.6; font-size: 13px; margin-bottom: 12px; flex: 1; }
.blog-body .btn { align-self: flex-start; padding: 10px 18px; font-size: 12px; }

/* Blog Slider Navigation */
.blog-slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.blog-slider-nav button {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
    background: #fff; color: var(--brown); cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: .25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.blog-slider-nav button:hover { background: var(--brown); color: #fff; border-color: var(--brown); }
.blog-slider-nav button svg { width: 18px; height: 18px; }

/* Responsive - Tablet */
@media (max-width: 950px) {
    .topbar { display: none; }
    .menu { display: none; }
    .features, .cards, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .intro, .page-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 46px; }
    .hero { min-height: 560px; }
    .blog-card { min-width: 260px; max-width: 280px; }
}

/* Responsive - Mobile */
@media (max-width: 650px) {
    .logo img { height: 56px; }
    .nav { min-height: 76px; }
    .hero { min-height: auto; }
    .hero-content { padding: 70px 0; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    .hero-actions .btn { width: 100%; }
    .features { grid-template-columns: 1fr; margin-top: 30px; }
    .section { padding: 52px 0; }
    .section-title { font-size: 34px; }
    .cards, .footer-grid { grid-template-columns: 1fr; }
    .tour-buttons { grid-template-columns: 1fr; }
    .intro img { height: 320px; }
    .category-hero { padding: 70px 0; }
    .category-hero h1 { font-size: 36px; }
    .blog-body .btn { width: 100%; }
    .blog-slider-wrapper { padding: 0 30px; }
    .blog-card { min-width: 240px; max-width: 260px; }
    .blog-img { height: 140px; }
    .blog-body { padding: 14px; }
    .blog-body h3 { font-size: 15px; }
    .blog-slider-nav button { width: 38px; height: 38px; }
}
