/* ===============================================
                                                                                                                                                                                                                                        HIGHWAY TRAVELLERS - BRAND KIT EDITION
                                                                                                                                                                                                                                        Luxurious, Adventurous, Empowering, Curated
                                                                                                                                                                                                                                        =============================================== */

:root {
    /* Brand Kit Colors */
    --brand-blue: #1C3D5A;
    --brand-tan: #A39B8B;
    --brand-orange: #E2680D;
    --brand-black: #121212;
    --brand-cream: #F9F5DC;

    /* Brand Gradients */
    --gradient-blue: linear-gradient(135deg, #1C3D5A 0%, #2d5573 100%);
    --gradient-orange: linear-gradient(135deg, #E2680D 0%, #ff7a1f 100%);
    --gradient-tan: linear-gradient(135deg, #A39B8B 0%, #b5ad9f 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(28, 61, 90, 0.7) 0%, rgba(28, 61, 90, 0.3) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(28, 61, 90, 0.08);
    --shadow-md: 0 8px 24px rgba(28, 61, 90, 0.12);
    --shadow-lg: 0 16px 40px rgba(28, 61, 90, 0.16);
    --shadow-xl: 0 24px 64px rgba(28, 61, 90, 0.24);

    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--brand-black);
    line-height: 1.7;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #f8f9fa;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 32px;
    color: orange !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--brand-cream);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--brand-orange);
}

.navbar-brand i {
    font-size: 36px;
    color: black
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.navbar-menu a {
    color: black;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: var(--transition-normal);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a:hover {
    color: var(--brand-orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: rgba(226, 104, 13, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(226, 104, 13, 0.3);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--brand-cream);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(226, 104, 13, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(226, 104, 13, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    color: var(--brand-cream);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title .gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--brand-cream);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 20px rgba(226, 104, 13, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(226, 104, 13, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--brand-cream);
    border: 2px solid var(--brand-cream);
}

.btn-outline:hover {
    background: var(--brand-cream);
    color: var(--brand-blue);
    transform: translateY(-3px);
}

.btn i {
    transition: var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--brand-cream);
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--brand-black);
    margin-bottom: 15px;
}

.read-more {
    color: var(--brand-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.read-more:hover {
    gap: 10px;
}

/* ===== EXPERIENCE SECTION - NEW DESIGN ===== */
.experience {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--brand-tan);
    line-height: 1.8;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.experience-card {
    background: linear-gradient(135deg, var(--brand-cream) 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--brand-orange);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-size: 72px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-tan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.experience-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--brand-blue);
    font-family: 'Playfair Display', serif;
}

.experience-text {
    color: var(--brand-black);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== VEHICLES SECTION ===== */
.vehicles {
    padding: 120px 0;
    background: #f8f9fa;
}

.vehicles-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 32px;
    background: white;
    color: var(--brand-blue);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.tab-btn.active {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 4px 20px rgba(226, 104, 13, 0.3);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.vehicle-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    display: none;
}

.vehicle-card.active {
    display: block;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vehicle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--brand-blue);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vehicle-info {
    padding: 30px;
}

.vehicle-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--brand-blue);
}

.vehicle-category {
    color: var(--brand-tan);
    font-size: 14px;
    margin-bottom: 20px;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-black);
    font-size: 14px;
}

.spec-item i {
    color: var(--brand-orange);
}

.vehicle-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--brand-cream);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-blue);
}

.price span {
    font-size: 14px;
    color: var(--brand-tan);
    font-weight: 400;
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations {
    padding: 120px 0;
    background: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover .destination-image {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 61, 90, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-normal);
}

.destination-title {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.destination-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--brand-cream);
    font-size: 14px;
    flex-wrap: wrap;
}

.destination-info i {
    color: var(--brand-orange);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 120px 0;
    background: var(--brand-blue);
}

.testimonials .section-subtitle,
.testimonials .section-title {
    color: white;
}

.testimonials .section-description {
    color: var(--brand-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: var(--brand-orange);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--brand-cream);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-orange);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--brand-tan);
    font-size: 13px;
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: 120px 0;
    background: var(--brand-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--brand-orange);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-tan);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-date i {
    color: var(--brand-orange);
}

.blog-title {
    font-size: 22px;
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blog-excerpt {
    color: var(--brand-black);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-link {
    color: var(--brand-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    gap: 10px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: var(--gradient-orange);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta .btn-outline {
    border-color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--brand-orange);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
}

.footer-logo {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--brand-orange);
    font-size: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(226, 104, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--brand-orange);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .navbar .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(28, 61, 90, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu a {
        font-size: 18px;
        width: 100%;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .experience,
    .vehicles,
    .destinations,
    .testimonials,
    .blog {
        padding: 80px 0;
    }

    .vehicles-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .hero-title {
        font-size: 36px;
    }

    .experience-number {
        font-size: 56px;
    }

    .destination-card {
        height: 300px;
    }
}



.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(226,104,13,0.03)" width="50" height="50"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--brand-cream);
}

.breadcrumb a {
    color: var(--brand-cream);
}

.breadcrumb a:hover {
    color: var(--brand-orange);
}

.breadcrumb i {
    font-size: 12px;
    color: var(--brand-orange);
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    color: white;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: var(--brand-cream);
    max-width: 700px;
}

/* ===== BLOG FILTERS ===== */
.blog-filters {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--brand-cream);
}

.blog-filters .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    color: var(--brand-blue);
    border: 2px solid var(--brand-cream);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.filter-btn.active {
    background: var(--gradient-orange);
    color: white;
    border-color: var(--brand-orange);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid var(--brand-cream);
    border-radius: 50px;
    padding: 10px 20px;
    min-width: 280px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.search-box i {
    color: var(--brand-orange);
}

/* ===== BLOG GRID ===== */
.blog-section {
    padding: 80px 0;
    background: var(--brand-cream);
}

.blog-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--brand-orange);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reading-time {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(28, 61, 90, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--brand-tan);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--brand-orange);
    font-size: 14px;
}

.blog-title {
    font-size: 22px;
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blog-excerpt {
    color: var(--brand-black);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--brand-cream);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-orange);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
}

.read-more {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--brand-blue);
    border: 2px solid var(--brand-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.page-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.page-btn.active {
    background: var(--gradient-orange);
    color: white;
    border-color: var(--brand-orange);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 80px 0;
    background: white;
}

.newsletter .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.newsletter-icon i {
    font-size: 36px;
    color: white;
}

.newsletter h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.newsletter p {
    color: var(--brand-tan);
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--brand-cream);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--brand-orange);
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(226, 104, 13, 0.4);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(28, 61, 90, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: var(--transition-normal);
    }

    .navbar-menu.active {
        right: 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 22px;
    }

    .page-title {
        font-size: 32px;
    }

    .blog-grid {
        gap: 25px;
    }
}
/* ===== ARTICLE HEADER ===== */
.article-header {
    padding: 120px 0 60px;
    background: var(--brand-cream);
}

.article-header .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--brand-tan);
}

.breadcrumb a {
    color: var(--brand-blue);
}

.breadcrumb a:hover {
    color: var(--brand-orange);
}

.breadcrumb i {
    font-size: 10px;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--brand-orange);
    color: white;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.article-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--brand-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(28, 61, 90, 0.1);
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-orange);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 16px;
    color: var(--brand-blue);
    margin-bottom: 3px;
}

.author-details p {
    font-size: 13px;
    color: var(--brand-tan);
}

.meta-items {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-tan);
    font-size: 14px;
}

.meta-item i {
    color: var(--brand-orange);
}

/* ===== FEATURED IMAGE ===== */
.featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== ARTICLE CONTENT ===== */
.article-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.article-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--brand-black);
}

.article-body h2 {
    font-size: 32px;
    color: var(--brand-blue);
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 24px;
    color: var(--brand-blue);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0 20px 30px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--brand-cream);
    border-left: 4px solid var(--brand-orange);
    font-style: italic;
    font-size: 18px;
    color: var(--brand-blue);
}

.highlight-box {
    background: linear-gradient(135deg, var(--brand-cream) 0%, #ffffff 100%);
    border-left: 4px solid var(--brand-orange);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.article-body img {
    border-radius: 12px;
    margin: 30px 0;
}

/* ===== ARTICLE TAGS ===== */
.article-tags {
    padding: 40px 0;
    border-top: 2px solid var(--brand-cream);
    margin-top: 40px;
}

.tags-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.tag-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 20px;
    background: white;
    border: 2px solid var(--brand-cream);
    border-radius: 25px;
    font-size: 13px;
    color: var(--brand-blue);
    transition: var(--transition-normal);
}

.tag:hover {
    background: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
}

/* ===== SOCIAL SHARE ===== */
.social-share {
    padding: 30px 0;
    border-top: 2px solid var(--brand-cream);
    margin-top: 30px;
}

.share-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
}

.share-btn:hover {
    transform: translateY(-5px);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.email { background: var(--brand-orange); }

/* ===== AUTHOR BIO ===== */
.author-bio {
    background: var(--brand-cream);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    margin-top: 40px;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--brand-orange);
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio-content h3 {
    font-size: 22px;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.author-bio-content p {
    color: var(--brand-black);
    margin-bottom: 15px;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
}

.author-social a:hover {
    background: var(--brand-orange);
    color: white;
}

/* ===== RELATED POSTS ===== */
.related-posts {
    padding: 80px 0;
    background: white;
}

.related-posts .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 25px;
}

.post-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--brand-orange);
    color: white;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.post-title {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.post-meta {
    font-size: 13px;
    color: var(--brand-tan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--brand-orange);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(226, 104, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
}

.social-links a:hover {
    background: var(--brand-orange);
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(28, 61, 90, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: var(--transition-normal);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .article-header {
        padding: 100px 0 40px;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .featured-image img {
        height: 250px;
    }
}


/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(226,104,13,0.03)" width="50" height="50"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--brand-cream);
}

.breadcrumb a {
    color: var(--brand-cream);
}

.breadcrumb a:hover {
    color: var(--brand-orange);
}

.breadcrumb i {
    font-size: 12px;
    color: var(--brand-orange);
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    color: white;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: var(--brand-cream);
    max-width: 700px;
}

/* ===== FILTERS ===== */
.filters-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--brand-cream);
}

.filters-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background: white;
    color: var(--brand-blue);
    border: 2px solid var(--brand-cream);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.filter-tab.active {
    background: var(--gradient-orange);
    color: white;
    border-color: var(--brand-orange);
}

.filter-tab i {
    font-size: 14px;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--brand-cream);
    border-radius: 50px;
    cursor: pointer;
}

.sort-dropdown select {
    border: none;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    background: transparent;
    cursor: pointer;
}

/* ===== DESTINATIONS GRID ===== */
.destinations-section {
    padding: 80px 0;
    background: var(--brand-cream);
}

.destinations-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.destination-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 61, 90, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

.destination-badge {
    align-self: flex-start;
    padding: 8px 18px;
    background: var(--brand-orange);
    color: white;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-content {
    color: white;
}

.destination-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.destination-description {
    font-size: 14px;
    color: var(--brand-cream);
    margin-bottom: 18px;
    line-height: 1.6;
}

.destination-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    color: var(--brand-orange);
}

.destination-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.destination-action {
    margin-top: 15px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.btn-explore:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(226, 104, 13, 0.4);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--brand-tan);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brand-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(226, 104, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
}

.social-links a:hover {
    background: var(--brand-orange);
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: rgba(28, 61, 90, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: var(--transition-normal);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .destination-card {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .destination-card {
        height: 350px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}