/* ============= BASE ============= */

:root {
    /* Enterprise Color Palette */
    --midnight-navy: #0A1A2F;
    --royal-blue: #005B99;
    --ocean-blue: #0077C8;
    --teal-green: #009B7C;
    --soft-cyan: #4DC7E3;
    --charcoal-text: #3A444C;
    --muted-grey: #6E7B85;
    --border-grey: #DDE3E8;
    --light-bg: #F4F7F9;
    --white: #FFFFFF;
    
    /* Semantic Color Mappings */
    --primary-blue: var(--royal-blue);
    --primary-green: var(--teal-green);
    --primary-navy: var(--midnight-navy);
    
    /* Background Colors */
    --light-blue-bg: #EBF5FB;
    --soft-green-bg: #E8F6F3;
    --light-teal: var(--soft-cyan);
    --gradient-start: var(--royal-blue);
    --gradient-end: var(--teal-green);
    
    /* Text Color System */
    --heading-primary: var(--midnight-navy);
    --heading-secondary: var(--charcoal-text);
    --paragraph-text: var(--charcoal-text);
    --dark-text: var(--midnight-navy);
    --body-text: var(--charcoal-text);
    --muted-text: var(--muted-grey);
    --light-paragraph: var(--muted-grey);
    --footer-text: rgba(255,255,255,0.92);
    --light-grey-bg: var(--light-bg);
    
    /* Button Colors */
    --btn-primary-bg: var(--royal-blue);
    --btn-primary-text: var(--white);
    --btn-success-bg: var(--teal-green);
    --btn-success-text: var(--white);
    --btn-outline-text: var(--royal-blue);
    --btn-outline-border: var(--royal-blue);
    
    /* Interactive States */
    --link-color: var(--royal-blue);
    --link-hover: var(--ocean-blue);
    --hover-accent: var(--soft-cyan);
    
    /* Enterprise Typography */
    --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Enterprise Scale */
    --fs-hero: 54px;
    --fs-section-title: 34px;
    --fs-card-title: 21px;
    --fs-body: 18px;
    --fs-small: 16px;
    --fs-light: 16px;
    --fs-nav: 16px;
    --fs-button: 16px;
    --fs-label: 14px;
    --fs-caption: 14px;
    
    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Shadows - Enterprise Depth */
    --shadow-sm: 0 2px 4px rgba(10,26,47,0.04), 0 1px 2px rgba(10,26,47,0.06);
    --shadow-md: 0 4px 6px rgba(10,26,47,0.05), 0 10px 20px rgba(10,26,47,0.08);
    --shadow-lg: 0 10px 25px rgba(10,26,47,0.08), 0 20px 48px rgba(10,26,47,0.1);
    --shadow-xl: 0 25px 50px rgba(10,26,47,0.12), 0 12px 24px rgba(10,26,47,0.08);
    --shadow-glow: 0 0 40px rgba(0,91,153,0.15);
    --shadow-card: 0 4px 20px rgba(10,26,47,0.06), 0 1px 3px rgba(10,26,47,0.08);
    --shadow-card-hover: 0 12px 40px rgba(10,26,47,0.12), 0 4px 12px rgba(10,26,47,0.08);
    
    /* Premium Shadows */
    --shadow-premium: 0 10px 30px rgba(0,0,0,0.07);
    --shadow-premium-hover: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-glow-blue: 0 0 30px rgba(0, 119, 200, 0.25);
    --shadow-glow-teal: 0 0 30px rgba(0, 155, 124, 0.25);
    
    /* Premium Border Radius */
    --radius-premium: 22px;
    --radius-card: 18px;
}

/* ============= 3-LAYER PARALLAX BACKGROUND SYSTEM ============= */

/* Global Parallax Container - Fixed to viewport */
.parallax-bg-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    will-change: contents;
}

/* Individual Parallax Layers */
.parallax-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===== LAYER 1: SOFT BLOB SVGs (speed: 0.15) ===== */
.parallax-layer-blobs {
    z-index: 1;
}

.parallax-blob {
    position: absolute;
    opacity: 0;
    animation: fadeInBlob 2s ease forwards;
    will-change: transform;
    filter: blur(0.5px);
}

.parallax-blob.blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
    animation-delay: 0.2s;
    animation: fadeInBlob 2s ease 0.2s forwards, floatBlob1 20s ease-in-out infinite 2.2s;
}

.parallax-blob.blob-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    left: -8%;
    animation-delay: 0.5s;
    animation: fadeInBlob 2s ease 0.5s forwards, floatBlob2 25s ease-in-out infinite 2.5s;
}

.parallax-blob.blob-3 {
    width: 550px;
    height: 550px;
    bottom: 5%;
    right: 10%;
    animation-delay: 0.8s;
    animation: fadeInBlob 2s ease 0.8s forwards, floatBlob3 22s ease-in-out infinite 2.8s;
}

/* Floating animations for blobs */
@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, -35px) rotate(-3deg); }
    75% { transform: translate(20px, -15px) rotate(4deg); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 25px) rotate(-5deg); }
    66% { transform: translate(15px, 30px) rotate(3deg); }
}

@keyframes floatBlob3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(25px, 15px) rotate(3deg); }
    50% { transform: translate(-15px, 25px) rotate(-4deg); }
    75% { transform: translate(10px, -10px) rotate(2deg); }
}

@keyframes fadeInBlob {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== LAYER 2: DOTTED/GRID PATTERN (speed: -0.1) ===== */
.parallax-layer-grid {
    z-index: 2;
}

.grid-pattern {
    position: absolute;
    opacity: 0.18;
    animation: fadeInPattern 2.5s ease forwards;
}

.grid-pattern-1 {
    top: 5%;
    right: 10%;
    width: 250px;
    height: 250px;
    background-image: 
        linear-gradient(rgba(0,91,153,0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,91,153,0.25) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: rotate(15deg);
    animation-delay: 0.3s;
}

.grid-pattern-2 {
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: 
        linear-gradient(rgba(0,155,124,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,155,124,0.2) 1px, transparent 1px);
    background-size: 15px 15px;
    transform: rotate(-10deg);
    animation-delay: 0.6s;
}

.dot-pattern {
    position: absolute;
    opacity: 0.22;
    animation: fadeInPattern 2.5s ease forwards;
}

.dot-pattern-1 {
    top: 30%;
    left: 15%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(0,119,200,0.4) 2px, transparent 2px);
    background-size: 18px 18px;
    animation-delay: 0.4s;
}

.dot-pattern-2 {
    bottom: 35%;
    right: 8%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(77,199,227,0.35) 2px, transparent 2px);
    background-size: 15px 15px;
    animation-delay: 0.7s;
}

@keyframes fadeInPattern {
    from { opacity: 0; }
    to { opacity: 0.18; }
}

/* ===== LAYER 3: ABSTRACT DECORATIVE SHAPES (speed: 0.1) ===== */
.parallax-layer-shapes {
    z-index: 3;
}

.abstract-shape {
    position: absolute;
    opacity: 0;
    animation: fadeInShape 1.5s ease forwards;
}

/* Circle shapes */
.shape-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,119,200,0.15), rgba(0,155,124,0.1));
}

.shape-circle.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0.2s;
}

.shape-circle.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 20%;
    background: linear-gradient(135deg, rgba(77,199,227,0.18), rgba(0,91,153,0.12));
    animation-delay: 0.5s;
}

/* Ring shapes */
.shape-ring {
    border-radius: 50%;
    border: 2px solid rgba(0,119,200,0.15);
    background: transparent;
}

.shape-ring.shape-3 {
    width: 140px;
    height: 140px;
    top: 50%;
    right: 12%;
    border-color: rgba(0,155,124,0.12);
    animation-delay: 0.3s;
}

.shape-ring.shape-4 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 20%;
    animation-delay: 0.6s;
}

/* Square/diamond shapes */
.shape-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0,91,153,0.12), rgba(77,199,227,0.08));
    transform: rotate(45deg);
}

.shape-square.shape-5 {
    top: 25%;
    right: 25%;
    animation-delay: 0.4s;
}

/* Line shapes */
.shape-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,119,200,0.2), transparent);
}

.shape-line.shape-6 {
    width: 120px;
    top: 35%;
    left: 5%;
    transform: rotate(-25deg);
    animation-delay: 0.35s;
}

.shape-line.shape-7 {
    width: 80px;
    bottom: 40%;
    right: 5%;
    transform: rotate(20deg);
    animation-delay: 0.55s;
}

/* Cross/plus shapes */
.shape-cross {
    position: absolute;
    opacity: 0.2;
}

.shape-cross::before,
.shape-cross::after {
    content: '';
    position: absolute;
    background: rgba(0,155,124,0.25);
}

.shape-cross::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape-cross::after {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape-cross.shape-8 {
    top: 45%;
    left: 25%;
    animation-delay: 0.45s;
}

.shape-cross.shape-9 {
    bottom: 15%;
    right: 30%;
    animation-delay: 0.65s;
}

.shape-cross.shape-8::before,
.shape-cross.shape-8::after {
    background: rgba(0,119,200,0.2);
}

@keyframes fadeInShape {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.shape-square.shape-5 {
    animation: fadeInShape 1.5s ease 0.4s forwards;
}

/* ============= REDUCED MOTION & MOBILE PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    .parallax-bg-container {
        display: none;
    }
}

/* Disable on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg-container {
        display: none;
    }
}

/* Low power mode detection - hide complex animations */
@media (hover: none) and (pointer: coarse) {
    .parallax-layer-blobs .parallax-blob {
        animation: fadeInBlob 2s ease forwards !important;
    }
}


/* ============= LEGACY ANIMATED BACKGROUND ELEMENTS (for sections) ============= */

/* Base container for animated background elements */
.hero-bg-elements,
.section-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-elements {
    z-index: 1;
}

/* ===== HERO BLOBS ===== */
.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0;
    animation: fadeInBlob 1.5s ease forwards;
    will-change: transform;
}

.hero-blob-top {
    top: -150px;
    right: -100px;
    animation-delay: 0.3s;
}

.hero-blob-bottom {
    bottom: -200px;
    left: -150px;
    animation-delay: 0.6s;
}

/* ===== HERO FLOATING CIRCLES ===== */
.hero-float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: fadeInFloat 1s ease forwards;
}

.hero-float-circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(77,199,227,0.15) 0%, transparent 70%);
    animation-delay: 0.5s;
}

.hero-float-circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, rgba(0,155,124,0.12) 0%, transparent 70%);
    animation-delay: 0.7s;
}

.hero-float-circle-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(0,119,200,0.1) 0%, transparent 70%);
    animation-delay: 0.9s;
}

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

/* ===== HERO GRID PATTERN ===== */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
    animation: fadeInGrid 2s ease 0.5s forwards;
}

@keyframes fadeInGrid {
    to { opacity: 1; }
}

/* ===== FLOATING ANIMATION CLASSES ===== */
.float-element {
    will-change: transform;
}

.float-element[data-float-speed="slow"] {
    animation: floatSlow 8s ease-in-out infinite;
}

.float-element[data-float-speed="medium"] {
    animation: floatMedium 6s ease-in-out infinite;
}

.float-element[data-float-speed="fast"] {
    animation: floatFast 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@keyframes floatMedium {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes floatFast {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(2deg);
    }
}

/* ===== PARALLAX ELEMENT BASE ===== */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===== SECTION GRID PATTERN ===== */
.section-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(0,119,200,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* ===== SECTION ABSTRACT CIRCLES ===== */
.section-abstract-circle {
    position: absolute;
    opacity: 0;
    animation: fadeInCircle 1s ease forwards;
}

.section-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0.2s;
}

.section-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 3%;
    animation-delay: 0.4s;
}

@keyframes fadeInCircle {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== DOTS CLUSTER ===== */
.dots-cluster {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 6px;
}

.dots-cluster span {
    width: 4px;
    height: 4px;
    background: rgba(0,119,200,0.15);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dots-cluster span:nth-child(2) { animation-delay: 0.2s; }
.dots-cluster span:nth-child(3) { animation-delay: 0.4s; }
.dots-cluster span:nth-child(4) { animation-delay: 0.6s; }
.dots-cluster span:nth-child(5) { animation-delay: 0.8s; }

.dots-cluster-1 {
    top: 30%;
    left: 8%;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

/* ===== SERVICES SECTION ELEMENTS ===== */
.section-blob {
    position: absolute;
    opacity: 0;
    animation: fadeInBlob 1.5s ease forwards;
}

.section-blob-services {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    animation-delay: 0.3s;
}

.services-ellipse {
    animation: ellipseMorph 20s ease-in-out infinite;
    transform-origin: center;
}

@keyframes ellipseMorph {
    0%, 100% { rx: 280; ry: 250; }
    50% { rx: 250; ry: 280; }
}

/* ===== PARALLAX ICONS ===== */
.parallax-icon {
    position: absolute;
    opacity: 0;
    animation: fadeInIcon 1s ease forwards;
}

.parallax-icon svg {
    width: 100%;
    height: 100%;
}

.parallax-icon-truck {
    width: 100px;
    height: 60px;
    top: 15%;
    left: 5%;
    animation-delay: 0.5s;
}

.parallax-icon-box {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 8%;
    animation-delay: 0.7s;
}

.parallax-icon-globe {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 3%;
    animation-delay: 0.9s;
}

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

/* ===== ABSTRACT LINES ===== */
.abstract-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,119,200,0.1), transparent);
    opacity: 0;
    animation: lineExpand 1.5s ease forwards;
}

.abstract-line-1 {
    width: 200px;
    top: 25%;
    left: 0;
    animation-delay: 0.3s;
}

.abstract-line-2 {
    width: 150px;
    bottom: 30%;
    right: 0;
    animation-delay: 0.6s;
}

@keyframes lineExpand {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* ===== QUOTE SECTION ELEMENTS ===== */
.quote-floating-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeInBlob 1.5s ease 0.3s forwards;
}

.quote-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,119,200,0.1);
    opacity: 0;
    animation: fadeInRing 1s ease forwards;
}

.quote-ring-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0.4s;
}

.quote-ring-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    border-style: dashed;
    animation-delay: 0.6s;
}

@keyframes fadeInRing {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.quote-dots {
    position: absolute;
    bottom: 25%;
    right: 5%;
    display: flex;
    gap: 8px;
}

.quote-dots span {
    width: 6px;
    height: 6px;
    background: rgba(0,155,124,0.2);
    border-radius: 50%;
    animation: dotFloat 3s ease-in-out infinite;
}

.quote-dots span:nth-child(2) { animation-delay: 0.3s; }
.quote-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== HOW WE WORK SECTION ELEMENTS ===== */
.how-line-design {
    position: absolute;
    width: 100%;
    height: 200px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.how-animated-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: lineDrawIn 3s ease forwards;
}

.how-animated-line-2 {
    animation-delay: 0.5s;
}

@keyframes lineDrawIn {
    to {
        stroke-dashoffset: 0;
    }
}

.how-connection-dots {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-around;
    padding: 0 15%;
}

.connection-dot {
    width: 12px;
    height: 12px;
    background: rgba(0,119,200,0.15);
    border-radius: 50%;
    opacity: 0;
    animation: connectionDotAppear 0.5s ease forwards;
}

.connection-dot-1 { animation-delay: 0.8s; }
.connection-dot-2 { animation-delay: 1s; }
.connection-dot-3 { animation-delay: 1.2s; }
.connection-dot-4 { animation-delay: 1.4s; }

@keyframes connectionDotAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.how-float-element {
    position: absolute;
    border-radius: 50%;
}

.how-float-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 5%;
    background: radial-gradient(circle, rgba(77,199,227,0.08) 0%, transparent 70%);
}

.how-float-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 3%;
    background: radial-gradient(circle, rgba(0,155,124,0.06) 0%, transparent 70%);
}

/* ===== SCROLL-TRIGGERED ANIMATION STATES ===== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Background shapes slide animation */
.bg-shape-slide {
    transition: transform 0.3s ease-out;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .float-element,
    .parallax-element,
    .hero-blob,
    .section-blob,
    .dots-cluster span,
    .quote-dots span,
    .how-animated-line,
    .connection-dot {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .scroll-fade-in,
    .scroll-slide-left,
    .scroll-slide-right,
    .scroll-scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Disable heavy animations on mobile for better performance */
@media (max-width: 768px) {
    .hero-blob,
    .section-blob,
    .parallax-icon,
    .hero-grid-pattern,
    .section-grid-pattern {
        display: none;
    }
    
    .float-element {
        animation-duration: 12s;
    }
}

/* ============= DECORATIVE BACKGROUND STICKERS ============= */

/* Base decoration container - stays behind main content */
.section-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* World routes background - ensure it's behind everything */
.bg-world-routes {
    z-index: 0 !important;
}

/* Ensure container content is above decorations */
.section .container {
    position: relative;
    z-index: 2;
}

/* Circle decorations */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.decor-circle-blue {
    background: radial-gradient(circle, rgba(0, 119, 200, 0.08) 0%, transparent 70%);
}

.decor-circle-cyan {
    background: radial-gradient(circle, rgba(77, 199, 227, 0.1) 0%, transparent 70%);
}

.decor-circle-teal {
    background: radial-gradient(circle, rgba(0, 155, 124, 0.08) 0%, transparent 70%);
}

.decor-circle-navy {
    background: radial-gradient(circle, rgba(0, 91, 153, 0.06) 0%, transparent 70%);
}

/* Ring decorations */
.decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    z-index: 0;
}

.decor-ring-blue {
    border-color: rgba(0, 119, 200, 0.08);
}

.decor-ring-cyan {
    border-color: rgba(77, 199, 227, 0.12);
}

.decor-ring-grey {
    border-color: rgba(221, 227, 232, 0.5);
}

/* Dotted pattern decorations */
.decor-dots {
    position: absolute;
    z-index: 0;
}

.decor-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 119, 200, 0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

.decor-dots-teal::before {
    background-image: radial-gradient(rgba(0, 155, 124, 0.1) 1.5px, transparent 1.5px);
}

.decor-dots-grey::before {
    background-image: radial-gradient(rgba(221, 227, 232, 0.6) 1.5px, transparent 1.5px);
}

/* Gradient blob decorations */
.decor-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    z-index: 0;
}

.decor-blob-blue {
    background: linear-gradient(135deg, rgba(0, 119, 200, 0.1) 0%, rgba(0, 91, 153, 0.05) 100%);
}

.decor-blob-cyan {
    background: linear-gradient(135deg, rgba(77, 199, 227, 0.12) 0%, rgba(0, 119, 200, 0.06) 100%);
}

.decor-blob-teal {
    background: linear-gradient(135deg, rgba(0, 155, 124, 0.1) 0%, rgba(77, 199, 227, 0.05) 100%);
}

/* Line decorations */
.decor-line {
    position: absolute;
    z-index: 0;
}

.decor-line-h {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 119, 200, 0.1) 50%, transparent 100%);
}

.decor-line-v {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 119, 200, 0.1) 50%, transparent 100%);
}

/* Cross/Plus decorations */
.decor-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 0;
}

.decor-cross::before,
.decor-cross::after {
    content: '';
    position: absolute;
    background: rgba(0, 119, 200, 0.12);
}

.decor-cross::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.decor-cross::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Square decorations */
.decor-square {
    position: absolute;
    border: 2px solid rgba(0, 119, 200, 0.08);
    z-index: 0;
}

.decor-square-filled {
    background: rgba(0, 119, 200, 0.04);
    border: none;
}

/* Triangle decorations */
.decor-triangle {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 0;
}

.decor-triangle-blue {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(0, 119, 200, 0.06);
}

/* Hexagon decorations */
.decor-hex {
    position: absolute;
    width: 60px;
    height: 35px;
    background: rgba(0, 119, 200, 0.05);
    z-index: 0;
}

.decor-hex::before,
.decor-hex::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.decor-hex::before {
    bottom: 100%;
    border-bottom: 17px solid rgba(0, 119, 200, 0.05);
}

.decor-hex::after {
    top: 100%;
    border-top: 17px solid rgba(0, 119, 200, 0.05);
}

/* ============= LOGISTICS-THEMED BACKGROUND DECORATIONS ============= */

/* Base silhouette animation styles */
.decor-truck,
.decor-package,
.decor-car,
.decor-globe,
.decor-plane,
.decor-location,
.decor-container,
.decor-checklist {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Floating animation keyframes for silhouettes */
@keyframes silhouetteFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1.5deg); }
}

@keyframes silhouetteFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes silhouetteFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes silhouetteFloat4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

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

/* Truck silhouette decoration */
.decor-truck {
    position: absolute;
    width: 140px;
    height: 88px;
    opacity: 0.14;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23005B99' d='M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm368-48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: silhouetteFloat1 7s ease-in-out infinite;
}

/* Package/Box decoration */
.decor-package {
    position: absolute;
    width: 90px;
    height: 90px;
    opacity: 0.15;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23005B99' d='M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: silhouetteFloat2 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Location pin decoration */
.decor-location {
    position: absolute;
    width: 40px;
    height: 50px;
    opacity: 0.05;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23009B7C' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Route path decoration (dashed line) */
.decor-route {
    position: absolute;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(0, 119, 200, 0.08) 0px, rgba(0, 119, 200, 0.08) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.decor-route-curved {
    position: absolute;
    width: 200px;
    height: 100px;
    border: 2px dashed rgba(0, 119, 200, 0.06);
    border-radius: 0 100px 100px 0;
    border-left: 0;
    z-index: 0;
}

/* Car silhouette decoration */
.decor-car {
    position: absolute;
    width: 110px;
    height: 55px;
    opacity: 0.1;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23005B99' d='M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: silhouetteFloat3 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* Globe/World decoration */
.decor-globe {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.1;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23009B7C' d='M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.6 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.4 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: silhouetteFloat4 11s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Shipping container decoration */
.decor-container {
    position: absolute;
    width: 70px;
    height: 40px;
    opacity: 0.04;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='%23005B99' d='M58.9 42.1c3-6.1 9.6-9.6 16.3-8.7L320 64 564.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L320 240 36.9 170.6c-19.3-5.5-28.8-27.2-19.8-45.1L58.9 42.1zM321.1 288L573.6 228c36.7-10.5 59.4-48.2 52-85.5l294.6 56.2c36.6 7 64.1 38.1 64.1 75.4V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V273.1c0-37.3 27.6-68.4 64.1-75.4l296.6-56.2V288l-41.6 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Checklist/Clipboard decoration */
.decor-checklist {
    position: absolute;
    width: 45px;
    height: 55px;
    opacity: 0.04;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23009B7C' d='M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Section background patterns with logistics elements */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

/* Silhouette animation control for reduced motion and mobile */
@media (prefers-reduced-motion: reduce) {
    .decor-truck,
    .decor-package,
    .decor-car,
    .decor-globe,
    .decor-plane,
    .decor-location,
    .decor-container,
    .decor-checklist {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    /* Hide all decorations on mobile for cleaner look */
    .section-decorations,
    .hero-decor,
    .hero-pattern {
        display: none !important;
    }
    
    .decor-truck,
    .decor-package,
    .decor-car,
    .decor-globe,
    .decor-plane,
    .decor-location,
    .decor-container,
    .decor-checklist,
    .decor-flight-path,
    .decor-arc,
    .decor-marker,
    .decor-dotted-line-v,
    .decor-dotted-line-h,
    .decor-scatter-dots,
    .decor-arrow,
    .decor-dots,
    .decor-swoosh,
    .decor-route,
    .decor-route-curved,
    .bg-world-routes {
        display: none !important;
    }
}

/* ============= TRAVEL/ROUTE STYLE DECORATIONS (Like Reference) ============= */

/* Curved flight/route path - like the reference image */
.decor-flight-path {
    position: absolute;
    width: 300px;
    height: 150px;
    z-index: 0;
    pointer-events: none;
}

.decor-flight-path::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(0, 119, 200, 0.08);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
}

/* Airplane on route */
.decor-plane {
    position: absolute;
    width: 70px;
    height: 70px;
    opacity: 0.12;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23005B99' d='M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: silhouetteFloat5 8s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Dotted connection line - vertical */
.decor-dotted-line-v {
    position: absolute;
    width: 2px;
    background-image: radial-gradient(circle, rgba(0, 119, 200, 0.15) 1px, transparent 1px);
    background-size: 2px 8px;
    z-index: 0;
}

/* Dotted connection line - horizontal */
.decor-dotted-line-h {
    position: absolute;
    height: 2px;
    background-image: radial-gradient(circle, rgba(0, 119, 200, 0.15) 1px, transparent 1px);
    background-size: 8px 2px;
    z-index: 0;
}

/* Location marker with pulse effect */
.decor-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(0, 119, 200, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.decor-marker::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0, 119, 200, 0.08);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.decor-marker-teal {
    background: rgba(0, 155, 124, 0.15);
}

.decor-marker-teal::before {
    border-color: rgba(0, 155, 124, 0.08);
}

/* Curved swoosh line - like the orange curve in reference */
.decor-swoosh {
    position: absolute;
    width: 400px;
    height: 200px;
    z-index: 0;
    overflow: visible;
}

.decor-swoosh::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: rgba(0, 119, 200, 0.06);
    border-radius: 50%;
    transform: rotate(-20deg);
}

/* Large decorative arc */
.decor-arc {
    position: absolute;
    border: 2px solid rgba(0, 119, 200, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.decor-arc-dashed {
    border-style: dashed;
    border-color: rgba(0, 119, 200, 0.06);
}

/* Scattered small dots pattern */
.decor-scatter-dots {
    position: absolute;
    z-index: 0;
}

.decor-scatter-dots::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 119, 200, 0.1);
    border-radius: 50%;
}

.decor-scatter-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 155, 124, 0.1);
    border-radius: 50%;
    top: 20px;
    left: 15px;
}

/* World map outline background - subtle */
.bg-world-routes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-world-routes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: 
        /* Curved route lines */
        radial-gradient(ellipse 600px 300px at 20% 30%, transparent 98%, rgba(0, 119, 200, 0.04) 98.5%, transparent 99%),
        radial-gradient(ellipse 500px 250px at 70% 60%, transparent 98%, rgba(0, 155, 124, 0.04) 98.5%, transparent 99%),
        radial-gradient(ellipse 400px 200px at 40% 80%, transparent 98%, rgba(77, 199, 227, 0.03) 98.5%, transparent 99%),
        /* Location dots */
        radial-gradient(circle at 15% 25%, rgba(0, 119, 200, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 25% 35%, rgba(0, 155, 124, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 75% 55%, rgba(0, 119, 200, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 85% 45%, rgba(77, 199, 227, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 45% 75%, rgba(0, 155, 124, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 60% 20%, rgba(0, 119, 200, 0.06) 2px, transparent 2px);
    opacity: 1;
}

/* Connection lines between points */
.decor-connection {
    position: absolute;
    z-index: 0;
    overflow: visible;
}

.decor-connection::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    border: 2px dashed rgba(0, 119, 200, 0.06);
    border-radius: 0 50% 50% 0;
    border-left: none;
    transform-origin: left center;
}

/* Small floating icons cluster */
.decor-icon-cluster {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 0;
    pointer-events: none;
}

/* Arrow indicator */
.decor-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.08;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23005B99' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
}

/* ============= PREMIUM ANIMATIONS ============= */

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating circles with animation */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 119, 200, 0.08) 0%, transparent 70%);
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 155, 124, 0.06) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite;
    animation-delay: -3s;
}

.floating-circle-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(77, 199, 227, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    animation-delay: -5s;
}

/* Animated gradient blobs */
.animated-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

/* Section wave separators */
.wave-separator {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.wave-separator-top {
    top: 0;
}

.wave-separator-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Diagonal section backgrounds */
.diagonal-bg {
    position: relative;
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(175deg, var(--light-bg) 0%, var(--light-bg) 50%, var(--white) 50%);
    z-index: -1;
}

/* Premium dotted grid pattern overlay */
.dotted-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 119, 200, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Scroll reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    color: var(--charcoal-text);
    background-color: var(--white);
    line-height: 1.75;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--midnight-navy);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.025em;
}

h1 {
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    line-height: 1.1;
}

h2 {
    font-size: var(--fs-section-title);
    font-weight: var(--fw-bold);
}

h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
}

p {
    line-height: 1.7;
    margin: 0 0 1em;
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover);
}

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

.container {
    width: min(1400px, 100% - 60px);
    margin-inline: auto;
}

/* Typography Utilities */
.text-caption {
    font-size: var(--fs-caption);
    color: var(--muted-text);
    font-weight: var(--fw-regular);
}

.text-small {
    font-size: var(--fs-small);
    color: var(--muted-text);
}

.text-muted {
    color: var(--muted-text);
}

.text-light {
    font-size: var(--fs-light);
    color: var(--muted-text);
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    font-size: var(--fs-button);
    font-weight: var(--fw-semibold);
    font-family: var(--font-body);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,91,153,0.35);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--soft-cyan) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,91,153,0.45), 0 0 30px rgba(0, 119, 200, 0.2);
    color: var(--white);
}

.btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(0,91,153,0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--teal-green) 0%, #00B88A 100%);
    box-shadow: 0 4px 15px rgba(0,155,124,0.35);
}

.btn-success:hover {
    background: linear-gradient(135deg, #00B88A 0%, #00D4A0 100%);
    box-shadow: 0 8px 25px rgba(0,155,124,0.45), 0 0 30px rgba(0, 155, 124, 0.2);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--royal-blue);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Dark background outline variant */
.why .btn-outline,
.services .btn-outline,
.quote-section .btn-outline {
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.why .btn-outline:hover,
.services .btn-outline:hover,
.quote-section .btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-small {
    padding: 10px 22px;
    font-size: var(--fs-label);
}

/* Sections */

.section {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: var(--fs-section-title);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
    color: var(--midnight-navy);
    letter-spacing: -0.03em;
}

.section-title.small {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    font-size: var(--fs-subtitle);
    color: white;
    max-width: 680px;
    background-color: #3A444C;
    border-radius: 10px;
    padding: 7px 14px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* ============= HEADER ============= */

.site-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(10,26,47,0.05), 0 4px 20px rgba(10,26,47,0.04);
    border-bottom: 1px solid rgba(221,227,232,0.8);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 48px;
}

.main-nav {
    display: flex;
    gap: 32px;
    font-size: var(--fs-nav);
}

.main-nav a {
    position: relative;
    font-weight: var(--fw-medium);
    color: var(--charcoal-text);
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--royal-blue);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--royal-blue);
    transition: width 0.2s ease;
}

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

/* Header button - Get Quote */
.site-header .btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
    box-shadow: none;
}

.site-header .btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,91,153,0.3);
}

/* ============= HERO ============= */

.hero {
    position: relative;
    height: 650px;
    margin-top: 118px; /* top info bar (38px) + header (80px) */
    overflow: hidden;
}

/* Hero Slider Container */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease, transform 8s ease-out;
}

/* Premium Dark/Black Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 26, 47, 0.7) 50%, rgba(20, 30, 40, 0.65) 100%);
    z-index: 2;
}

/* Hero illustrated pattern overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(77, 199, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 155, 124, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 119, 200, 0.08) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Hero floating decorative elements */
.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-decor::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}

.hero-decor::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(77, 199, 227, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    padding-bottom: 120px;
    color: var(--white);
}

.hero-tagline {
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    margin-bottom: var(--space-md);
    opacity: 0.9;
    letter-spacing: 0;
    max-width: 650px;
    line-height: 1.65;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero h1 {
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--space-lg);
    max-width: 100%;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 span {
    display: inline-block;
    padding-bottom: 0.1em;
    background: linear-gradient(90deg, #4DC7E3, #00E5A0, #4DC7E3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 1s ease 0.5s both;
    text-shadow: 0 0 40px rgba(77, 199, 227, 0.4);
    filter: drop-shadow(0 0 20px rgba(0, 229, 160, 0.3));
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.7s both;
}

/* =============== TOP INFO BAR (Above Navbar) =============== */
.top-info-bar {
    background: var(--midnight-navy);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.info-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-bar-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    font-weight: var(--fw-medium);
}

.info-bar-icon {
    font-size: 14px;
}

.info-bar-legal {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

/* ============= WHY CHOOSE US ============= */

.why {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    --parallax-y: 0px;
}

/* India map background like How We Work */
.why::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y)));
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230077C8' fill-opacity='0.06' d='M50 5 L75 20 L80 45 L70 70 L55 85 L40 80 L25 65 L20 40 L30 20 Z M45 25 L55 25 L60 35 L55 50 L45 50 L40 35 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* World map dots pattern */
.why::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateY(var(--parallax-y));
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 30% 40%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 50% 30%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 70% 50%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 90% 35%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 20% 70%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 60% 80%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 80% 75%, rgba(0, 119, 200, 0.03) 2px, transparent 2px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.why .container {
    position: relative;
    z-index: 1;
}

.why .three-cards {
    position: relative;
    z-index: 1;
}

.why .section-title,
.why .section-subtitle {
    position: relative;
    z-index: 1;
}

.three-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-card {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-premium);
    border: 1px solid rgba(221,227,232,0.4);
    box-shadow: var(--shadow-premium);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Premium card gradient border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--ocean-blue), var(--teal-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    box-shadow: var(--shadow-premium-hover);
    transform: translateY(-10px);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,91,153,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,91,153,0.35);
}

.feature-icon img {
    width: 44px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 44px;
    height: 44px;
}

.feature-icon svg path {
    fill: #fff;
}

.feature-card h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    color: var(--midnight-navy);
}

.feature-card p {
    font-size: var(--fs-small);
    color: var(--muted-grey);
    line-height: 1.7;
    margin: 0;
}

.center-btn {
    margin-top: 30px;
}

/* ============= SERVICES ============= */

.services {
    background: var(--white);
    position: relative;
    overflow: hidden;
    --parallax-y: 0px;
}

/* Services background image */
.services-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../img/truck01.png');
    background-size: contain;
    background-position: center;
    /* background-repeat: no-repeat; */
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

/* India map background like How We Work */
.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y)));
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230077C8' fill-opacity='0.06' d='M50 5 L75 20 L80 45 L70 70 L55 85 L40 80 L25 65 L20 40 L30 20 Z M45 25 L55 25 L60 35 L55 50 L45 50 L40 35 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Services background patterns */
.services-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

/* Services dotted pattern */
.services .services-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 50px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(0, 119, 200, 0.1) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 0;
    pointer-events: none;
}

/* Services ring decoration */
.services .services-wrapper::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 155, 124, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.section-subtitle .highlight {
    color: #0070BD;
    font-weight: inherit;
}

.services-wrapper {
    position: relative;
    margin-top: 60px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.service-card-new {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-premium);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border: 1px solid rgba(221,227,232,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--royal-blue), var(--ocean-blue));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium-hover);
    border-color: transparent;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new.green-card::before {
    background: linear-gradient(180deg, var(--royal-blue), var(--ocean-blue));
}

.service-card-new .service-content {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-new .service-content h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
    margin: 0 0 var(--space-sm) 0;
    color: var(--midnight-navy);
    background: none;
    display: block;
    padding: 0;
    border-radius: 0;
    letter-spacing: -0.02em;
    box-shadow: none;
    transition: color 0.2s ease;
}

.service-card-new:hover .service-content h3 {
    color: var(--royal-blue);
    transform: none;
    box-shadow: none;
}

.service-card-new.green-card .service-content h3 {
    background: none;
    box-shadow: none;
}

.service-card-new.green-card:hover .service-content h3 {
    color: var(--royal-blue);
    box-shadow: none;
}

.service-card-new .service-content p {
    font-size: var(--fs-small);
    color: var(--muted-grey);
    line-height: 1.7;
    margin: 0;
}

.service-icon-box {
    width: 140px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    display: none;
}

.service-card-new:hover .service-icon-box::before {
    display: none;
}

.service-icon-box.blue {
    background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

.service-icon-box.green {
    background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

.service-icon-box img {
    width: 75px;
    height: 75px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.service-icon-box img.bold-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.service-card-new:hover .service-icon-box img {
    transform: scale(1.15) rotate(5deg);
    animation-play-state: paused;
}

.service-card-new:hover .service-icon-box img.bold-icon {
    transform: scale(1.2) rotate(5deg);
    animation-play-state: paused;
}

/* ============= QUOTE SECTION ============= */

.quote-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    --parallax-y: 0px;
}

/* India map background like How We Work */
.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y)));
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230077C8' fill-opacity='0.06' d='M50 5 L75 20 L80 45 L70 70 L55 85 L40 80 L25 65 L20 40 L30 20 Z M45 25 L55 25 L60 35 L55 50 L45 50 L40 35 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* World map dots pattern */
.quote-section::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateY(var(--parallax-y));
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 30% 40%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 50% 30%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 70% 50%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 90% 35%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 20% 70%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 60% 80%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 80% 75%, rgba(0, 119, 200, 0.03) 2px, transparent 2px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

/* Quote section corner decorations */
.quote-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-left: 3px solid rgba(0, 119, 200, 0.15);
    border-top: 3px solid rgba(0, 119, 200, 0.15);
    border-radius: var(--radius-card) 0 0 0;
    z-index: 0;
    pointer-events: none;
}

.quote-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-right: 3px solid rgba(0, 155, 124, 0.15);
    border-bottom: 3px solid rgba(0, 155, 124, 0.15);
    border-radius: 0 0 var(--radius-card) 0;
    z-index: 0;
    pointer-events: none;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--space-lg);
    align-items: center;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,247,249,0.9) 100%);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(221,227,232,0.4);
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius-premium);
    padding: var(--space-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(221,227,232,0.4);
}

.quote-form {
    font-size: var(--fs-body);
}

.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-grey);
    outline: none;
    color: var(--charcoal-text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--muted-grey);
}

.quote-form textarea {
    resize: vertical;
    margin-bottom: var(--space-sm);
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(0,91,153,0.12);
}

.form-btn {
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: var(--fs-button);
}

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

/* ============= HOW WE WORK ============= */

/* Process section with India map background */
.section.how {
    position: relative;
    overflow: hidden;
    --parallax-y: 0px;
}

.section.how::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + var(--parallax-y)));
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%230077C8' fill-opacity='0.06' d='M50 5 L75 20 L80 45 L70 70 L55 85 L40 80 L25 65 L20 40 L30 20 Z M45 25 L55 25 L60 35 L55 50 L45 50 L40 35 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* World map dots pattern */
.section.how::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateY(var(--parallax-y));
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 30% 40%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 50% 30%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 70% 50%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 90% 35%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 20% 70%, rgba(0, 119, 200, 0.03) 2px, transparent 2px),
                      radial-gradient(circle at 60% 80%, rgba(0, 119, 200, 0.04) 2px, transparent 2px),
                      radial-gradient(circle at 80% 75%, rgba(0, 119, 200, 0.03) 2px, transparent 2px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.section.how .container {
    position: relative;
    z-index: 1;
}

.how-steps {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,247,249,0.9) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(221,227,232,0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.how-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.how-card:hover {
    transform: translateY(-5px);
}

.how-card p {
    font-size: var(--fs-small);
    color: var(--muted-grey);
    line-height: 1.7;
    margin: 0;
}

.how-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--royal-blue), var(--ocean-blue));
    color: var(--white);
    font-weight: var(--fw-semibold);
    box-shadow: 0 8px 20px rgba(0,91,153,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-card:hover .how-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,91,153,0.4), 0 0 20px rgba(0, 119, 200, 0.2);
}

.how-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.how-card:hover .how-icon img {
    transform: scale(1.1);
}

.how-card h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--midnight-navy);
    letter-spacing: -0.02em;
}

/* ============= FOOTER ============= */

.site-footer {
    position: relative;
    margin-top: var(--space-xl);
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: hidden;
}

/* Footer - Decorative Elements */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 10%;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 119, 200, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(77, 199, 227, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: var(--midnight-navy);
    z-index: -1;
}

/* Footer top decorative line */
.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--ocean-blue) 50%, var(--teal-green) 100%);
    z-index: 1;
}

/* Footer dotted pattern decoration */
.footer-gradient::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 12px 12px;
    z-index: 0;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: var(--space-xl);
    align-items: flex-start;
    color: var(--footer-text);
}

.footer-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    max-width: 320px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 48px;
    margin-bottom: var(--space-sm);
}

.footer-text {
    font-size: var(--fs-small);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--soft-cyan);
    color: var(--midnight-navy);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-contact h4 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-contact p {
    font-size: var(--fs-small);
    margin: 0 0 var(--space-xs);
    color: var(--footer-text);
    line-height: 1.7;
    opacity: 0.85;
}

.footer-right h3 {
    font-size: var(--fs-card-title);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--space-md);
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-right p {
    font-size: var(--fs-small);
    opacity: 0.85;
}

/* Footer Locations Grid */
.footer-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.location-group h4 {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--soft-cyan);
    margin: 0 0 var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-group ul li {
    margin-bottom: 8px;
}

.location-group ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: var(--fs-caption);
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.location-group ul li a:hover {
    opacity: 1;
    color: var(--soft-cyan);
}

/* Footer Copyright Bar */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding: var(--space-md) 0;
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright p {
    font-size: var(--fs-caption);
    color: var(--footer-text);
    margin: 0;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* ============= MOBILE MENU HAMBURGER ============= */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
    background: none;
    border: none;
    padding: 0;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--midnight-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 47, 0.95);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

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

@media (max-width: 1200px) {
    .main-nav {
        gap: 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        z-index: 200;
    }
    
    .mobile-nav-overlay {
        display: block;
        pointer-events: none;
    }
    
    .mobile-nav-overlay.active {
        pointer-events: auto;
    }
    
    /* Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 0;
        z-index: 150;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border-grey);
        width: 100%;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .site-header .btn-outline {
        display: none;
    }
    
    /* Header z-index adjustment */
    .site-header {
        z-index: 100;
    }
    
    /* Top Info Bar */
    .top-info-bar {
        padding: 8px 0;
        z-index: 49;
    }
    
    .info-bar-wrapper {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .info-bar-contact {
        justify-content: center;
        gap: 15px;
    }
    
    .info-bar-legal {
        font-size: 10px;
    }
    
    /* Hero */
    .hero {
        height: 500px;
        margin-top: 140px;
    }
    
    .hero h1 {
        white-space: normal;
        font-size: 42px;
    }
    
    /* Services */
    .service-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-card {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-hero: 34px;
        --fs-section-title: 26px;
        --fs-card-title: 18px;
        --fs-body: 16px;
        --fs-light: 14px;
    }

    /* Top Info Bar Mobile */
    .info-bar-contact {
        flex-direction: column;
        gap: 6px;
    }
    
    .info-bar-item {
        font-size: 12px;
    }
    
    .info-bar-legal {
        display: none;
    }
    
    /* Header */
    .site-header {
        top: 60px;
        padding: 12px 0;
    }
    
    .logo img {
        height: 40px;
    }

    /* Hero */
    .hero {
        height: 450px;
        margin-top: 120px;
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
    }

    .hero-slider {
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: var(--fs-hero);
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Cards - Mobile Grid Layout */
    .three-cards {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "card1 card2"
            "card1 card3";
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px 14px;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
    }
    
    /* Card-1: Tall left card spanning two rows */
    .feature-card.card-1 {
        grid-area: card1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px 16px;
    }
    
    /* Card-2: Top-right card */
    .feature-card.card-2 {
        grid-area: card2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Card-3: Bottom-right card */
    .feature-card.card-3 {
        grid-area: card3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Right cards - compact sizing */
    .feature-card.card-2 .feature-icon,
    .feature-card.card-3 .feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
    }
    
    .feature-card.card-2 .feature-icon img,
    .feature-card.card-3 .feature-icon img,
    .feature-card.card-2 .feature-icon svg,
    .feature-card.card-3 .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card.card-2 .feature-icon .material-icons,
    .feature-card.card-3 .feature-icon .material-icons {
        font-size: 24px !important;
    }
    
    .feature-card.card-2 h3,
    .feature-card.card-3 h3 {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .feature-card.card-2 p,
    .feature-card.card-3 p {
        font-size: 10px;
        line-height: 1.35;
        margin: 0;
        color: var(--dark-slate);
    }
    
    /* Left tall card - larger styling */
    .feature-card.card-1 .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 14px;
    }
    
    .feature-card.card-1 .feature-icon .material-icons {
        font-size: 32px !important;
    }
    
    .feature-card.card-1 h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .feature-card.card-1 p {
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
    }
    
    /* Center button below grid */
    .why .center-btn {
        margin-top: 20px;
        text-align: center;
    }
    
    .why .center-btn .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .service-card-new {
        flex-direction: column;
    }

    .service-icon-box {
        width: 100%;
        min-height: 100px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-card {
        padding: 25px 20px;
    }

    /* Quote Section */
    .quote-wrapper {
        padding: 40px 25px;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    /* Form Styles for Tablet/Mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .quote-form input,
    .quote-form textarea {
        font-size: 16px;
        padding: 14px 16px;
        margin-bottom: 14px;
    }
    
    /* Footer */
    .footer-locations {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
        text-align: left;
    }
    
    .footer-right h3 {
        text-align: center;
    }
    
    .footer-right > p {
        text-align: center;
    }
    
    /* Section spacing */
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    :root {
        --fs-hero: 28px;
        --fs-section-title: 22px;
        --fs-card-title: 18px;
        --fs-body: 16px;
        --fs-light: 14px;
        --fs-nav: 14px;
        --fs-button: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Top Info Bar */
    .top-info-bar {
        padding: 6px 0;
    }
    
    .info-bar-contact {
        gap: 4px;
    }

    /* Hero */
    .hero {
        height: 380px;
        margin-top: 100px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .hero-slider {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .hero-actions .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon img {
        width: 36px;
    }
}

/*# sourceMappingURL=style.css.map */
