/* =============================================
   TOTAL CARGO - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
    --color-gold: #CFA35C;
    --color-gold-dark: #b8923e;
    --color-gold-light: #e8c88a;
    --color-navy: #121D50;
    --color-navy-dark: #0a1230;
    --color-navy-light: #1e2d6a;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-100: #f7f7f7;
    --color-gray-200: #eeeeee;
    --color-gray-300: #e0e0e0;
    --color-gray-600: #666666;
    --color-gray-800: #333333;

    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);

    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.02);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* background: var(--color-gold); */
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: transparent;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background: #cfa35c;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

@media (max-width: 768px) {
    li.nav-item a {
        color: white;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .tracking-submit-btn {
        padding: 18px 40px !important;
    }

    .tracking-section-bg-img {
        opacity: 0.3;
    }
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =============================================
   HERO BANNER
   ============================================= */
.hero-banner {
    position: relative;
    min-height: 700px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    padding: 40px 0;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-navy);
    margin-bottom: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-value {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* =============================================
   TRACKING BOX
   ============================================= */
.tracking-box {
    margin-top: 20px;
    max-width: 600px;
}

.tracking-box-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.tracking-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tracking-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(18, 29, 80, 0.9) 0%,
            rgba(18, 29, 80, 0.75) 100%);
    backdrop-filter: blur(5px);
}

.tracking-form {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.tracking-input-group {
    flex: 1;
}

.tracking-input-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.tracking-input-group input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--color-gray-800);
    background: var(--color-white);
    border-radius: 8px;
    transition: box-shadow var(--transition-fast);
}

.tracking-input-group input::placeholder {
    color: var(--color-gray-600);
}

.tracking-input-group input:focus {
    box-shadow: 0 0 0 3px rgba(207, 163, 92, 0.3);
}

.tracking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-navy);
    background: var(--color-gold);
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    align-self: flex-end;
}

.tracking-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 163, 92, 0.4);
}

.tracking-btn svg {
    transition: transform var(--transition-fast);
}

.tracking-btn:hover svg {
    transform: translateX(4px);
}

.tracking-note {
    font-size: 12px;
    color: var(--color-gray-300);
    opacity: 0.8;
}

/* =============================================
   TRACKING SECTION (After Hero)
   ============================================= */
.tracking-section {
    position: relative;
    padding: 80px 0;
    background: #0a1628;
    overflow: hidden;
}

.tracking-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tracking-section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tracking-section .container {
    position: relative;
    z-index: 3;
}

.tracking-section-content {
    max-width: 560px;
}

/* Tracking Stats */
.tracking-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.tracking-stat-item {
    display: flex;
    flex-direction: column;
}

.tracking-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 1px;
}

.tracking-stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    margin-top: 4px;
}

.tracking-stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Tracking Form Wrapper */
.tracking-form-wrapper {
    max-width: 560px;
}

/* Tracking Tabs */
.tracking-tabs {
    display: inline-flex;
    margin-bottom: 0;
}

.tracking-tab {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-fast);
    border: none;
    cursor: default;
}

.tracking-tab:first-child {
    border-radius: 8px 0 0 0;
}

.tracking-tab:last-child {
    border-radius: 0 8px 0 0;
}

.tracking-tab.active {
    color: var(--color-gold);
    background: var(--color-white);
}

.tracking-tab:not(.active) {
    color: #060A17;
    background: #CFA35C;
}

.tracking-tab:hover:not(.active) {
    background: var(--color-gold-dark);
}

/* Tracking Form Box (White container) */
.tracking-form-box {
    background: var(--color-white);
    border-radius: 0 8px 8px 8px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.tracking-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.tracking-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-800);
    background: var(--color-white);
    border: 1px solid #060A17;
    border-radius: 8px;
    transition: border-color var(--transition-fast);
    letter-spacing: 1px;
}

.tracking-input::placeholder {
    color: var(--color-gray-600);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tracking-input:focus {
    border-color: var(--color-gold);
    outline: none;
}

.tracking-submit-btn {
    padding: 18px 54px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-navy);
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 50%, #8B6936 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    width: 200px;
}

.tracking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 163, 92, 0.5);
}

.tracking-help-text {
    font-size: 15px;
    color: #000;
    margin: 0;
}

.tracking-help-text a {
    color: var(--color-gold);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.tracking-help-text a:hover {
    color: var(--color-gold-dark);
}

/* =============================================
   ABOUT ANIMATED SECTION
   ============================================= */
.about-animated-section {
    position: relative;
    min-height: 100vh;
    background: var(--color-white);
    overflow: hidden;
    padding: 80px 0
}

/* Animated Background Container - Starts Full Width */
.about-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* After animation - shrinks to right side */
.about-animated-section.animate .about-bg-container {
    top: 0;
    left: 55%;
    right: 40px;
    bottom: 180px;
    border-radius: 16px;
    overflow: hidden;
    height: 80%;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 1;
    transition: opacity 0.8s ease;
}

.about-animated-section.animate .about-bg-overlay {
    opacity: 0.3;
}

.about-animated-section .container {
    position: relative;
    z-index: 3;
    padding-top: 0;
    padding-bottom: 0;
}

.about-animated-wrapper {
    display: grid;
    gap: 60px;
    min-height: 500px;
    align-items: start;
    grid-template-columns: 2fr 1.5fr;
}

/* Left Content */
.about-left-content {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.about-animated-section.animate .about-left-content {
    opacity: 1;
    transform: translateX(0);
}

.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #5C6C7B;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.about-intro strong {
    color: var(--color-navy);
    font-weight: 600;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #5C6C7B;
    margin-bottom: 32px;
    font-family: 'Roboto', sans-serif;
}

.about-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(207, 163, 92, 0.4);
}

/* Right Section */
.about-right-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease 0.6s;
}

.about-animated-section.animate .about-right-section {
    opacity: 1;
}

/* =============================================
   SERVICES PAGE HERO
   ============================================= */
.services-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    /* padding-top: var(--header-height); */
    margin-top: var(--header-height);
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 20%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 600px;
    padding: 60px 0;
}

.services-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-title {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 300px;
    }

    .services-hero-content {
        padding: 40px 0;
    }

    .services-hero-overlay {
        background: rgba(255, 255, 255, 0.85);
    }
}

.about-right-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Cards - Inside Animated Background */
.about-floating-cards {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.6s ease 0.8s;
}

.about-animated-section.animate .about-floating-cards {
    opacity: 1;
}

.about-floating-card {
    position: relative;
    background: var(--color-white);
    padding: 40px 32px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    width: 172px;
}

.about-animated-section.animate .about-floating-card {
    transform: translateY(0);
}

/* Anchor Icon at top of card */
.card-icon {
    position: absolute;
    top: -30px;
    left: 25%;
    transform: translateX(-50%);
    width: 59px;
    height: 59px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
}

.card-icon i {
    font-size: 24px;
    color: var(--color-white);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.card-stat {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 12px;
    margin-top: 8px;
}

.card-label {
    font-size: 18px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.0;
    padding: 20px 18px;
    border-radius: 6px;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    width: 152px;
}

/* Bottom Feature Cards Container */
.about-features-container {
    position: relative;
    z-index: 4;
    margin-top: 40px;
    padding-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-feature-card {
    background: var(--color-navy);
    padding: 36px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 130px;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(18, 29, 80, 0.3);
}

.about-animated-section.animate .about-feature-card:nth-child(1),
.about-animated-section.animate .about-feature-card:nth-child(2),
.about-animated-section.animate .about-feature-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    flex-shrink: 0;
    padding-right: 10px;
    border-right: 2px dotted #35555d;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    margin: 0;
}

/* =============================================
   SERVICES SECTION WITH ANIMATION
   ============================================= */
.services-section {
    position: relative;
    min-height: 100vh;
    background: #F5EDE0;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Background Layer - Contains Gold BG and Airplane */
.services-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

/* Gold Background - Initially full, opens into V-shape then expands to full width */
.services-gold-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #CFA35C 0%, #D4A85F 50%, #CFA35C 100%);
    opacity: 1;
    z-index: 1;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1) 1s, opacity 1s ease 1s; */
}

/* Animated state - reveals V-shape and then expands to full width (showing section bg #f5ede0) */
.services-section.animate .services-gold-bg {
    /* clip-path: polygon(0 0, 0 0, 50% 100%, 100% 0, 100% 0, 100% 100%, 0 100%); */
    opacity: 0;
}

/* Hide V-shape entirely once airplane is hidden */
.services-section.animation-complete .services-gold-bg {
    opacity: 0;
    pointer-events: none;
    transition: none;
}

/* Airplane - Initially full screen size at top center */
.services-airplane {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.services-airplane img {
    /* width: 90vw; */
    max-width: 1400px;
    height: auto;
    /* filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)); */
}

/* Animated state - airplane moves downward to end and fades out */
.services-section.animate .services-airplane {
    top: 100%;
    opacity: 0;
    transform: translateX(-50%) scale(1.2);
    transition-delay: 0s;
}

/* Content Layer */
.services-content-layer {
    position: relative;
    opacity: 0;
    transform: translateY(150px);
    transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9;
}

.services-section.animate .services-content-layer {
    opacity: 1;
    transform: translateY(0);
}

/* Services Header - Initially hidden */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show header after airplane animation */
.services-section.animate .services-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.services-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    text-transform: uppercase;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Service Card - Initially hidden */
.service-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

/* Staggered animation for cards - appear at the start (before airplane moves) */
.services-section.animate .service-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.services-section.animate .service-card:nth-child(2) {
    transition-delay: 0.3s;
}

.services-section.animate .service-card:nth-child(3) {
    transition-delay: 0.4s;
}

.services-section.animate .service-card:nth-child(4) {
    transition-delay: 0.5s;
}

.services-section.animate .service-card:nth-child(5) {
    transition-delay: 0.6s;
}

.services-section.animate .service-card:nth-child(6) {
    transition-delay: 0.7s;
}

/* Card Hover State - Dark Blue */
.service-card:hover {
    background: var(--color-navy);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 29, 80, 0.3);
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover {
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover:nth-child(2) {
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover:nth-child(3) {
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover:nth-child(4) {
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover:nth-child(5) {
    transition-delay: 0s !important;
}

.services-section.animate .service-card:hover:nth-child(6) {
    transition-delay: 0s !important;
}

.service-card:hover .service-name {
    color: var(--color-white);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-icon {
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 50%, #8B6936 100%);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 50%, #8B6936 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 28px;
    color: var(--color-white);
    transition: all 0.4s ease;
}

/* Service Name */
.service-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

/* Service Description */
.service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #5C6C7B;
    margin: 0;
    transition: color 0.4s ease;
}

/* =============================================
   FLIGHT SECTION
   ============================================= */
.flight-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.flight-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.flight-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.3) 100%);
}

.flight-section .container {
    position: relative;
    z-index: 3;
}

.flight-content {
    max-width: 550px;
    padding: 60px 0;
}

.flight-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.flight-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.flight-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-family: 'Roboto', sans-serif;
}

.flight-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-navy);
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.flight-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(207, 163, 92, 0.4);
}

/* =============================================
   LOGO MARQUEE SECTION
   ============================================= */
.logo-marquee-section {
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    padding: 20px 0;
    overflow: hidden;
}

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.logo-marquee-track {
    display: inline-flex;
    gap: 40px;
    animation: marquee-scroll 20s linear infinite;
}

.logo-marquee-track img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   TRUCK SECTION
   ============================================= */
.truck-section {
    width: 100%;
    overflow: hidden;
}

.truck-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    position: relative;
    background: #F5EDE0;
    padding: 80px 0;
    overflow: hidden;
    min-height: 850px;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    align-items: start;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
}

/* Title & Label - Initial State (from left) */
.testimonials-label,
.testimonials-title {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section.animate .testimonials-label {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.testimonials-section.animate .testimonials-title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.testimonials-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Testimonials Image - Starts Full Container Width, Shrinks After Animation */
.testimonials-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    overflow: visible;
    z-index: 1;
    transition: top 2s ease-out, left 2s ease-out, right 2s ease-out, bottom 2s ease-out, border-radius 2s ease-out, overflow 0s 2s;
}

.testimonials-section.animate .testimonials-image {
    top: 170px;
    left: 20px;
    right: 55%;
    bottom: 280px;
    border-radius: 12px;
    overflow: visible;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: border-radius 2s ease-out;
}

.testimonials-section.animate .testimonials-image img {
    border-radius: 12px;
}

/* Quote Icon - Initial State (from top) */
.quote-icon {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 132px;
    height: 132px;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
}

.testimonials-section.animate .quote-icon {
    opacity: 1;
    transform: translateY(0);
}

.quote-icon p {
    color: white;
    font-size: 10rem;
    position: absolute;
    top: -25px;
    right: 33px;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Testimonial Cards - Initial State (from bottom) */
.testimonial-card {
    padding: 25px 38px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section.animate .testimonial-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.testimonials-section.animate .testimonial-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.testimonials-section.animate .testimonial-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Dark card on left side */
.testimonials-left .testimonial-card {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.testimonials-section.animate .testimonials-left .testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.dark {
    background: #060A17;
    margin-top: 380px;
}

.testimonial-card.light {
    background: var(--color-white);
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-card .stars i {
    font-size: 38px;
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.testimonial-card.dark .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.light .testimonial-text {
    color: var(--color-navy);
}

.testimonial-author {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial-card.dark .testimonial-author {
    color: var(--color-white);
}

.testimonial-card.light .testimonial-author {
    color: var(--color-navy);
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.footer {
    background: var(--color-white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 2px dotted black;
    margin-bottom: 20px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 290px;
    height: 145px;
    object-fit: contain;
}

.footer-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #060A17;
    margin: 0;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 130%;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #060A17;
    transition: color var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--color-gold);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-location-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    color: var(--color-navy);
    margin: 0 0 12px;
}

.highlight-gold {
    color: var(--color-gold);
}

.footer-address {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #060A17;
    margin: 0 0 16px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: #060A17;
}

.footer-contact-info li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact-info li a {
    color: #060A17;
    transition: color var(--transition-fast);
}

.footer-contact-info li a:hover {
    color: var(--color-gold);
}

/* Footer Bottom Line */
/* .footer-bottom-line {
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-navy) 100%);
} */

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Services List Items - Line by Line Animation */
.services-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-items.revealed li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Services Options */
/* Start after header (approx 0.4s) */
.services-items.revealed li:nth-child(1) {
    transition-delay: 0.4s;
}

.services-items.revealed li:nth-child(2) {
    transition-delay: 0.5s;
}

.services-items.revealed li:nth-child(3) {
    transition-delay: 0.6s;
}

.services-items.revealed li:nth-child(4) {
    transition-delay: 0.7s;
}

.services-items.revealed li:nth-child(5) {
    transition-delay: 0.8s;
}

.services-items.revealed li:nth-child(6) {
    transition-delay: 0.9s;
}

.services-items.revealed li:nth-child(7) {
    transition-delay: 1.0s;
}

.services-items.revealed li:nth-child(8) {
    transition-delay: 1.1s;
}

.services-items.revealed li:nth-child(9) {
    transition-delay: 1.2s;
}

.services-items.revealed li:nth-child(10) {
    transition-delay: 1.3s;
}

.services-items.revealed li:nth-child(11) {
    transition-delay: 1.4s;
}


@media (max-width: 992px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 13px;
    }

    /* About Animated Section */
    .about-animated-wrapper {
        flex-direction: column;
        gap: 40px;
        grid-template-columns: 1fr !important;
        margin-top: 20px;
    }

    .services-airplane img {
        display: none;
    }

    .about-left-content {
        max-width: 100%;
        text-align: center;
    }

    .about-animated-section.animate .about-bg-container {
        left: 20px;
        right: 20px;
        /* top: 60%; */
        bottom: 0px;
        position: relative;
        overflow: visible;
    }

    .about-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-floating-cards {
        flex-direction: column;
        gap: 50px;
        position: relative;
        left: 45%;
    }

    .about-bg-overlay {
        display: none;
    }

    .about-floating-card {
        width: 100%;
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        background: var(--color-navy);
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
    }

    /* Hero */
    .hero-banner {
        padding-top: calc(var(--header-height) + 20px);
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-label {
        font-size: 22px;
    }

    .stat-divider {
        height: 40px;
    }

    /* Tracking Box */
    .tracking-box {
        max-width: 100%;
    }

    .tracking-form {
        flex-direction: column;
    }

    .tracking-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tracking-content {
        padding: 20px;
    }

    .tracking-input-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .tracking-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: var(--header-height);
}

/* =============================================
   RESPONSIVE - TESTIMONIALS SECTION
   ============================================= */

/* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
    .testimonials-section {
        min-height: auto;
        padding: 120px 0 60px 0;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Disable full-width image animation on tablet */
    .testimonials-image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        border-radius: 12px;
        overflow: visible;
        margin-bottom: 30px;
    }

    .testimonials-section.animate .testimonials-image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .testimonials-image img {
        width: 100%;
        height: 400px;
        border-radius: 12px;
    }

    .testimonials-section.animate .testimonials-image img {
        height: 400px;
    }

    /* Quote icon positioning for tablet */
    .quote-icon {
        top: -50px !important;
        right: -30px !important;
        width: 90px !important;
        height: 90px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .quote-icon p {
        font-size: 6rem !important;
        top: -18px !important;
        right: 22px !important;
    }

    /* Title and label - visible immediately */
    .testimonials-label,
    .testimonials-title {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .testimonials-title {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .testimonials-label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Dark card margin reset */
    .testimonial-card.dark {
        margin-top: 30px !important;
    }

    /* Cards visible immediately */
    .testimonial-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .testimonials-right {
        gap: 20px;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 100px 0 50px 0;
    }

    .testimonials-wrapper {
        gap: 30px;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .testimonials-label {
        font-size: 12px;
    }

    .testimonials-image {
        margin-bottom: 25px;
    }

    .testimonials-image img {
        height: 300px !important;
    }

    .quote-icon {
        top: -40px !important;
        right: -15px !important;
        width: 70px !important;
        height: 70px !important;
    }

    .quote-icon p {
        font-size: 4.5rem !important;
        top: -14px !important;
        right: 18px !important;
    }

    .testimonial-card {
        padding: 22px 28px;
    }

    .testimonial-card.dark {
        margin-top: 25px !important;
    }

    .testimonial-card .stars {
        margin-bottom: 14px;
    }

    .testimonial-card .stars i {
        font-size: 30px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 15px;
    }

    .testimonials-right {
        gap: 18px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 90px 0 40px 0;
    }

    .testimonials-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .testimonials-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .testimonials-image {
        margin-bottom: 20px;
    }

    .testimonials-image img {
        height: 240px !important;
    }

    .quote-icon {
        width: 55px !important;
        height: 55px !important;
        top: -28px !important;
        right: -8px !important;
    }

    .quote-icon p {
        font-size: 3.5rem !important;
        top: -10px !important;
        right: 14px !important;
    }

    .testimonial-card {
        padding: 18px 22px;
    }

    .testimonial-card.dark {
        margin-top: 20px !important;
    }

    .testimonial-card .stars {
        gap: 3px;
        margin-bottom: 12px;
    }

    .testimonial-card .stars i {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .testimonials-right {
        gap: 15px;
    }
}

@media (max-width: 1980px) {
    .services-airplane {
        position: absolute;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
    }

    .services-airplane img {
        width: 100vw;
        max-width: 1800px;
        height: auto;
        /* filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)); */
    }

    .tracking-section {
        position: relative;
        padding: 100px 0;
        background: #0a1628;
        overflow: hidden;
    }
}

@media (min-width: 1981px) {
    .services-airplane img {
        width: 100vw;
        max-width: 2100px;
        height: auto;
    }
    .services-airplane {
        position: absolute;
        top: -120%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
    }    
}

/* Small desktops */
@media (max-width: 1280px) {
    .services-airplane {
        top: -80%;
    }
}

/* Your device */
@media (min-width: 1366px) and (max-height: 900px) {
    .services-airplane {
        top: -80%;
    }
}

/* Large desktops */
@media (min-width: 1600px) {
    .services-airplane {
        top: -100%;
    }
}

/* Ultra-wide / 4K */
@media (min-width: 1920px) {
    .services-airplane {
        top: -120%;
    }
}
/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
    padding-top: 0;
}

.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%); */
    z-index: 2;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-content {
    max-width: 600px;
    padding-top: 30px;
}

.contact-tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-title {
    font-size: clamp(40px, 6vw, 48px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-details-box {
    margin-top: 40px;
}

.contact-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item i,
.contact-icon {
    font-size: 20px;
    color: var(--color-navy);
    display: inline-block;
    vertical-align: middle;
    width: 28px;
}

.contact-info-item p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #0d1b3e;
    font-weight: 700;
    line-height: 1.4;
}

.contact-info-item p strong {
    font-weight: 800;
}

.bold-text {
    font-family: var(--font-secondary);
    font-weight: 800 !important;
    font-size: 16px !important;
    max-width: 500px;
    margin-bottom: 15px;
}

/* Contact Marquee */
.contact-marquee {
    background: linear-gradient(180deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%) !important;
    padding: 25px 0 !important;
}

.contact-marquee .inverted-logo {
    filter: brightness(0) invert(1);
    height: 40px !important;
}

.contact-marquee .logo-marquee-track {
    animation-duration: 7s;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-hero-bg::after {
        background: rgba(255, 255, 255, 0.8);
    }

    .contact-tagline {
        font-family: var(--font-secondary);
        font-size: 15px;
        font-weight: 700;
        color: var(--color-gold);
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .contact-subtitle {
        font-family: var(--font-secondary);
        font-size: 18px;
        font-weight: 700;
        color: var(--color-gold);
        margin-bottom: 20px;
    }
}

/* =============================================
   DOWNLOAD PAGE
   ============================================= */
.download-page {
    padding-top: 0;
}

.download-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 170px 0 150px;
}

.download-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.download-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.download-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.download-hero .container {
    position: relative;
    z-index: 3;
}

.download-content {
    max-width: 600px;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
}

.download-item a {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gold);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-item a i {
    font-size: 14px;
    color: var(--color-gray-300);
}

.download-item a:hover {
    color: var(--color-gold-dark);
    transform: translateX(5px);
}

.download-item a:hover i {
    color: var(--color-gold-dark);
}

@media (max-width: 768px) {
    .download-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .download-item a {
        font-size: 18px;
    }
}

/* =============================================
   SERVICES PAGE SECTIONS
   ============================================= */

/* Services Features Section */
.services-features-section {
    background-color: #F9F3EA;
    padding: 100px 0;
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #99753E 0%, #EBBA6A 54.81%, #8B6936 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-icon-box img {
    /* width: 40px; */
    height: auto;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Services Plane Section */
.services-plane-section {
    width: 100%;
    line-height: 0;
}

.services-plane-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Features Card Animation */
.feature-card {
    opacity: 0;
    transform: translate(100px, 100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-features-section.animate .feature-card {
    opacity: 1;
    transform: translate(0, 0);
}

.services-features-section.animate .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-features-section.animate .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-features-section.animate .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.services-features-section.animate .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.services-features-section.animate .feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

/* Responsiveness */

/* Services List Items - Line by Line Animation */
.services-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-items.revealed li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Services Options */
/* Start after header (approx 0.4s) */
.services-items.revealed li:nth-child(1) {
    transition-delay: 0.4s;
}

.services-items.revealed li:nth-child(2) {
    transition-delay: 0.5s;
}

.services-items.revealed li:nth-child(3) {
    transition-delay: 0.6s;
}

.services-items.revealed li:nth-child(4) {
    transition-delay: 0.7s;
}

.services-items.revealed li:nth-child(5) {
    transition-delay: 0.8s;
}

.services-items.revealed li:nth-child(6) {
    transition-delay: 0.9s;
}

.services-items.revealed li:nth-child(7) {
    transition-delay: 1.0s;
}

.services-items.revealed li:nth-child(8) {
    transition-delay: 1.1s;
}

.services-items.revealed li:nth-child(9) {
    transition-delay: 1.2s;
}

.services-items.revealed li:nth-child(10) {
    transition-delay: 1.3s;
}

.services-items.revealed li:nth-child(11) {
    transition-delay: 1.4s;
}


@media (max-width: 992px) {
    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-features-grid {
        grid-template-columns: 1fr;
    }

    .services-features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px;
        transform: translateY(50px);
    }

    .services-features-section.animate .feature-card {
        transform: translateY(0);
    }
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.about-page {
    background-color: var(--color-white);
}

.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    /* margin-top: var(--header-height); */
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 80%); */
    z-index: 2;
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero-content {
    max-width: 650px;
    padding-top: 30px;
}

.about-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-hero .about-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* About Mission Section */
.about-mission-section {
    padding: 60px 0px 30px;
    background-color: var(--color-white);
}

/* Scroll Animation Logic */
[data-reveal] {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.mission-box {
    background-color: #0E163D;
    padding: 22px;
    border-radius: 12px;
}

.mission-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
}

.mission-highlight {
    color: var(--color-gold);
    /* font-weight: 700; */
}

@media (max-width: 1024px) {
    .about-hero-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.6) 100%);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 350px;
    }

    .mission-box {
        padding: 40px 30px;
    }

    .about-hero .about-title {
        font-size: 36px;
    }
}

/* =============================================
   OUR JOURNEY SECTION
   ============================================= */
.our-journey-section {
    padding: 30px 0 70px;
    /* Increased top padding for initial space look */
    background-color: var(--color-white);
    overflow: hidden;
    /* Prevent horizontal scroll during animation */
}

.journey-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    /* align-items: flex-start; */
}

.journey-main-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.journey-text-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin-bottom: 20px;
}

.journey-sub-section {
    margin-top: 20px;
}

.journey-sub-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gold);
    /* margin-bottom: 12px; */
}

.journey-sub-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin: 0;
}

.journey-image-box {
    position: sticky;
    top: 100px;
}

/* Custom Reveal Direction for Journey Content: Bottom to Top */
.journey-content[data-reveal] {
    opacity: 0;
    transform: translateY(150px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-content[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Reveal Direction for Journey Image: Right to Left */
.journey-image-box[data-reveal] {
    opacity: 0;
    transform: translateX(150px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-image-box[data-reveal].revealed {
    opacity: 1;
    transform: translateX(0);
}

.journey-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.journey-additional-content {
    margin-top: 15px;
}

.journey-additional-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin-bottom: 15px;
}

.journey-additional-content[data-reveal] {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-additional-content[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}


/* Services List Items - Line by Line Animation */
.services-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-items.revealed li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Services Options */
/* Start after header (approx 0.4s) */
.services-items.revealed li:nth-child(1) {
    transition-delay: 0.4s;
}

.services-items.revealed li:nth-child(2) {
    transition-delay: 0.5s;
}

.services-items.revealed li:nth-child(3) {
    transition-delay: 0.6s;
}

.services-items.revealed li:nth-child(4) {
    transition-delay: 0.7s;
}

.services-items.revealed li:nth-child(5) {
    transition-delay: 0.8s;
}

.services-items.revealed li:nth-child(6) {
    transition-delay: 0.9s;
}

.services-items.revealed li:nth-child(7) {
    transition-delay: 1.0s;
}

.services-items.revealed li:nth-child(8) {
    transition-delay: 1.1s;
}

.services-items.revealed li:nth-child(9) {
    transition-delay: 1.2s;
}

.services-items.revealed li:nth-child(10) {
    transition-delay: 1.3s;
}

.services-items.revealed li:nth-child(11) {
    transition-delay: 1.4s;
}


@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journey-image-box {
        position: static;
        order: -1;
    }

    .journey-image-box[data-reveal] {
        transform: translateY(50px);
        /* Simpler vertical reveal on mobile */
    }

    .journey-image-box[data-reveal].revealed {
        transform: translateY(0);
    }

    .our-journey-section {
        padding: 10px 0;
    }
}



/* =============================================
   REFINED GUIDING PRINCIPLES SECTION
   ============================================= */
.guiding-principles-section {
    /* padding: 150px 0; */
    background-color: var(--color-white);
    overflow: hidden;
}

.principles-top[data-reveal] {
    opacity: 1;
    transform: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 35px;
    transition: none;
    position: relative;
}

.principles-image {
    transition: all 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Initial state: Big and Centered */
    transform: scale(2.2) translateX(25%);
    z-index: 2;
    transform-origin: center center;
}

.principles-top.revealed .principles-image {
    /* Final state: Normal in Grid */
    transform: scale(1) translateX(0);
}

.principles-text {
    opacity: 0;
    transform: translateX(500px);
    transition: all 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.principles-top.revealed .principles-text {
    opacity: 1;
    transform: translateX(0);
}

.principles-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
}

.principle-main-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.principle-quote {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-gold);
    margin: 0 0 35px 0;
    line-height: 1.1;
}

.principle-desc {
    font-size: 16.5px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
}

.principles-divider {
    border: none;
    border-top: 2px dashed #121d50;
    /* margin: 40px 0; */
    opacity: 1;
}

.offers-section {
    padding: 20px;
}

.offers-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.offer-item {
    display: flex;
    flex-direction: column;
}

.offer-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.offer-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background-color: var(--color-navy);
    border-radius: 50%;
}

.offer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    padding-right: 45px;
    text-align: center;
}

@media (max-width: 1024px) {
    .principles-top[data-reveal] {
        gap: 40px;
    }

    .offers-grid {
        gap: 40px;
    }
}


/* Services List Items - Line by Line Animation */
.services-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-items.revealed li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Services Options */
/* Start after header (approx 0.4s) */
.services-items.revealed li:nth-child(1) {
    transition-delay: 0.4s;
}

.services-items.revealed li:nth-child(2) {
    transition-delay: 0.5s;
}

.services-items.revealed li:nth-child(3) {
    transition-delay: 0.6s;
}

.services-items.revealed li:nth-child(4) {
    transition-delay: 0.7s;
}

.services-items.revealed li:nth-child(5) {
    transition-delay: 0.8s;
}

.services-items.revealed li:nth-child(6) {
    transition-delay: 0.9s;
}

.services-items.revealed li:nth-child(7) {
    transition-delay: 1.0s;
}

.services-items.revealed li:nth-child(8) {
    transition-delay: 1.1s;
}

.services-items.revealed li:nth-child(9) {
    transition-delay: 1.2s;
}

.services-items.revealed li:nth-child(10) {
    transition-delay: 1.3s;
}

.services-items.revealed li:nth-child(11) {
    transition-delay: 1.4s;
}


@media (max-width: 992px) {
    .principles-top[data-reveal] {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }

    .principles-image,
    .principles-text {
        transform: translateY(50px) !important;
        opacity: 0;
    }

    .principles-top.revealed .principles-image,
    .principles-top.revealed .principles-text {
        transform: translateY(0) !important;
        opacity: 1;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .principle-main-title,
    .principle-quote {
        font-size: 28px;
    }

    .offers-title {
        font-size: 24px;
    }
}

.about-feature-card h3.feature-title {
    color: white;
}

/* =============================================
   ABOUT SERVICES LIST SECTION
   ============================================= */
.about-services-list-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.services-list-image {
    width: 100%;
    position: relative;
}

/* Services Image Animation - Small white box expands to full image */
/* Services Image Animation - Expand from bottom-left corner */
.services-list-image[data-reveal] {
    transform: scale(0.25);
    transform-origin: bottom left;
    opacity: 0;
    transition: transform 1.0s ease-out,
        opacity 1.0s ease-out;
}

.services-list-image[data-reveal]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    z-index: 1;
    opacity: 1;
    transition: opacity 1.5s ease-out 0.5s;
}

.services-list-image.revealed {
    transform: scale(1);
    opacity: 1;
}

.services-list-image.revealed::before {
    opacity: 0;
}

.services-v-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
}

.services-list-content {
    padding-top: 10px;
}

.services-header-box {
    background-color: var(--color-navy);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    /* display: inline-block; */
}

/* Services Header Animation - Slide from left to right */
.services-header-box[data-reveal] {
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.8s ease-out 0.2s,
        opacity 0.8s ease-out 0.2s;
}

.services-header-box.revealed {
    transform: translateX(0);
    opacity: 1;
}

.services-box-title {
    color: var(--color-white);
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
}

.services-items {
    list-style: none;
    padding-left: 10px;
    margin: 0 0 25px 0;
}

/* Services Items Animation - Slide from bottom to top */
.services-items[data-reveal] {
    /* Container appears so items can animate */
    opacity: 1;
    transform: none;
}

.services-items.revealed {
    opacity: 1;
}

.services-items li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gold);
    /* margin-bottom: 18px; */
    position: relative;
    padding-left: 25px;
    font-weight: 400;
}

.services-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 24px;
    line-height: 1;
    top: -2px;
}

.services-and-more {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 35px;
}


/* Services List Items - Line by Line Animation */
.services-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-items.revealed li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Services Options */
/* Start after header (approx 0.4s) */
.services-items.revealed li:nth-child(1) {
    transition-delay: 0.4s;
}

.services-items.revealed li:nth-child(2) {
    transition-delay: 0.5s;
}

.services-items.revealed li:nth-child(3) {
    transition-delay: 0.6s;
}

.services-items.revealed li:nth-child(4) {
    transition-delay: 0.7s;
}

.services-items.revealed li:nth-child(5) {
    transition-delay: 0.8s;
}

.services-items.revealed li:nth-child(6) {
    transition-delay: 0.9s;
}

.services-items.revealed li:nth-child(7) {
    transition-delay: 1.0s;
}

.services-items.revealed li:nth-child(8) {
    transition-delay: 1.1s;
}

.services-items.revealed li:nth-child(9) {
    transition-delay: 1.2s;
}

.services-items.revealed li:nth-child(10) {
    transition-delay: 1.3s;
}

.services-items.revealed li:nth-child(11) {
    transition-delay: 1.4s;
}


@media (max-width: 992px) {
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-header-box {
        padding: 20px;
    }

    .services-box-title {
        font-size: 26px;
    }

    .offer-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #666;
        padding-right: 0PX !important;
    }
}

/* =============================================
   COMMODITIES SECTION
   ============================================= */
.commodities-section {
    padding: 0 0 100px;
    /* background: #F5EDE0; */
}

.commodities-box {
    background-color: var(--color-navy);
    border-radius: 20px;
    padding: 40px 50px 30px;
    position: relative;
    overflow: hidden;
}

.commodities-title {
    color: var(--color-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commodities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* Removing gap to control spacing with padding/borders */
}

.commodity-column {
    padding: 0 0px 0px 40px;
}

/* Add dotted separator for 2nd and 3rd columns */
/* .commodity-column:not(:first-child) {
    border-left: 2px dotted rgba(255, 255, 255, 0.4);
} */

.commodity-column:first-child {
    padding-left: 0;
}

.commodity-column:last-child {
    padding-right: 0;
}

.commodity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commodity-list li {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
    /* padding-top: 10px; */
    border-left: 2px dotted #4a5360;
    height: 45px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Commodities CTA footer */
.commodities-cta {
    /* text-align: center; */
    margin-top: 50px;
    width: 100%;
    display: flex;
    /* justify-content: center; */
}

.commodities-cta p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #444;
    text-transform: uppercase;
}

.commodities-cta a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.commodities-cta a:hover {
    color: var(--color-navy);
}

/* Animations for Commodities */
.commodities-box[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.commodities-box.revealed {
    opacity: 1;
    transform: translateY(0);
}



/* Staggered Items Animation */
.commodities-box.revealed .commodity-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Line-by-line staggered delays */
.commodities-box.revealed .commodity-column ul li:nth-child(1) {
    transition-delay: 0.5s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(2) {
    transition-delay: 0.65s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(3) {
    transition-delay: 0.8s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(4) {
    transition-delay: 0.95s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(5) {
    transition-delay: 1.1s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(6) {
    transition-delay: 1.25s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(7) {
    transition-delay: 1.4s;
}

.commodities-box.revealed .commodity-column ul li:nth-child(8) {
    transition-delay: 1.55s;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .commodities-grid {
        grid-template-columns: 1fr;
    }

    .commodity-column {
        padding: 0 !important;
        border-left: none !important;
        /* border-bottom: 1px dotted rgba(255, 255, 255, 0.3); */
        /* padding-bottom: 40px !important; */
    }

    .commodity-column:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    section.commodities-section .container {
        width: auto;
    }

    .commodities-box {
        background-color: var(--color-navy);
        border-radius: 20px;
        padding: 40px 25px 30px;
    }

    .about-services-list-section {
        padding: 45px 0;
        background-color: var(--color-white);
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .commodities-section {
        padding: 0 0 10px;
    }
}

/* =============================================
   COVERAGE PAGE
   ============================================= */
.coverage-page {
    padding-top: 0;
}

.coverage-hero {
    position: relative;
    min-height: 70vh;
    /* Full viewport height look */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 40px;
    /* margin-top: var(--header-height); */
}

.coverage-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coverage-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    /* Shift focus to the map on the right */
}

/* Gradient Overlay: Solid white on left, fading to transparent */
.coverage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(90deg, #FFFFFF 15%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0) 100%); */
    /* Smoother transition matching reference */
    z-index: 2;
}

.coverage-hero .container {
    position: relative;
    z-index: 3;
}

.coverage-content {
    max-width: 650px;
    /*padding-left: 20px;*/
    /* Slight offset */
}

.coverage-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.coverage-title {
    font-size: clamp(40px, 5vw, 50px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.coverage-desc p {
    font-size: 17px;
    line-height: 1.5;
    color: #060A17;
    font-weight: 700;
    max-width: 500px;
}

.coverage-desc .highlight-gold {
    color: var(--color-gold);
    font-weight: 800;
}

/* Responsive adjustments for Coverage Page */
@media (max-width: 768px) {
    .coverage-hero {
        min-height: 500px;
        align-items: center;
        /* Center vertically specifically for mobile if needed */
        margin-top: 0;
        /* Header is fixed but base styles might handle it */
        padding-top: 150px;
        /* Clear fixed header */
    }

    .coverage-hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgb(255 255 255 / 95%) 100%);
    }

    .coverage-content {
        text-align: center;
        margin: 0 auto;
        padding-left: 0;
    }

    .coverage-title {
        font-size: 36px;
    }
}

/* =============================================
   MOBILE RESPONSIVENESS FIXES
   ============================================= */
@media (max-width: 768px) {

    /* Fix Container Overflow */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100vw !important;
        /* overflow-x: hidden; - Removed to prevent scroll hijacking/nested scroll feel */
    }

    /* Prevent global horizontal scroll */
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    /* Fix Hero Section Spacing */
    .about-hero {
        padding: 80px 0 40px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 28px !important;
        word-wrap: break-word;
        /* Ensure long words dont overflow */
    }

    .hero-subtitle {
        font-size: 24px !important;
    }

    /* Fix Mission/Commodities Box Margins */
    .mission-box,
    .commodities-box {
        margin-left: 15px !important;
        margin-right: 15px !important;
        padding: 30px 20px !important;
        width: auto !important;
        /* Allow it to shrink */
    }

    /* Ensure Services List fits */
    .services-list-content {
        padding: 0 15px;
    }

    /* Commodities Grid Stacking */
    .commodities-grid {
        display: block;
        /* Stack vertically */
    }

    .commodity-column {
        padding: 0 !important;
        border-left: none !important;
        /* border-bottom: 2px dotted rgba(255, 255, 255, 0.4); */
        /* Separator between stacked items */
        margin-bottom: 20px;
    }

    .commodity-column:last-child {
        border-bottom: none;
    }
}