/* Blog Page Content Fallbacks */
.blog-hero, .expert-advice, .featured-blog, .blog-posts, .share-story-section, .blog-newsletter, .tips-categories {
    min-height: 120px;
    padding-bottom: 2rem;
    background: #fff;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    /* NOTE: destinations refactor - design tokens & premium layout */
    :root{
        --container: 1200px;
        --space-1:.5rem; --space-2:1rem; --space-3:1.5rem; --space-4:2rem; --space-6:3rem;
        --radius:16px; --radius-sm:12px;
        --brand:#0e3a8c;
        --accent:#25D366;
        --text:#1b2840; --muted:#5c6b82; --bg:#f7f9fc; --card:#ffffff;
        --shadow:0 8px 24px rgba(9,30,66,.12);
    }
    .container{max-width:var(--container);margin:auto;padding:0 var(--space-2);}
    .section{padding:var(--space-6) 0;}
    h1,h2,h3{color:var(--text);line-height:1.2;}
    p{color:var(--muted);}

    /* Hero styles */
    .hero{position:relative;}
    .hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.15) 40%,transparent);}
    .hero h1,.hero p{color:#fff;}
    .hero .container{position:relative;z-index:1;}
    img.hero-img{width:100%;height:360px;object-fit:cover;border-radius:var(--radius);}

    /* Sticky chip tabs */
    .chip-tabs{position:sticky;top:72px;z-index:30;background:var(--bg);padding:var(--space-2) 0;margin:-28px 0 var(--space-3);}
    .chip{display:inline-flex;align-items:center;padding:.6rem 1rem;border-radius:999px;background:#fff;box-shadow:var(--shadow);margin-right:8px;}
    .chip.active{background:var(--brand);color:#fff;}
    [id]{scroll-margin-top:96px;}

    /* Tour card grid */
    .grid{display:grid;gap:var(--space-3);}
    @media(min-width:640px){.grid{grid-template-columns:repeat(2,1fr);} }
    @media(min-width:992px){.grid{grid-template-columns:repeat(3,1fr);} }

    .tour-card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column;}
    .tour-media{aspect-ratio:16/9;overflow:hidden;}
    .tour-media img{width:100%;height:100%;object-fit:cover;display:block;}
    .tour-body{padding:var(--space-3);}
    .tour-title{font-size:1.125rem;font-weight:700;margin:0 0 var(--space-1);}
    .tour-highlights{margin:0 0 var(--space-2);padding-left:1.1rem;}
    .tour-meta{font-size:.9rem;color:var(--muted);margin-bottom:var(--space-2);}
    .cta-row{margin-top:auto;display:flex;gap:.5rem;padding:var(--space-3);padding-top:0;}
    .btn{display:inline-flex;align-items:center;justify-content:center;padding:.7rem 1rem;border-radius:999px;font-weight:600;border:1px solid transparent;cursor:pointer;text-decoration:none;}
    .btn-whatsapp{background:var(--accent);color:#0b3621;}
    .btn-outline{background:#fff;border-color:#e6ebf2;color:var(--text);}

    /* Popular Combinations */
    .combo-card{background:var(--card);border-radius:var(--radius-sm);box-shadow:var(--shadow);padding:var(--space-3);}
    .price-badge{background:#0ea5e9;color:#fff;border-radius:999px;padding:.25rem .6rem;font-weight:700;font-size:.9rem;}

    @media(min-width:992px){.floating-whatsapp{bottom:24px;right:24px}}
body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
    scroll-behavior: smooth;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar height */
}

/* Loading States */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a3c6e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Transitions */
*, *::before, *::after {
    transition: all 0.3s ease;
}

/* Modern Navigation Styles */
.navbar {
    background: -webkit-linear-gradient(135deg, #1a3c6e 0%, #2a5b9e 100%);
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5b9e 100%);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.navbar.navbar-hidden {
    transform: translateY(-100%) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 80px;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

.brand-tagline {
    color: #b8d4f0;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f4c430;
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(244, 196, 48, 0.2);
    color: #f4c430;
}

.nav-link i {
    font-size: 0.9rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-link:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.dropdown-link:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #1a3c6e;
    padding-left: 2rem;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.book-now-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f4c430 0%, #e6b42e 100%);
    color: #1a3c6e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(244, 196, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #e6b42e 0%, #d4a128 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.4);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(244, 196, 48, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-nav-header h3 {
    color: #1a3c6e;
    font-family: "Playfair Display", serif;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a3c6e;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: #f0f0f0;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #1a3c6e;
}

.mobile-nav-link.active {
    background: #e3f2fd;
    color: #1a3c6e;
    font-weight: 600;
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0.5rem 0 0 2rem;
    padding: 0;
    display: none;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.3rem;
}

.mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background: #f0f0f0;
    color: #1a3c6e;
}

.mobile-nav-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
}

.mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f4c430;
    color: #1a3c6e;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
}

/* Hero Slideshow */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1.2s ease-in;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-in;
}

.cta-button {
    background: #f4c430;
    color: #1a3c6e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e0b120;
    transform: translateY(-3px);
}

.submit-user {
    background: #1d6fdb;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    width: min-content;
}
.submit-user:hover {
    background: #155bbd;
    transform: translateY(-3px);
}

input:read-only{
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd !important;
}

.secondary-button {
    background: transparent;
    color: #1a3c6e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #1a3c6e;
    cursor: pointer;
}

.secondary-button:hover {
    background: #1a3c6e;
    color: white;
    transform: translateY(-3px);
}

/* Slideshow Navigation */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #f4c430;
}

/* Sections */
.destinations,
.packages,
.about,
.booking,
.contact,
.why-choose-us,
.featured-experiences {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

    .destinations h1,
    .destinations h2,
    .packages h1,
    .packages h2,
    .about h1,
    .about h2,
    .booking h1,
    .booking h2,
    .contact h1,
    .contact h2,
    .why-choose-us h2,
    .featured-experiences h2 {
        font-size: 2rem;
    }

.destinations p,
.packages p,
.about p,
.booking p,
.contact p,
.why-choose-us p,
.featured-experiences p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item p {
    padding: 1rem;
    background: white;
    margin: 0;
}

.destination-grid,
.feature-grid,
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.destination-card,
.feature,
.experience-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.destination-card:hover,
.feature:hover,
.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-card img,
.feature img,
.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h3,
.feature h3,
.experience-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-family: "Playfair Display", serif;
    color: #1a3c6e;
    font-size: 1.5rem;
}

.destination-card p,
.feature p,
.experience-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #1a3c6e;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.card-link:hover {
    background: #2a5b9e;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.card-actions .card-link {
    margin: 0;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.card-actions .secondary-button {
    margin: 0;
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* Section Actions */
.section-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured Experiences */
.experience-card {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.experience-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.experience-content h3 {
    padding: 0 0 0.5rem 0;
    margin-bottom: 1rem;
}

.experience-content p {
    padding: 0 0 1rem 0;
    flex: 1;
}

.experience-duration {
    display: inline-block;
    background: #f4c430;
    color: #1a3c6e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.experience-content .cta-button {
    align-self: stretch;
    margin: 0;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature h4 {
    color: #1a3c6e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Enhanced Destination Page Styles */
.destinations-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-nav {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-button {
    padding: 1rem 2rem;
    background: #f8f8f8;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-button:hover {
    background: #e0e0e0;
    color: #1a3c6e;
}

.tab-button.active {
    background: #1a3c6e;
    color: white;
}

.destination-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destination-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.destination-detail.active {
    display: block;
}

.destination-hero {
    height: 50vh;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.destination-overlay h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.destination-overlay p {
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-info {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.info-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: left;
}

.highlights,
.trip-details {
    margin-bottom: 2rem;
}

.highlights h4,
.trip-details h4 {
    color: #1a3c6e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlights ul,
.trip-details ul {
    list-style: none;
    padding: 0;
}

.highlights li,
.trip-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.trip-details li strong {
    color: #1a3c6e;
}

.info-gallery {
    text-align: center;
}

.gallery-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumbs img:hover {
    transform: scale(1.1);
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-section .cta-button {
    margin-right: 1rem;
}

/* Enhanced Booking Page Styles */
.booking-hero {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.booking-hero .hero-background {
    background-image: url("/assets/images/SERENGETI2.jpg");
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.destination-selector {
    padding: 4rem 2rem;
    background: white;
}

.destination-selector h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 3rem;
}

.destination-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dest-card.active {
    border-color: #f4c430;
    transform: translateY(-10px);
}

.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dest-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-family: "Playfair Display", serif;
    color: #1a3c6e;
    font-size: 1.3rem;
}

.dest-card p {
    padding: 0 1.5rem 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.dest-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #f4c430;
    font-weight: bold;
    font-size: 1.1rem;
}

.booking-form-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.form-container {
    max-width: 50rem;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 2rem;
    background: #fafafa;
}

.form-section h3 {
    color: #1a3c6e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3c6e;
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enhanced form validation states */
.form-group input:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group input:invalid:not(:placeholder-shown) + .error-message {
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.total-guests {
    margin-top: 1rem;
    padding: 1rem;
    background: #e8f4fd;
    border-radius: 5px;
    text-align: center;
    color: #1a3c6e;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.why-book {
    padding: 4rem 2rem;
    background: white;
}

.why-book h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f8f8;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #1a3c6e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
form {
    /* max-width: 600px; */
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #1a3c6e;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5b9e 100%);
    color: white;
    padding: 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem 0;
}

.footer-section h4 {
    color: #f4c430;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-family: "Playfair Display", serif;
}

.footer-description {
    color: #b8d4f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(244, 196, 48, 0.2);
    color: #f4c430;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8d4f0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #f4c430;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    content: "â–¶";
    position: absolute;
    left: -0.3rem;
    color: #f4c430;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: #f4c430;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-details a {
    color: #b8d4f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

.footer-social-newsletter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h4,
.newsletter-section h4 {
    color: #f4c430;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.email {
    background: #EA4335;
}

.social-link.facebook {
    background: #1877F2;
}

.newsletter-section p {
    color: #b8d4f0;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: #f4c430;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: #f4c430;
    color: #1a3c6e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #e6b42e;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #b8d4f0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #b8d4f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f4c430;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #f4c430;
}

.payment-text {
    background: rgba(244, 196, 48, 0.2);
    color: #f4c430;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading skeleton */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    height: 20px;
    margin: 10px 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Error message styling */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a3c6e;
        flex-direction: column;
        padding: 1.5rem 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link, .dropdown-link {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        min-width: 48px;
        min-height: 48px;
    }

    .menu-toggle, .mobile-menu-toggle {
        display: flex;
        padding: 1rem;
        min-width: 48px;
        min-height: 48px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .destination-grid,
    .feature-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }

    .destination-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
    }

    .section-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-actions .cta-button,
    .section-actions .secondary-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem 0;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 1.1rem;
        min-width: 48px;
        min-height: 48px;
        padding: 0.8rem 0.5rem;
    }

    .contact-item {
        font-size: 1.1rem;
        min-width: 48px;
        min-height: 48px;
    }

    .footer-social-newsletter {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .newsletter-input, .newsletter-btn {
        font-size: 1.1rem;
        min-width: 48px;
        min-height: 48px;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .destinations h1,
    .destinations h2,
    .packages h1,
    .packages h2,
    .about h1,
    .about h2,
    .booking h1,
    .booking h2,
    .contact h1,
    .contact h2,
    .why-choose-us h2,
    .featured-experiences h2 {
        font-size: 2rem;
    }

    .prev,
    .next {
        padding: 8px;
        font-size: 14px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }

    /* Footer Responsive Styles */
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem 0;
    }
    
    .footer-social-newsletter {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Navigation Responsive Styles */
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        max-width: 100%;
    }
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
    height: 50vh;
    position: relative;
    overflow: hidden;
}
.about-hero .hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.about-hero p {
    font-size: 1.3rem;
}

.quick-facts {
    background: #f8f8f8;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}
.facts-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.fact-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 120px;
}
.fact-number {
    font-size: 2.2rem;
    color: #f4c430;
    font-weight: bold;
}
.fact-label {
    color: #1a3c6e;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.about-content .content-container {
    max-width: 1100px;
    margin: 0 auto;
}
.about-intro {
    margin-bottom: 3rem;
}
.intro-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
}

.why-choose-us-section {
    margin-bottom: 3rem;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.reason-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}
.reason-card:hover {
    transform: translateY(-7px);
}
.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.history-section,
.wildlife-section {
    margin: 3rem 0;
}
.section-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.section-content.reverse {
    flex-direction: row-reverse;
}
.text-content {
    flex: 2;
}
.image-content {
    flex: 1;
}
.history-image,
.wildlife-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.history-highlights,
.conservation-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.highlight,
.stat {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    color: #1a3c6e;
    font-size: 1rem;
}
.stat-number {
    font-weight: bold;
    color: #f4c430;
    font-size: 1.2rem;
}
.stat-label {
    color: #1a3c6e;
    font-size: 0.95rem;
}

.culture-section {
    margin: 3rem 0;
}
.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.culture-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.3s;
}
.culture-item:hover {
    transform: translateY(-7px);
}

.gallery-section {
    margin: 3rem 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 60, 110, 0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.mission-section {
    margin: 3rem 0;
}
.mission-content {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}
.mission-values {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.value {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    min-width: 180px;
}
.value-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.value h4 {
    color: #1a3c6e;
    margin-bottom: 0.3rem;
}

/* --- PACKAGES PAGE STYLES --- */
.packages-hero {
    height: 45vh;
    position: relative;
    overflow: hidden;
}
.packages-hero .hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.packages-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.packages-hero h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.packages-hero p {
    font-size: 1.2rem;
}

.package-categories {
    background: #fff;
    padding: 2rem 0;
    text-align: center;
}
.categories-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.category-btn {
    padding: 0.8rem 2rem;
    background: #f8f8f8;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.category-btn.active,
.category-btn:focus {
    background: #1a3c6e;
    color: #fff;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.package-image {
    position: relative;
}
.package-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f4c430;
    color: #1a3c6e;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
}
.package-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.package-meta {
    color: #1a3c6e;
    font-size: 0.98rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.package-description {
    color: #555;
    margin-bottom: 1.2rem;
}
.package-highlights,
.package-includes {
    margin-bottom: 1rem;
}
.package-highlights h4,
.package-includes h4 {
    color: #1a3c6e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.package-highlights ul,
.package-includes ul {
    list-style: none;
    padding: 0;
}
.package-highlights li,
.package-includes li {
    padding: 0.3rem 0;
    color: #666;
}
.package-pricing {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.price-info {
    color: #f4c430;
    font-size: 1.3rem;
    font-weight: bold;
}
.per-person {
    color: #1a3c6e;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}
.package-actions {
    display: flex;
    gap: 1rem;
}

.custom-package {
    background: #f8f8f8;
    padding: 4rem 2rem;
    text-align: center;
}
.custom-container {
    max-width: 900px;
    margin: 0 auto;
}
.custom-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.custom-features .feature {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.custom-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    height: 40vh;
    position: relative;
    overflow: hidden;
}
.contact-hero .hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-hero p {
    font-size: 1.1rem;
}

.contact-info {
    background: #fff;
    padding: 3rem 0;
}
.info-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.info-card {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 2.5rem;
    min-width: 220px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.info-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}
.contact-details {
    margin-top: 1rem;
}
.contact-item {
    color: #1a3c6e;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.whatsapp-btn {
    display: inline-block;
    margin-top: 1rem;
    background: #25d366;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.whatsapp-btn:hover {
    background: #128c7e;
}

.office-locations {
    background: #f8f8f8;
    padding: 3rem 0;
}
.locations-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.location-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 260px;
    max-width: 340px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.location-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.location-content {
    padding: 1.5rem;
}
.location-address,
.location-hours {
    color: #555;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}
.location-contact {
    color: #1a3c6e;
    font-size: 0.98rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-form-section {
    background: #fff;
    padding: 4rem 2rem;
}
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.form-header h2 {
    font-size: 2rem;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}
.form-header p {
    color: #666;
    font-size: 1.1rem;
}
.enhanced-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.form-section {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 2rem;
    background: #fafafa;
}
.form-section h3 {
    color: #1a3c6e;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: "Playfair Display", serif;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3c6e;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.error {
    border-color: #e74c3c !important;
}
.error-message {
    color: #e74c3c;
    font-size: 0.95rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.faq-section {
    background: #f8f8f8;
    padding: 4rem 2rem;
}
.faq-section h2 {
    text-align: center;
    color: #1a3c6e;
    margin-bottom: 2rem;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    color: #1a3c6e;
    font-weight: 600;
}
.faq-toggle {
    font-size: 1.5rem;
    color: #f4c430;
    margin-left: 1rem;
    transition: transform 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    color: #333;
    font-size: 1rem;
    padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 300px;
}

@media (max-width: 900px) {
    .facts-container,
    .info-container,
    .locations-grid,
    .custom-features,
    .mission-values,
    .reasons-grid,
    .culture-grid,
    .gallery-grid,
    .packages-container {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 600px) {
    .about-hero h1,
    .packages-hero h1,
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    .about-hero,
    .packages-hero,
    .contact-hero {
        height: 30vh;
    }
    .form-section {
        padding: 1rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.98rem;
    }
}
/* ===== ZANZIBAR TOURS SECTION STYLES ===== */
.zanzibar-tours-section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover img {
    transform: scale(1.05);
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-card-content h3 {
    font-size: 1.3rem;
    color: #1a3c6e;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.tour-card-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-price {
    font-weight: 700;
    color: #25D366;
    font-size: 1.1rem;
}

.tour-duration {
    color: #666;
    font-size: 0.9rem;
    background: #e8f4fd;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
}

.tour-highlights {
    margin-bottom: 1.2rem;
}

.tour-highlights ul {
    list-style: none;
    padding: 0;
}

.tour-highlights li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.tour-highlights li::before {
    content: "âœ“";
    color: #25D366;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tour-actions {
    display: flex;
    gap: 0.8rem;
}

.whatsapp-book-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-book-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.learn-more-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: transparent;
    color: #1a3c6e;
    text-decoration: none;
    border: 2px solid #1a3c6e;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #1a3c6e;
    color: white;
    transform: translateY(-2px);
}

/* Popular Packages Section */
.popular-packages {
    margin-top: 3rem;
}

.package-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-icon {
    font-size: 3rem;
    color: #f4c430;
    margin-bottom: 1rem;
}

.package-card h3 {
    font-size: 1.4rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.package-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #25D366;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5b9e 100%);
    color: white;
    border-radius: 15px;
}

.section-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-cta-btn:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.explore-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-cta-btn:hover {
    background: white;
    color: #1a3c6e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Zanzibar Tours */
@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-cta-btn,
    .explore-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Gallery Section Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 60, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: white;
    text-align: center;
    padding: 1rem;
}

.gallery-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.gallery-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Enhancements */
.modal {
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-next, .modal-prev {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-next:hover, .modal-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
/* ===== BLOG PAGE STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero-bg {
    background-image: url('../images/ZANZIBAR.jpg');
}

/* Destination Background Classes */
.destinations-hero-bg {
    background-image: url('../images/SERENGETI2.jpg');
}

.contact-hero-bg {
    background-image: url('../images/ZANZIBAR.jpg');
}

.about-hero-bg {
    background-image: url('../images/SERENGETI.jpg');
}

.packages-hero-bg {
    background-image: url('../images/KILIMANJARO.jpg');
}

.kilimanjaro-bg {
    background-image: url('../images/KILIMANJARO.jpg');
}

.serengeti2-bg {
    background-image: url('../images/SERENGETI2.jpg');
}

.zanzibar-bg {
    background-image: url('../images/ZANZIBAR.jpg');
}

.serengeti-bg {
    background-image: url('../images/SERENGETI.jpg');
}

.ngorongoro-bg {
    background-image: url('../images/ngorongoro.jpg');
}

.manyara-bg {
    background-image: url('../images/manyara.jpg');
}

.tarangire-bg {
    background-image: url('../images/TARANGIRE.jpg');
}

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* No shadow form utility */
.no-shadow-form {
    box-shadow: none !important;
}

.blog-hero .hero-overlay {
    position: relative;
    text-align: center;
    color: white;
    background: rgba(26, 60, 110, 0.7);
    padding: 3rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.blog-hero h1 {
    font-size: 3rem;
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Blog Filter Section */
.blog-filters {
    padding: 2rem 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active {
    background: #1a3c6e;
    color: white;
    border-color: #1a3c6e;
}

.filter-btn:hover {
    border-color: #1a3c6e;
    transform: translateY(-2px);
}

/* Featured Blog Section */
.featured-blog {
    padding: 4rem 0;
    background: white;
}

.featured-blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 3rem;
    font-family: "Playfair Display", serif;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.featured-post {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    width: 40%;
    min-height: 250px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f4c430;
    color: #1a3c6e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
    flex: 1;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-meta .category {
    background: #e8f4fd;
    color: #1a3c6e;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-meta .date {
    color: #666;
    font-size: 0.9rem;
}

.featured-post h3 {
    font-size: 1.4rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #f4c430;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e6b42e;
    text-decoration: underline;
}

/* Blog Posts Section */
.blog-posts {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 3rem;
    font-family: "Playfair Display", serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 60, 110, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-info {
    padding: 1.5rem;
}

.post-info h3 {
    font-size: 1.2rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-info .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.post-link {
    color: #f4c430;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-link:hover {
    color: #e6b42e;
    text-decoration: underline;
}

/* Newsletter Section */
.blog-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5b9e 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #f4c430;
    color: #1a3c6e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e6b42e;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Tips Categories Section */
.tips-categories {
    padding: 4rem 0;
    background: white;
}

.tips-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 3rem;
    font-family: "Playfair Display", serif;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-category {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tip-category:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: #f4c430;
    margin-bottom: 1rem;
}

.tip-category h3 {
    font-size: 1.3rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.tip-category p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #1a3c6e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #f4c430;
    text-decoration: underline;
}

/* Blog Message */
.blog-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.blog-message.success {
    border-left: 4px solid #28a745;
}

.blog-message.info {
    border-left: 4px solid #17a2b8;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-content i {
    color: #28a745;
}

.message-close {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    color: #666;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-hero .hero-overlay {
        padding: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post {
        flex-direction: column;
    }
    
    .post-image {
        width: 100%;
        height: 200px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Blog Preview Section */
.blog-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.blog-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.preview-image {
    height: 180px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-post:hover .preview-image img {
    transform: scale(1.05);
}

.preview-content {
    padding: 1.5rem;
}

.preview-category {
    background: #e8f4fd;
    color: #1a3c6e;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.preview-content h3 {
    font-size: 1.1rem;
    color: #1a3c6e;
    margin: 1rem 0 0.5rem;
    line-height: 1.4;
}

.preview-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.blog-preview-actions {
    text-align: center;
}

/* Blog Preview Responsive */
@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}
