/* --- Variables & Reset --- */
:root {
    --primary-color: #0b141d; /* Deep Navy / Dark Marine */
    --primary-dark: #070c12;
    --accent-color: #c79a5b; /* Gold */
    --accent-hover: #b0864c;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f7f7f7;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.section-padding {
    padding: 100px 0;
    overflow: hidden;
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--text-light);
    background-color: rgba(255,255,255,0.1);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-arrow i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.scrolled {
    background-color: rgba(11, 20, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: none;
}

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

.logo-img {
    height: 45px;
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(199,154,91,0.18);
    border-color: rgba(199,154,91,0.45);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    background-color: var(--primary-color);
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--primary-color) url('BDS 1.png') center / cover no-repeat;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,20,29,0.8) 0%, rgba(11,20,29,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin-left: 5%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--text-light);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 0; height: 0; }
    50% { height: 50%; }
    100% { top: 100%; height: 0; }
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
}

/* --- Split Section (Refined Approach) --- */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.split-text {
    flex: 1;
    padding-right: 40px;
}

.split-text p {
    margin-bottom: 25px;
    color: var(--text-gray);
}

.align-left .header-line {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11,20,29,0.15) 0%, rgba(11,20,29,0.85) 60%);
    z-index: 1;
}

.service-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 40px 25px;
    color: white;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.05);
}

.service-card .service-title {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.service-card .service-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-card .link-arrow {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: auto;
}

/* --- Destinations --- */
.destinations-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.destination-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 220px;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.destination-item:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: var(--text-light);
}

.destination-overlay h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
}

/* --- Stats Section --- */
.stats-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.stats-text {
    flex: 1;
}

.stats-text p {
    margin-top: 20px;
    color: var(--text-gray);
}

.stats-numbers {
    flex: 2;
    display: flex;
    justify-content: space-between;
    border-left: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.stat-value-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: left;
    color: var(--text-light);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 20, 29, 0.85);
    z-index: -1;
}

.cta-content {
    margin-left: 5%;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.brand-col {
    flex: 1.5;
}

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

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-heading {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links li, .contact-info li {
    margin-bottom: 15px;
}

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

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

.contact-info i {
    margin-top: 4px;
    color: var(--text-light);
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 10px 0;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--text-light);
    color: var(--primary-dark);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
}

.footer-legal .separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.3);
}

/* --- Mobile Navigation --- */
.nav::before {
    content: '';
    display: none;
}

/* --- Scroll Animations --- */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Inner Page Hero (service detail pages) --- */
.service-detail-hero {
    height: 62vh;
    min-height: 460px;
}

.service-detail-hero .hero-title {
    font-size: 56px;
}

.service-detail-hero .hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(7, 12, 18, 0.55);
    z-index: 0;
}

.service-detail-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* --- Solutions Grid (inner pages) --- */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.solution-item {
    padding: 34px;
    border: 1px solid rgba(11,20,29,0.1);
    border-radius: 8px;
    background: #fff;
}

.solution-item h3 {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.solution-item p,
.solution-item li {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.solution-item li {
    margin-bottom: 10px;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* --- Responsive: Tablet (1024px) --- */
@media (max-width: 1024px) {
    .section-padding { padding: 70px 0; }
    .hero-title { font-size: 52px; }
    .hero-content { margin-left: 3%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .destinations-gallery { grid-template-columns: repeat(3, 1fr); }
    .stats-container { flex-direction: column; text-align: center; }
    .stats-numbers { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 40px; width: 100%; }
    .nav-list { gap: 18px; }
    .nav-link { font-size: 11px; }
    .cta-title { font-size: 34px; }
    .solutions-grid { gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* --- Responsive: Mobile (768px) --- */
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
    .container { padding: 0 20px; }

    /* Nav */
    .nav { display: none; }
    .mobile-toggle {
        display: inline-flex;
        z-index: 1002;
        position: relative;
    }

    /* Mobile Nav Overlay */
    .nav-open {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, rgba(7,12,18,0.96), rgba(11,20,29,0.92));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        align-items: flex-end;
        justify-content: flex-start;
        flex-direction: column;
        padding: 88px 18px 24px;
        overflow-y: auto;
        animation: mobileMenuFade 0.25s ease;
    }

    .nav-open::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 25% 10%, rgba(199,154,91,0.16), transparent 32%);
        pointer-events: none;
    }

    .nav-open .nav-list {
        flex-direction: column;
        gap: 6px;
        text-align: left;
        width: 100%;
        max-width: 360px;
        padding: 16px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        background: rgba(255,255,255,0.06);
        box-shadow: 0 24px 80px rgba(0,0,0,0.36);
        position: relative;
        z-index: 1;
    }

    .nav-open .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-open .nav-item:first-child { border-top: none; }
    .nav-open .nav-item:last-child { border-bottom: none; }

    .nav-open .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 12px;
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 1.2px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-open .nav-link::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.28);
        margin-right: 14px;
        flex-shrink: 0;
    }

    .nav-open .nav-link:hover,
    .nav-open .nav-link.active {
        background: rgba(199, 154, 91, 0.1);
        color: var(--accent-color);
    }

    .nav-open .nav-link:hover::before,
    .nav-open .nav-link.active::before {
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

    .nav-open .nav-link.active::after {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        display: flex;
        align-items: center;
    }

    .hero-video-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-title {
        font-size: 38px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 15px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.7;
        opacity: 0.9;
    }

    .hero-desc br { display: none; }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero::before {
        background: linear-gradient(
            to bottom,
            rgba(11,20,29,0.75) 0%,
            rgba(11,20,29,0.5) 50%,
            rgba(11,20,29,0.7) 100%
        );
    }

    .scroll-down { display: none; }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        text-align: center;
        padding: 16px 24px;
        font-size: 13px;
        width: 100%;
    }

    /* Split / About */
    .split-container {
        flex-direction: column;
        gap: 30px;
    }

    .split-text {
        padding-right: 0;
        order: 2;
    }

    .split-image {
        order: 1;
    }

    .split-image img {
        border-radius: 8px;
        max-height: 280px;
        object-fit: cover;
    }

    .split-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Section Headers */
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-header { margin-bottom: 35px; }
    .section-subtitle { font-size: 11px; letter-spacing: 2px; }

    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 260px;
        border-radius: 10px;
    }

    .service-card-inner {
        padding: 20px 14px;
    }

    .service-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card .service-title {
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .service-card .service-desc {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .service-card .link-arrow {
        font-size: 10px;
    }

    /* Destinations */
    .destinations-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .destination-item {
        height: 150px;
        border-radius: 6px;
    }

    .destination-overlay {
        padding: 10px 8px;
    }

    .destination-overlay h4 {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .stats-text p {
        font-size: 14px;
    }

    .stats-numbers {
        flex-direction: column;
        gap: 0;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 30px;
        width: 100%;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding: 25px 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-value { font-size: 32px; }
    .stat-icon { font-size: 24px; margin-bottom: 10px; }
    .stat-label { font-size: 11px; }
    .stat-value-text { font-size: 12px; }

    /* CTA */
    .cta-section { padding: 60px 0; }

    .cta-content {
        margin-left: 0;
        text-align: center;
    }

    .cta-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-title br { display: none; }

    .cta-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* Footer */
    .footer { padding-top: 50px; }

    .footer-container {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 35px;
    }

    .brand-col {
        text-align: center;
        flex: 1;
    }

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-desc {
        font-size: 13px;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .social-links {
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .social-links a {
        margin-right: 0;
    }

    .footer-col {
        flex: none;
        width: 100%;
    }

    .footer-heading {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer-links li,
    .contact-info li {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .newsletter-col p {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 16px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-legal {
        font-size: 11px;
    }

    /* Inner Pages */
    .service-detail-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 80px;
    }

    .service-detail-hero .hero-title {
        font-size: 28px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes mobileMenuFade {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Responsive: Small Mobile (480px) --- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 40px 0; }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 10px; }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: 220px;
    }

    .service-card-inner {
        padding: 24px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .service-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 0;
        margin-right: 16px;
        flex-shrink: 0;
    }

    .service-card .service-title {
        font-size: 14px;
        margin-bottom: 0;
        flex: 1;
    }

    .service-card .service-desc {
        width: 100%;
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.7;
    }

    .service-card .link-arrow {
        width: 100%;
        margin-top: 14px;
        font-size: 11px;
    }

    .destinations-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .destination-item { height: 130px; }
    .destination-overlay h4 { font-size: 10px; }

    .cta-title { font-size: 22px; }

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

    .split-image img {
        max-height: 220px;
    }

    .stats-text .section-title {
        font-size: 20px;
    }

    .stat-item { padding: 20px 16px; }
    .stat-value { font-size: 28px; }
}

/* --- Responsive: Very Small (360px) --- */
@media (max-width: 360px) {
    .container { padding: 0 12px; }

    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 13px; }
    .logo-img { height: 35px; }

    .section-title { font-size: 20px; }

    .services-grid { grid-template-columns: 1fr; }

    .destinations-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .destination-item { height: 120px; }

    .footer-bottom p { font-size: 10px; }
    .footer-legal { font-size: 10px; }
}
