/* Variables & Reset */
:root {
    --primary-dark: #050B14; /* Deep Premium Navy */
    --secondary-dark: #0A1424; /* Richer Secondary */
    --accent-gold: #D4AF37;
    --soft-gold: #E6C768;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --header-bg: rgba(5, 11, 20, 0.85);
    --hero-overlay: linear-gradient(90deg, rgba(5, 11, 20, 0.7) 0%, rgba(5, 11, 20, 0.3) 100%);
    --dest-overlay: linear-gradient(transparent, rgba(5, 11, 20, 0.9));
    --cta-overlay: rgba(5, 11, 20, 0.92);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 0px;
}

@media (max-width: 1400px) {
    .container { padding: 0 60px; }
}

@media (max-width: 1200px) {
    .container { padding: 0 40px; }
}

@media (max-width: 992px) {
    .container { padding: 0 30px; }
}

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

.section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px; /* Modern Rounded */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-gold:hover {
    background-color: var(--soft-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

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

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
    background-color: transparent; /* Start Transparent */
}

#main-header.scrolled {
    background-color: rgba(5, 11, 20, 0.95);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.close-menu {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

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

.hero-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .slide-inner {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--hero-overlay);
    z-index: 2;
    pointer-events: none;
}

.hero-content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    margin-left: 0;
}

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

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns .btn {
    padding: 14px 35px;
    font-size: 0.8rem;
}

.hero-btns {
    display: flex;
    gap: 25px;
}

.hero-highlights {
    margin-top: 40px;
    width: 100%;
}

.highlights-box {
    background-color: rgba(10, 20, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.h-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.h-item:hover {
    transform: translateY(-5px);
}

.h-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.h-text strong {
    font-size: 1.2rem;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.h-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 3;
}

.about-video {
    flex: 7;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sol-video video {
    width: 100%;
    height: 790;
    object-fit: cover;
    display: block;
}

.about-content h2.section-title {
    font-size: 2.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.header-divider.left-align {
    justify-content: flex-start;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
    padding: 80px 0;
}

.process-wrapper {
    position: relative;
    width: 100%;
    margin: 60px auto 0;
}

.process-line {
    position: absolute;
    top: 90px;
    left: 12%;
    width: 76%;
    height: 2px;
    background-color: var(--accent-gold);
    z-index: 1;
}

.process-line::before,
.process-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    transform: translateY(-50%);
}

.process-line::before {
    left: -10px;
}

.process-line::after {
    right: -10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-item {
    text-align: center;
}

.process-image-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.process-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    background-color: var(--white);
    padding: 5px;
    transition: var(--transition);
}

.process-item:hover .process-image {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: var(--transition);
}

.process-item:hover .process-image img {
    filter: grayscale(0%);
}

.process-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 700;
}

.process-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
}

/* MICE Solutions */
.mice-solutions {
    background-color: var(--white);
}

.mice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.mice-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.mice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(5, 11, 20, 0.4); */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    transition: var(--transition);
}

.mice-overlay h3 {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.mice-card:hover .mice-overlay {
    background: rgba(5, 11, 20, 0.7);
}

.mice-card:hover {
    transform: scale(1.02);
}

.mice-features {
    background-color: transparent;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
}

.mice-features ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mice-features li {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    /* border: 1px solid #eee; */
    transition: var(--transition);
    min-height: 180px;
    justify-content: center;
}

.mice-features li:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.mice-features i {
    color: var(--accent-gold);
    font-size: 2.2rem;
}

/* Destinations */
.destinations {
    background-color: var(--light-gray);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card {
    height: 400px;
    background-size: cover;
    background-position: top;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--dest-overlay); */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 35px;
    transition: var(--transition);
}

.dest-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transform: translateY(10px);
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(transparent, rgba(5, 11, 20, 0.95));
}

.dest-card:hover h3 {
    transform: translateY(0);
    color: var(--accent-gold);
}

/* Services */
.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.header-divider .line {
    height: 1px;
    width: 60px;
    background-color: var(--accent-gold);
}

.header-divider i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: visible; /* To allow icon to overlap */
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.service-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -22.5px auto 15px; /* Half of height to overlap image */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--accent-gold);
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.service-content {
    padding: 0 15px;
    flex-grow: 1;
}

.service-card h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.6;
}

.service-card.featured {
    border: 1px solid var(--accent-gold);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

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

/* CTA Section */
.cta {
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    color: var(--white);
    margin-bottom: 40px;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.94) 0%, rgba(5, 11, 20, 0.8) 100%);
}

.travel-element {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.2;
    font-size: 4rem;
    z-index: 1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.travel-element.plane {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.travel-element.globe {
    bottom: 20%;
    right: 15%;
    font-size: 6rem;
    animation-delay: 1s;
}

.travel-element.suitcase {
    top: 25%;
    right: 25%;
    font-size: 3rem;
    transform: rotate(10deg);
    animation-delay: 2s;
}

.travel-element.map-pin {
    bottom: 15%;
    left: 20%;
    font-size: 3.5rem;
    animation-delay: 3.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.cta-left h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-contact-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-box .contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.cta-contact-box .contact-item:last-child {
    margin-bottom: 0;
}

.cta-contact-box i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info strong {
    font-size: 1.3rem;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 30px;
}

.brand-col p {
    margin-top: 20px;
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 0;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links .separator {
    color: var(--text-light);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom {
    background-color: #02060D;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Destinations Page Styles */
.destinations-page #main-header.scrolled {
    background-color: var(--primary-dark);
}

.dest-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.7), rgba(5, 11, 20, 0.7)), url('../assets/images/dest.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.dest-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.dest-hero-content {
    text-align: left !important;
}

.dest-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.dest-hero-content .subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.dest-hero-content .description {
    max-width: 700px;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Category Tabs */
.category-tabs {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.tabs-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: 8px;
}

.tab-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.tab-item span {
    font-size: 0.75rem;
    font-weight: 700;
}

.tab-item:hover {
    color: var(--primary-dark);
}

.tab-item.active {
    background-color: var(--primary-dark);
    color: var(--white);
}

.tab-item.active i {
    color: var(--white);
}

/* Main Layout */
.dest-main-layout {
    display: flex;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.filter-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-sidebar h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-gray);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-gold);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text-gray);
    outline: none;
    background-color: #fff;
}

.btn-apply {
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--white);
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.btn-reset {
    width: 100%;
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Grid Section */
.dest-grid-section {
    flex-grow: 1;
}

.grid-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.dest-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 160px;
    background-size: cover;
    background-position: top;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.card-icons span {
    font-size: 0.7rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-icons i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.know-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

/* Footer CTA */
.dest-footer-cta {
    background-color: var(--primary-dark);
    padding: 50px 0;
    color: var(--white);
}

.footer-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.left-cta i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

.left-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.left-cta p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.right-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.right-cta .btn-gold {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.cta-contacts {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--white);
}

.cta-contacts span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-contacts i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Highlights Page */
.highlights-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1540575861501-7ad060e39fe1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.highlights-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.highlights-hero-content {
    max-width: 800px;
    text-align: left !important;
}

.highlights-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.highlights-hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlights-hero-content .description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Video Gallery Section */
.video-gallery-section {
    background-color: #000; /* Pure black as per image */
    padding: 100px 0;
    color: #ffffff;
}

.video-gallery-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-gallery-section .section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.video-gallery-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--accent-gold);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-btn i {
    color: #007bff;
    font-size: 1rem;
    margin-left: 2px;
}

.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-gold);
}

.video-item:hover .play-btn i {
    color: var(--white);
}

.video-item h3 {
    font-size: 0.85rem;
    font-weight: 700; /* Increased visibility */
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 1; /* Full opacity for visibility */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Better visibility on dark background */
}

.video-item:hover h3 {
    color: var(--accent-gold);
}

@media (max-width: 1600px) {
    .dest-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .dest-main-layout {
        flex-direction: column;
    }
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .filter-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    .filter-sidebar h3 {
        grid-column: span 3;
    }
    .btn-apply, .btn-reset {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .tabs-wrapper {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        gap: 15px;
    }
    .tab-item {
        flex-shrink: 0;
    }
    .dest-hero-content h1 {
        font-size: 2.5rem;
    }
    .filter-sidebar {
        grid-template-columns: 1fr;
    }
    .filter-sidebar h3 {
        grid-column: span 1;
    }
    .footer-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .left-cta {
        flex-direction: column;
    }
    .right-cta {
        align-items: center;
    }
    .cta-contacts {
        flex-direction: column;
        gap: 15px;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.7), rgba(5, 11, 20, 0.7)), url('../assets/images/abt.webp');
  background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.about-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.about-hero-content {
    max-width: 800px;
    text-align: left !important;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-hero-content .description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.1rem;
    text-align: justify;
}

.about-image .image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--accent-gold);
    z-index: -1;
    border-radius: 20px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.experience-badge strong {
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1;
}

.experience-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.bg-light {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.stats-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Page Styles */
.contact-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.7), rgba(5, 11, 20, 0.7)), url('../assets/images/cont.webp');
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.contact-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.contact-hero-content {
    max-width: 800px;
    text-align: left !important;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.contact-hero-content .subtitle {
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
}


.contact-hero-content .description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-header p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.social-connect h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
        padding: 15px 20px;

    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #ececec;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.btn-block {
    width: 100%;
    border: none;
    margin-top: 10px;
}

.map-section iframe {
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .about-grid, .contact-grid { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-top-features { grid-template-columns: repeat(2, 1fr); }
    .about-hero-content h1, .contact-hero-content h1, .tours-title, .blog-hero-content h1, .post-hero-content h1 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .header-actions { display: none; }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 20, 36, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        margin: 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }

    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
        color: var(--accent-gold);
        cursor: pointer;
        display: block !important;
        transition: transform 0.3s ease;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-links.active li:nth-child(9) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--accent-gold);
        padding-left: 10px;
    }

    .hero h1 { font-size: 3rem; }
    .about-hero-content h1, .contact-hero-content h1, .tours-title, .blog-hero-content h1, .post-hero-content h1 { font-size: 2.8rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; max-width: 600px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #main-header {
        padding: 15px 0;
    }
    .logo img {
        height: 30px;
    }
    .container { padding: 0 20px; }
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem; }
    
    .hero { 
        min-height: auto;
        height: auto;
        aspect-ratio: 16 / 9;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: visible;
    }
    .hero-swiper, .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .hero-overlay {
        z-index: 2;
    }
    .hero-content-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        padding-top: 80px; /* Pushes content down to clear logo area */
        padding-bottom: 30px;
    }
    .hero-content { margin: 0; width: 100%; }
    .hero h1 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 5px; }
    .hero-desc { font-size: 0.85rem; margin-bottom: 20px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hero-btns { gap: 10px; }
    .hero-btns .btn { padding: 10px 20px; font-size: 0.75rem; }
    
    .hero-highlights {
        display: none; /* Hide highlights inside 16:9 hero on mobile to save space */
    }

    .dest-hero, .about-hero, .contact-hero, .blog-hero, .highlights-hero, .faq-hero {
        padding-top: 80px !important;
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: 16 / 9;
        padding-bottom: 20px;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .dest-hero .container, .about-hero .container, .contact-hero .container, .blog-hero .container, .highlights-hero .container, .faq-hero .container {
        padding: 0 20px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-hero-content h1, .contact-hero-content h1, .tours-title, .blog-hero-content h1, .post-hero-content h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 15px; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 10px; }
    .about-hero-content .subtitle, .contact-hero-content .subtitle, .dest-hero-content .subtitle, .highlights-hero-content .subtitle, .faq-hero .faq-subtitle { font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 15px; }
    
    .section-header { text-align: left; margin-left: 0; }
    .header-divider { justify-content: flex-start; }
    
    .about-wrapper { flex-direction: column; gap: 40px; }
    .about-content, .about-video { width: 100%; flex: none; }
    .about-stats { gap: 30px; }
    
    .highlights-box { padding: 20px; border-radius: 10px; }
    .h-item { gap: 15px; }
    .h-item i { font-size: 2rem; }
    
    .highlight-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-grid, .mice-grid, .destination-grid, .blog-grid, .dest-grid { grid-template-columns: 1fr; }
    
    .mice-features ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .contact-form-container { padding: 25px; }
    .stat-number { font-size: 2.2rem; }
    
    .cta-grid { grid-template-columns: 1fr; text-align: left; gap: 40px; }
    .cta-left h2 { font-size: 2rem; }
    .cta-right { justify-content: flex-start; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Destinations page specific */
    .dest-main-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; } /* Could add a toggle for this if needed */
    .category-tabs .tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    .tab-item { flex-shrink: 0; }

    .tours-page .tours-container { padding: 40px 20px; }
    .tours-header { text-align: left; }
    .tours-top-features { grid-template-columns: 1fr; }
    .tours-bottom-bar { 
        flex-direction: column; 
        gap: 25px; 
        text-align: center; 
        padding: 30px 20px;
        border-radius: 20px;
    }
    .bar-left { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        height: auto;
        aspect-ratio: 16 / 9; /* Reverting to strict 16:9 as requested */
    }
    .hero-swiper, .hero-overlay {
        height: 100%;
    }
    .hero-content-layer {
        padding: 10px 15px;
        justify-content: flex-end;
        padding-bottom: 15px;
    }
    .hero h1 { font-size: 1.2rem; margin-bottom: 5px; }
    .hero-subtitle { font-size: 0.7rem; margin-bottom: 2px; }
    .hero-desc { display: none; } /* Hide description on very small screens to fit 16:9 */
    .hero-btns { flex-direction: row; gap: 8px; }
    .hero-btns .btn { padding: 6px 12px; font-size: 0.65rem; }
    .mice-features ul { grid-template-columns: 1fr; }
    .nav-links { width: 100%; }
    .section-header h2 { font-size: 1.8rem; }
}

/* Tours Page Styles */
.tours-page {
    background-color: #f0f4f8;
    padding: 40px 0;
}

.tours-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.tours-header {
    margin-bottom: 40px;
}

.tours-subtitle {
    color: var(--text-gray);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.tours-subtitle::before, .tours-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
}

.tours-subtitle::before { left: -50px; }
.tours-subtitle::after { right: -50px; }

.tours-title {
    font-size: 3rem;
    color: #0A1424;
    font-weight: 800;
    margin-bottom: 10px;
}

.tours-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.tours-top-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tours-feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.tours-feature-box i {
    font-size: 1.8rem;
    color: #0A1424;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    color: #0A1424;
}

.feature-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.map-section {
    position: relative;
    margin-bottom: 40px;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 20px;
    align-items: center;
}

#world-map {
    width: 100%;
    height: auto;
}

.region-path {
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

.marker {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.marker:hover {
    transform: scale(1.2);
}

.region-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-box.active {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.box-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f4f8;
}

.box-header.india { background-color: #f0fff0; }
.box-1 .box-header { background-color: #f0f7ed; }
.box-2 .box-header { background-color: #fff4e6; }
.box-3 .box-header { background-color: #e6f7ff; }
.box-4 .box-header { background-color: #eef2ff; }
.box-5 .box-header { background-color: #fffbeb; }
.box-6 .box-header { background-color: #f5f3ff; }
.box-7 .box-header { background-color: #fdf2f8; }

.box-number {
    width: 24px;
    height: 24px;
    background: #0A1424;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.box-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0A1424;
}

.box-header img {
    width: 20px;
    border-radius: 2px;
}

.box-content {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 15px;
}

.box-content.horizontal {
    grid-template-columns: 1fr 2fr;
}

.dest-list {
    list-style: none;
}

.dest-list li {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.dest-list li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.dest-list.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
}

.box-image {
    width: 100px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.box-image-small {
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.box-footer {
    padding: 10px 15px;
    background: #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
}

.box-footer i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-top: 3px;
}

.box-footer span {
    font-size: 0.75rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.4;
}

.box-7 {
    margin-top: 30px;
    max-width: 100%;
}

.tours-bottom-bar {
    background: #0A1424;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bar-left i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.bar-text strong {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.bar-text span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.btn-plan {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: #1d4ed8;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    .region-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tours-top-features {
        grid-template-columns: 1fr 1fr;
    }
    .region-info {
        grid-template-columns: 1fr;
    }
    .tours-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        border-radius: 20px;
    }
    .bar-left {
        flex-direction: column;
    }
}

.tours-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.tours-feature-box i {
    transition: all 0.3s ease;
}

.tours-feature-box:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Updated Tours Full-Width Styles */
.tours-page #main-header.scrolled {
    background-color: var(--primary-dark) !important;
    backdrop-filter: blur(10px);
}

.tours-page .tours-container {
    padding-top: 140px !important;
    background-color: #fff;
}

#world-map {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.map-wrapper {
    grid-template-columns: 380px 1fr 380px;
    max-width: 1800px;
    margin: 0 auto;
}

@media (max-width: 1600px) {
    .map-wrapper {
        grid-template-columns: 320px 1fr 320px;
        gap: 15px;
    }
}

/* Tours Page Hero Styles */
.tours-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.6), rgba(5, 11, 20, 0.6)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
}

.tours-hero-content {
    max-width: 800px;
    text-align: left;
}

.tours-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}


/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Blog Styles */
.blog-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.75), rgba(5, 11, 20, 0.75)), url('../assets/images/blog1.webp');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    display: flex;
    align-items: bottom;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.blog-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.blog-hero-content {
    max-width: 800px;
    text-align: left !important;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.blog-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 300;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: var(--light-gray);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(184, 154, 102, 0.15);
    border-color: var(--accent-gold);
}

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

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(184, 154, 102, 0.3);
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-meta i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.blog-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-content h3 a {
    transition: var(--transition);
}

.blog-card-content h3 a:hover {
    color: var(--accent-gold);
}

.blog-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
}

.read-more:hover i {
    transform: translateX(8px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active, .pagination a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Single Blog Post Styles */
.post-hero {
    height: 550px;
    background: linear-gradient(rgba(5, 11, 20, 0.75), rgba(5, 11, 20, 0.75)), url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    color: var(--white);
    padding-top: 100px;
}

.post-hero .container {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    padding: 0 80px !important;
}

.post-hero-content {
    max-width: 1000px;
    text-align: left !important;
}

.post-hero-content .post-category {
    background: var(--accent-gold);
    color: var(--primary-dark);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(184, 154, 102, 0.3);
}

.post-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.post-hero-content .post-meta {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.post-hero-content .post-meta i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.post-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.post-content {
    font-size: 1rem;
    line-height: 1.5;
    color: #334155;
}

.post-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 40px 0 20px;
    font-weight: 700;
}

.post-content blockquote {
    background: var(--light-gray);
    padding: 40px;
    border-left: 5px solid var(--accent-gold);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary-dark);
    border-radius: 0 15px 15px 0;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.post-tags span {
    font-weight: 700;
    color: var(--primary-dark);
}

.post-tags a {
    padding: 5px 15px;
    background: var(--light-gray);
    border-radius: 5px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-prev, .nav-next {
    display: flex;
    flex-direction: column;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.post-navigation a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-navigation h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.related-posts h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.related-card h4 a:hover {
    color: var(--accent-gold);
}

/* Sidebar Styles */
.sidebar-widget {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 40px;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 700;
}

.search-widget form {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 15px 20px;
    background: var(--light-gray);
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: inherit;
}

.search-widget button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
}

.category-widget ul li {
    margin-bottom: 15px;
}

.category-widget ul li a {
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.category-widget ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.recent-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-item img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-text h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 15px;
    background: var(--light-gray);
    border-radius: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

@media (max-width: 1200px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .post-container { grid-template-columns: 1fr; }
    .blog-hero-content h1, .post-hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero, .post-hero { height: auto; padding: 150px 0 80px; }
    .post-navigation { grid-template-columns: 1fr; }
    .nav-next { text-align: left; align-items: flex-start; }
    .related-grid { grid-template-columns: 1fr; }
}

/* FAQ Section */
.faq-hero {
    height: 450px;
    background: linear-gradient(rgba(5, 11, 20, 0.7), rgba(5, 11, 20, 0.7)), url('../assets/images/faqs.webp');
    background-size: cover;
    background-position: center;
    display: flex;
background-repeat: no-repeat;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-hero .faq-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-hero p.description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
}

.faq-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background-color: var(--white);
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}

.faq-question h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: #fcfdfd;
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active {
    border-left: 4px solid var(--accent-gold);
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

/* Responsive for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .about-content, .about-video {
        flex: none;
        width: 100%;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-video {
        order: 1;
    }
    
    .header-divider.left-align {
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }

    /* How It Works Responsive */
    .process-line {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .process-image-wrap {
        width: 150px;
        height: 150px;
    }

    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-content h2.section-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    /* How It Works Responsive Mobile */
    .process-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works .section-header h2 {
        font-size: 2.2rem;
    }
}



.mice-features li h4 {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mice-features li p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #777;
    line-height: 1.6;
}

/* New About Page Sections */
.vision-mission-section {
    padding: 100px 0;
    background-color: var(--white);
}
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vm-card {
    padding: 50px;
    background: var(--light-gray);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-gold);
}
.vm-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}
.vm-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.wwd-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.wwd-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-gold);
}
.wwd-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.wwd-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.testimonials-section {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 100px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.testimonial-card i.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
}
.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
.testimonial-author h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
}
.cta-section {
    padding: 120px 0;
    background: linear-gradient(var(--cta-overlay), var(--cta-overlay)), url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}
.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--text-light);
}
@media (max-width: 992px) {
    .vision-mission-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2.5rem; }
}

/* Modern About Page Enhancements */
.modern-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.dark-glass-card {
    background: rgba(10, 20, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
}

.floating-image-wrap {
    position: relative;
    z-index: 1;
}

.floating-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    z-index: -1;
    transition: var(--transition);
}

.floating-image-wrap:hover::before {
    top: 10px;
    right: 10px;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F9E79F 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.step-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--primary-dark); /* Ensure text is visible by default */
}

.step-card h4 {
    color: var(--primary-dark);
}

.step-card p {
    color: var(--text-gray);
}

.step-card:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.step-card:hover h4, .step-card:hover p {
    color: var(--primary-dark);
}

.step-number-huge {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.step-card:hover .step-number-huge {
    color: rgba(212, 175, 55, 0.1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }

@media (max-width: 992px) {
    .asymmetric-grid { grid-template-columns: 1fr; gap: 50px; }
    .glass-card { padding: 30px; }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}
