:root {
    --International-Orange-500: #fd5b04;
    --Deep-Sea-Green-500: #015A61;
    --Black: #000000;
    --Dark-Teal: #005f63;
    --White: #ffffff;
    --Gray-Text: #4b5563;
    --Light-Gray-Bg: #f9fafb;
    --Pearl-Bush-50: #FDFCFB;
    --Container-MaxWidth: 1280px;
    --Firefly-500: #507184;
    --Firefly-600: #3B5664;
    --Firefly-700: #283C46;
    --Viridian-500: #348070;

    /* Font Families */
    --font-primary: "Grift", sans-serif;
    --font-body: "Grift", sans-serif;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/Grift-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/Grift-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--Black);
    background-color: var(--Light-Gray-Bg);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2.5rem;
    background-color: var(--White);
    position: fixed;
    width: 90%;
    max-width: var(--Container-MaxWidth);
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 10px;
    width: 95%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.navbar.mobile-menu-open {
    border-radius: 6px;
    width: 95%;
    top: 10px;
}

.logo {
    display: flex;
    align-items: center;
    width: 60px;
    /* Adjust based on logo needs */
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Inactive Options */
.nav-links a {
    color: var(--Black);
    /* default to black per request */
    text-align: center;
    font-family: 'Grift', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    transition: color 0.3s;
}

/* Active Option */
.nav-links a.active,
.nav-links a:hover {
    color: var(--International-Orange-500);
    font-weight: 500;
}

/* Contact Button in Navbar */
.btn-contact-nav {
    display: inline-flex;
    padding: 0.5rem 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--International-Orange-500);
    box-shadow: 0 4px 15px rgba(253, 91, 4, 0.2);

    /* Text Styles */
    color: var(--White);
    text-align: center;
    font-family: 'Grift', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-nav:hover {
    background: #e54e00;
    box-shadow: 0 6px 20px rgba(253, 91, 4, 0.3);
    transform: translateY(-1px);
    color: var(--White);
}

/* Navbar Top (Logo + Burger Row) - Only active on mobile */
.navbar-top {
    display: contents;
    /* On desktop, children flow as if navbar-top doesn't exist */
}

/* Burger Menu - Hidden on Desktop */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--Black);
}

/* Mobile Contact Button - Hidden on Desktop */
.btn-contact-nav-mobile {
    display: none;
}

/* Main Padding Reset */
main {
    padding-top: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Smart padding for max-width constraint */
    padding: 0 max(5%, (100% - var(--Container-MaxWidth)) / 2);
    color: var(--White);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: hero-crossfade 32s infinite;
}

.hero-slide:nth-child(2) {
    animation-delay: 8s;
}

.hero-slide:nth-child(3) {
    animation-delay: 16s;
}

.hero-slide:nth-child(4) {
    animation-delay: 24s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 90, 97, 0.85) 0%, rgba(1, 90, 97, 0.70) 100%);
    z-index: 1;
}

@keyframes hero-crossfade {
    0% {
        opacity: 0;
    }

    6.25% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    31.25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding-top: 80px;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: var(--White);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    font-family: 'Grift', sans-serif;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Grift', sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    /* 105.882% */
    margin-bottom: 2rem;
    color: var(--White);
}

.hero p {
    font-family: 'Grift', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--International-Orange-500);
    color: var(--White);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Grift', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 91, 4, 0.3);
}

.btn-primary:hover {
    background-color: #e54e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 91, 4, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--White);
    border: 1px solid var(--White);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Grift', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Divider */
.section-divider {
    text-align: center;
    padding: 60px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    /* Space between lines and text */
}

.section-divider h2 {
    color: var(--Viridian-500);
    font-size: 20px;
    font-weight: 500;
    font-family: 'Grift', sans-serif;
    line-height: 24px;
    /* 120% */
    letter-spacing: 0.2px;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    margin: 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 75px;
    height: 1px;
    background-color: #CEE3F0;
    display: block;
}

/* Responsive Design - Mobile First Priority */
@media (max-width: 768px) {

    /* NAVBAR - Hamburger Menu */
    .navbar {
        width: 95%;
        padding: 0.6rem 1.2rem;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 6px;
        background-color: var(--White);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        display: flex;
    }

    .navbar.scrolled,
    .navbar.mobile-menu-open {
        width: 95%;
        padding: 0.6rem 1.2rem;
        background-color: var(--White);
    }

    .navbar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--Black);
    }

    .burger-menu svg {
        width: 28px;
        height: 28px;
    }

    .nav-links {
        display: flex;
        /* Always flex, but hidden via height/opacity */
        flex-direction: column;
        gap: 0;
        margin: 0;
        width: 100%;
        background: var(--White);
        padding: 0;

        /* Animation properties */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        transform: translateY(-10px);
        pointer-events: none;
        /* Prevent clicks when closed */
    }

    .nav-links.nav-open {
        margin-top: 1rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;

        /* Animation open state */
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;
    }

    .nav-links a {
        text-align: center;
        width: 100%;
        display: block;
        padding: 14px 0;
        font-size: 18px;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .btn-contact-nav {
        display: none;
        /* Hide desktop contact button */
    }

    .btn-contact-nav-mobile {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 250px;
        padding: 12px 24px;
        border-radius: 6px;
        margin: 20px auto 10px;
        background: var(--International-Orange-500);
        color: white !important;
        font-family: 'Grift', sans-serif;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 4px 10px rgba(253, 91, 4, 0.2);
    }

    /* HERO - Clean & Readable */
    .hero {
        min-height: 90vh;
        padding: 8rem 5% 4rem;
        text-align: center;
        background: none;
    }

    .hero-overlay {
        background: linear-gradient(rgba(1, 90, 97, 0.85), rgba(1, 90, 97, 0.90));
    }

    .hero-content {
        padding-top: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        /* Match mobile contact button padding */
        height: auto;
        font-size: 18px;
        /* Match mobile contact button font size */
        font-weight: 500;
        /* Match mobile contact button font weight */
        border-radius: 6px;
        /* Match mobile contact button border radius */
    }

    .hero-buttons .btn-secondary {
        background-color: transparent;
        border-color: var(--White);
        color: var(--White);
    }

    /* SECTION DIVIDER */
    .section-divider {
        padding: 30px 5%;
    }

    .section-divider h2 {
        font-size: 16px;
    }

    .section-divider::before,
    .section-divider::after {
        width: 40px;
    }

    /* WHO WE ARE - Strategic Ally */
    .strategic-ally {
        flex-direction: column;
        padding: 40px 5%;
        gap: 30px;
    }

    .ally-image-container {
        width: 100%;
    }

    .video-content {
        max-height: 280px;
        border-radius: 12px;
    }

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

    .ally-content h2 {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }

    .orange-line {
        margin: 0 auto 1.5rem;
    }

    .ally-content p {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }

    .ally-content .quote {
        font-size: 15px;
        text-align: center;
    }

    /* WHAT WE DO - Services */
    .what-we-do {
        padding: 0 5% 50px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 2rem;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 50px;
        padding-top: 30px;
    }

    .service-card {
        margin: 0;
        padding: 35px 25px 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .card-icon {
        left: 20px;
        top: -25px;
        width: 50px;
        height: 50px;
    }

    .service-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card ul li {
        font-size: 15px;
    }

    /* SERVICES CTA */
    .services-footer {
        margin-top: 50px;
    }

    .services-cta-card {
        padding: 35px 20px;
        border-radius: 16px;
    }

    .services-cta-card p {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .btn-primary-solid {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
    }

    /* COVERAGE */
    .coverage {
        padding: 0 5% 50px;
    }

    .coverage-title,
    .coverage-text {
        font-size: 16px;
        text-align: center;
    }

    .coverage-card-map {
        height: 250px;
        order: 2;
        /* Move map below text if needed, but it's already in 1 column */
    }

    .coverage-card-info,
    .coverage-card-orange {
        padding: 40px 30px;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 50px 5%;
    }

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

    .final-cta p {
        font-size: 16px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .contact-info a {
        font-size: 15px;
    }
}


/* Strategic Ally Section */
.strategic-ally {
    display: flex;
    /* Smart padding for max-width constraint */
    padding: 60px max(5%, (100% - var(--Container-MaxWidth)) / 2);
    gap: 60px;
    align-items: center;
    /* Remove explicit width/margins as padding handles centering */
    width: 100%;
}

.ally-image-container {
    flex: 1;
}

.video-content {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    max-height: 500px;
    /* Limit height if needed to match design proportions */
}

.ally-content {
    flex: 1;
}

.ally-content h2 {
    font-size: 34px;
    font-weight: 300;
    line-height: 36px;
    /* 105.882% */
    margin-bottom: 1.5rem;
    color: var(--Black);
    font-family: 'Grift', sans-serif;
}

.orange-line {
    width: 40px;
    height: 1px;
    background-color: var(--International-Orange-500);
    margin-bottom: 2rem;
}

.ally-content p {
    color: var(--Black);
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    margin-bottom: 1.5rem;
    font-family: 'Grift', sans-serif;
}

.ally-content strong {
    color: var(--Black);
    font-weight: 500;
    font-family: 'Grift', sans-serif;
}

.ally-content .quote {
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    /* 125% */
    margin-top: 2rem;
    color: var(--Firefly-600);
    font-family: 'Grift', sans-serif;
}

.ally-content> :last-child {
    margin-bottom: 0;
}

/* What We Do Section */
.what-we-do {
    padding: 0 max(5%, (100% - var(--Container-MaxWidth)) / 2) 80px;
}

.section-title {
    color: var(--Black);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 3rem;
    font-family: 'Grift', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Layout */
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--White);
    padding: 30px;
    border-radius: 8px;
    /* Optional card style */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Add subtle shadow if desired: box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
    position: relative;
    /* Context for floating icon */
    margin-top: 20px;
    /* Space for the floating icon */
    margin-left: 20px;
    /* Space for the floating icon */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background-color: var(--International-Orange-500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--White);
    box-shadow: 0 4px 10px rgba(253, 91, 4, 0.3);
    z-index: 10;
}

.service-card h4 {
    color: var(--Black);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Grift', sans-serif;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    color: var(--Gray-Text);
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-body);
    transition: transform 0.2s ease;
    cursor: default;
    width: fit-content;
}

.service-card ul li:hover {
    transform: translateX(5px);
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--International-Orange-500);
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.services-cta-card {
    background-color: var(--Firefly-700, #283C46);
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    /* Context for absolute video */
    overflow: hidden;
    /* Crop video */
    /* No shadow as requested */
}

.cta-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    /* 10% Opacity */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    /* Ensure text is above video */
}

.services-cta-card p {
    color: var(--White);
    font-size: 26px;
    /* Text large */
    font-family: 'Grift', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-solid {
    display: inline-block;
    background-color: var(--International-Orange-500);
    color: var(--White);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Grift', sans-serif;
    padding: 16px 40px;
    border-radius: 4px;
    /* Slightly rounded or 0 if preferred */
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-solid:hover {
    background-color: #e54e00;
    /* Darker orange */
    transform: translateY(-2px);
}

/* Coverage Section */
.coverage {
    padding: 0 max(5%, (100% - var(--Container-MaxWidth)) / 2) 80px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.coverage-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coverage-card-info {
    background-color: var(--White);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    /* Allow it to grow if needed, or take available space */
}

.coverage-title {
    text-align: left;
    margin-bottom: 24px;
}

.coverage-card-orange {
    background-color: var(--International-Orange-500);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--White);
}

.coverage-card-orange p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.coverage-card-map {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.coverage-text {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--Gray-Text);
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--font-body);
    text-align: left;
    /* Align text to left inside the card */
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-card-info {
        padding: 40px;
    }
}

/* Final CTA */
.final-cta {
    padding: 80px max(5%, (100% - var(--Container-MaxWidth)) / 2);
    background-color: var(--Light-Gray-Bg);
}

.final-cta-card {
    background: var(--Firefly-700, #283C46);
    /* Fallback color */
    border-radius: 20px;
    padding: 100px 40px;
    text-align: center;
    color: var(--White);
    position: relative;
    overflow: hidden;
    /* Important for containing the video */
}

.final-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--Dark-Teal);
    opacity: 0.85;
    /* Strong overlay to match brand style */
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    /* Ensure content stays above video and overlay */
    max-width: 1000px;
    /* Increased from 700px to allow inner elements to expand */
    width: 100%;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 34px;
    /* Matches section-title size */
    font-weight: 300;
    /* Light weight as requested */
    margin-bottom: 24px;
    font-family: 'Grift', sans-serif;
    color: var(--White);
    line-height: 1.1;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: 'Grift', sans-serif;
    /* Changed to Grift */
    font-weight: 300;
    /* Light weight consistent with Grift usage */
    max-width: 1000px;
    /* Significantly increased width */
    width: 100%;
    /* Ensure it takes available space up to max-width */
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    margin-bottom: 0;
}

.btn-primary.btn-orange {
    background-color: var(--International-Orange-500);
    color: var(--White);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    /* Adjusted weight for Grift */
    font-family: 'Grift', sans-serif;
    /* Changed to Grift */
    text-transform: none;
    /* Removed uppercase if not needed, or keep based on pref */
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary.btn-orange:hover {
    background-color: #d94a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 91, 4, 0.3);
}

@media (max-width: 768px) {
    .final-cta-card {
        padding: 60px 20px;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

/* Footer */
.site-footer {
    background-color: var(--Deep-Sea-Green-500);
    color: var(--White);
    padding: 80px max(5%, (100% - var(--Container-MaxWidth)) / 2) 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Grift', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--White);
    text-transform: uppercase;
}

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.brand-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--White);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--International-Orange-500);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--International-Orange-500);
}

.footer-contact li i {
    width: 16px;
    height: 16px;
    color: var(--International-Orange-500);
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* --- ANIMATIONS & REVEAL EFFECTS --- */

/* Initial hidden state for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

/* Visible state triggered by JS */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Stagger delay for groups (optional but nice) */
.reveal.delay-1 {
    transition-delay: 0.2s;
}

.reveal.delay-2 {
    transition-delay: 0.4s;
}

.reveal.delay-3 {
    transition-delay: 0.6s;
}

/* Entrance animations for Page Load */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

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

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

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Initial Load Animations */
.navbar {
    animation: fadeInDown 1s ease-out forwards;
}

.hero-content {
    animation: fadeInHero 1.2s ease-out 0.3s both;
}

.hero-subtitle,
.hero h1,
.hero p,
.hero-buttons {
    animation: fadeInUp 0.8s ease-out both;
}

.hero-subtitle {
    animation-delay: 0.5s;
}

.hero h1 {
    animation-delay: 0.7s;
}

.hero p {
    animation-delay: 0.9s;
}

.hero-buttons {
    animation-delay: 1.1s;
}

/* Responsive adjustment for NavBar animation */
@media (max-width: 768px) {
    @keyframes fadeInDownMobile {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .navbar {
        animation-name: fadeInDownMobile;
    }
}