/* ══════════════════════════════════════════
   DEVDAHA TOURS & TRAVELS — main.css v1.0
══════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --green-dark:    #0a3d1f;
    --green-mid:     #145a32;
    --green-accent:  #1e8449;
    --gold:          #c9a227;
    --gold-light:    #f0c040;
    --cream:         #fdf8ef;
    --sand:          #f5ead5;
    --white:         #ffffff;
    --text-dark:     #1a1a1a;
    --text-mid:      #4a4a4a;
    --text-light:    #7a7a7a;
    --nav-height:    72px;
    --container-max: 1180px;
    --radius:        4px;
    --transition:    0.25s ease;
    --shadow:        0 8px 32px rgba(10,61,31,0.10);
    --shadow-hover:  0 16px 48px rgba(10,61,31,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

/* ── Typography ── */
.section-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 0.6rem;
}
.section-label--light { color: var(--gold); }
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 560px; }
.section-sub--light { color: rgba(255,255,255,0.65); }
.section-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,162,39,0.1); }
.btn-outline-green {
    display: inline-block;
    border: 1px solid var(--green-accent);
    color: var(--green-accent);
    padding: 0.8rem 1.8rem;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--transition), color var(--transition);
}
.btn-outline-green:hover { background: var(--green-accent); color: var(--white); }
.btn-submit {
    width: 100%;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    padding: 0.95rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--transition);
}
.btn-submit:hover { background: var(--green-accent); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}
.main-nav {
    height: var(--nav-height);
    background: rgba(10,61,31,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,39,0.25);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-logo {
    display: flex; flex-direction: column;
    line-height: 1.2;
    flex-shrink: 0;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.01em;
}
.logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.nav-logo .custom-logo { height: 44px; width: auto; }
.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.7rem;
    border-radius: 2px;
    transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--gold-light); }
.nav-cta {
    background: var(--gold);
    color: var(--green-dark);
    padding: 0.5rem 1.1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    width: 38px; height: 38px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px; height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; }

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-height);
    background: linear-gradient(160deg, var(--green-dark) 0%, #0d4a25 40%, #1a5c30 70%, #0a3018 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(10,61,31,0.85) 0%, rgba(10,61,31,0.5) 60%, rgba(10,61,31,0.7) 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30,132,73,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.hero-mountain {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 280px;
    pointer-events: none;
}
.hero-section .container {
    position: relative; z-index: 2;
    padding-top: 3rem; padding-bottom: 8rem;
}
.hero-content { max-width: 660px; }
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(201,162,39,0.45);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    margin-bottom: 1.75rem;
    border-radius: 1px;
}
.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-heading em { color: var(--gold-light); font-style: italic; }
.hero-subtext { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 0.75rem; max-width: 540px; }
.hero-slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    opacity: 0.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}
.stat-item { flex: 1; text-align: center; }
.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section { background: var(--white); padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.about-image-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--green-dark), var(--green-accent));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.about-badge-float {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--gold);
    color: var(--green-dark);
    padding: 1.5rem; border-radius: 3px; text-align: center;
    min-width: 120px;
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.badge-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; display: block; margin-top: 0.25rem; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.value-item strong { display: block; color: var(--green-dark); font-weight: 500; margin-bottom: 0.2rem; font-size: 0.95rem; }
.value-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ════════════════════════════════════════
   DESTINATIONS SECTION
════════════════════════════════════════ */
.destinations-section { background: var(--cream); padding: 6rem 0; }
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}
.dest-card--featured { grid-row: span 2; }
.dest-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dest-card-link { display: block; color: inherit; }
.dest-img { position: relative; overflow: hidden; }
.dest-photo { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.dest-card--featured .dest-photo { height: 100%; min-height: 380px; }
.dest-card:hover .dest-photo { transform: scale(1.03); }
.dest-photo-placeholder { width: 100%; height: 220px; }
.dest-card--featured .dest-photo-placeholder { min-height: 380px; }
.dest-placeholder-1 { background: linear-gradient(160deg, #0a3d1f, #1e8449); }
.dest-placeholder-2 { background: linear-gradient(160deg, #0d4a2a, #1e8449); }
.dest-placeholder-3 { background: linear-gradient(160deg, #0c4a6e, #1565a0); }
.dest-placeholder-4 { background: linear-gradient(160deg, #3d1a0a, #8b4513); }
.dest-placeholder-5 { background: linear-gradient(160deg, #1a3a1a, #2d6a2d); }
.dest-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--gold); color: var(--green-dark);
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.28rem 0.7rem; border-radius: 1px;
}
.dest-info { padding: 1.25rem; }
.dest-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.dest-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.dest-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; font-size: 0.75rem; color: var(--text-light); }

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-section {
    background: var(--green-dark);
    padding: 6rem 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
    background: rgba(201,162,39,0.08);
    border-color: rgba(201,162,39,0.25);
    transform: translateY(-2px);
}
.service-icon {
    width: 50px; height: 50px;
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}
.service-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ════════════════════════════════════════
   TOUR PACKAGES
════════════════════════════════════════ */
.tours-section { background: var(--white); padding: 6rem 0; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tour-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.tour-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.tour-img { overflow: hidden; }
.tour-photo { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.tour-card:hover .tour-photo { transform: scale(1.04); }
.tour-photo-placeholder { width: 100%; height: 200px; background: linear-gradient(160deg, var(--green-mid), var(--green-accent)); }
.tour-body { padding: 1.25rem; }
.tour-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.tour-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.75rem; }
.tour-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem; }
.tour-footer { display: flex; justify-content: space-between; align-items: center; }
.tour-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-section { background: var(--sand); padding: 6rem 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card {
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.75rem 2rem;
}
.why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section { background: var(--green-mid); padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.test-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
}
.test-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 500; font-size: 0.9rem;
    color: var(--green-dark); flex-shrink: 0;
}
.test-avatar-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.test-name { font-size: 0.9rem; color: var(--white); font-weight: 500; margin-bottom: 0.1rem; }
.test-loc { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
.blog-section { background: var(--cream); padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-img { display: block; overflow: hidden; }
.blog-photo { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-photo { transform: scale(1.04); }
.blog-body { padding: 1.25rem; }
.blog-date { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-dark); line-height: 1.35; margin-bottom: 0.5rem; }
.blog-title a:hover { color: var(--green-accent); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 0.75rem; }
.read-more { font-size: 0.82rem; color: var(--green-accent); font-weight: 500; }
.read-more:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section { background: var(--cream); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 2.5rem; }
.contact-intro { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 46px; height: 46px; background: var(--green-dark);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--text-dark); }
.contact-detail a:hover { color: var(--green-accent); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-mid); }
.form-group label span { color: var(--green-accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 3px;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus { border-color: var(--green-accent); }
textarea { min-height: 110px; resize: vertical; }
.form-success {
    background: #e8f5e9; border: 1px solid #81c784;
    border-radius: 3px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
    color: #2e7d32; margin-bottom: 1rem;
}
.form-success span { font-size: 1.2rem; }
.form-error {
    background: #ffebee; border: 1px solid #e57373;
    border-radius: 3px; padding: 0.75rem 1rem;
    color: #c62828; font-size: 0.875rem; margin-bottom: 1rem;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer { background: #060f08; }
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.15rem; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; margin-bottom: 0.75rem; }
.footer-slogan { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: rgba(255,255,255,0.28); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
    width: 36px; height: 36px; border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { color: var(--white); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-contact .contact-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; background: none; width: auto; height: auto; }
.footer-contact a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.75rem;
}
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.copyright a { color: rgba(255,255,255,0.45); }
.back-to-top { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.back-to-top:hover { color: var(--gold); }

/* ════════════════════════════════════════
   ARCHIVE / SINGLE PAGES
════════════════════════════════════════ */
.page-header {
    background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
    padding: calc(var(--nav-height) + 3rem) 0 3rem;
    text-align: center;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
}
.page-header p { color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.archive-grid, .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 4rem 0;
}
.post-content { padding: 5rem 0; max-width: 780px; }
.post-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.post-content .entry-content p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text-mid); }
.post-content .entry-content h2, .post-content .entry-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    margin: 2rem 0 0.75rem;
}
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 4rem 0; }
.widget { margin-bottom: 2rem; }
.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: var(--green-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .dest-grid, .destinations-grid { grid-template-columns: 1fr 1fr; }
    .dest-card--featured { grid-row: span 1; }
    .dest-card--featured .dest-photo { min-height: 220px; }
    .tours-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .archive-grid { grid-template-columns: 1fr 1fr; }
    .with-sidebar { grid-template-columns: 1fr; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: rgba(10,61,31,0.98); padding: 1rem 5%; gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links li a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
    .destinations-grid, .tours-grid, .blog-grid, .testimonials-grid, .archive-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .stats-row { gap: 0; }
    .stat-divider { display: none; }
    .about-badge-float { right: 0; bottom: -1rem; }
    .hero-actions { flex-direction: column; }
}
@media print {
    .site-header, .hero-stats, footer, .btn-primary, .btn-outline, .nav-cta { display: none; }
    body { font-size: 12pt; }
}
