/* Premium Corporate Design System - New Professional Color Palette */

/* Essential Animations Only */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

:root {
    /* New Professional Color Palette */
    --midnight-blue: #0B1426; /* Deep, saturated dark blue for headers and text */
    --mint-green: #7BA05B; /* Soft medium green with blue undertone for accents */
    --light-gray: #E8EBF0; /* Very light neutral gray for backgrounds */
    --pale-gray: #F7F8FA; /* Extremely light, almost white with subtle gray hint */
    
    /* Legacy mappings for compatibility */
    --primary: var(--midnight-blue);
    --secondary: var(--mint-green);
    --cta: var(--mint-green);
    --highlight: var(--mint-green);
    --charcoal-gray: var(--midnight-blue);
    --charcoal-dark: var(--midnight-blue);
    --charcoal-light: var(--light-gray);
    --muted-orange: var(--mint-green);
    --muted-orange-light: var(--light-gray);
    --muted-orange-dark: var(--midnight-blue);
    
    /* Updated mappings */
    --primary-navy: var(--midnight-blue);
    --secondary-gray: var(--midnight-blue);
    --sage-green: var(--mint-green);
    --dusty-blue: var(--mint-green);
    --warm-gray: var(--light-gray);
    
    /* Core Colors */
    --primary-black: var(--midnight-blue);
    --secondary-black: var(--midnight-blue);
    --accent-black: var(--light-gray);
    --pure-white: #FFFFFF;
    --off-white: var(--pale-gray);
    --cream-white: var(--pale-gray);
    --cream: var(--pale-gray);
    
    /* Neutral Colors */
    --medium-gray: #6B7280;
    --border-gray: var(--light-gray);
    --white: var(--pure-white);
    
    /* Text Colors */
    --text-dark: var(--midnight-blue);
    --text-medium: #4B5563;
    --text-light: var(--medium-gray);
    
    /* Status Colors */
    --success: var(--mint-green);
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: var(--mint-green);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--midnight-blue) 0%, #1E293B 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 20, 38, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    --gradient-card: linear-gradient(145deg, var(--pure-white) 0%, var(--pale-gray) 100%);
    --gradient-green: linear-gradient(135deg, var(--pale-gray) 0%, var(--mint-green) 100%);
    --gradient-blue: linear-gradient(135deg, var(--pale-gray) 0%, var(--mint-green) 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, var(--midnight-blue) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(123, 160, 91, 0.2), transparent);
    
    /* Shadows - Updated for new color scheme */
    --shadow-sm: 0 1px 3px rgba(11, 20, 38, 0.1);
    --shadow-md: 0 2px 6px rgba(11, 20, 38, 0.15);
    --shadow-lg: 0 4px 12px rgba(11, 20, 38, 0.2);
    --shadow-xl: 0 8px 20px rgba(11, 20, 38, 0.25);
    --shadow-green: 0 4px 12px rgba(123, 160, 91, 0.3);
    --shadow-blue: 0 4px 12px rgba(123, 160, 91, 0.3);
    --shadow-gray: 0 4px 12px rgba(75, 85, 99, 0.3);
    --shadow-glow: 0 0 20px rgba(123, 160, 91, 0.4);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.25s ease-out;
    --transition-slow: 0.4s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--pale-gray);
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.01em;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.35;
    margin-bottom: var(--spacing-lg);
    color: var(--midnight-blue);
    letter-spacing: 0;
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.85;
    font-size: 1.125rem;
    font-weight: var(--font-weight-normal);
}

/* Improved text readability */
.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-xl);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-lg);
}

/* Container System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 3;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-xl);
}

/* Header Styles */
/* Header Adjustments */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all var(--transition-normal);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid rgba(123, 160, 91, 0.2);
}

.header .logo,
.header .nav-menu a,
.header .btn-light {
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--midnight-blue);
    transition: all var(--transition-normal);
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #f8f7f4;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Speedmail Business Center text slides in / expands on scroll */
.logo-text {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    overflow: hidden;
    transition: opacity var(--transition-normal), max-width var(--transition-normal), visibility var(--transition-normal);
}

.header.scrolled .logo-text {
    opacity: 1;
    visibility: visible;
    max-width: 350px;
}

.logo-text h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
    font-weight: var(--font-weight-extrabold);
    color: var(--pure-white);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-text .tagline {
    font-size: 0.85rem;
    font-weight: var(--font-weight-light);
    opacity: 0.9;
    font-family: var(--font-secondary);
    color: var(--light-gray);
    white-space: nowrap;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

/* Navigation - Desktop (Default) */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--midnight-blue); /* Dark blue by default at the top to be always visible */
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-normal);
}

.header.scrolled .nav-menu a {
    color: var(--pure-white); /* White when blue bar is scrolled/shown */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint-green);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--mint-green);
}

/* Mobile Navigation Toggle (Hamburger) - Hidden on Desktop */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pure-white);
    cursor: pointer;
    padding: var(--spacing-sm);
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

/* Hide header CTA globally in favor of menu links */
.header .btn-light {
    display: none !important;
}

.mobile-toggle:hover {
    background: rgba(123, 160, 91, 0.2);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--midnight-blue); /* Dark blue by default when top bar is transparent */
    transition: all var(--transition-normal);
    border-radius: 1px;
}

.header.scrolled .mobile-toggle span {
    background: var(--pure-white); /* White when blue bar is scrolled */
}

.mobile-toggle.active span {
    background: var(--pure-white) !important; /* White when mobile menu is active */
}

/* Hamburger icon morphs into X when active */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

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

/* Hero Section */
/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--light-gray);
    padding: 120px var(--spacing-xl) var(--spacing-3xl);
    text-align: center;
}

@media (min-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px var(--spacing-3xl) var(--spacing-3xl);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

/* Hero Background Bubbles */
.bubble-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none;
}

.bubble-cluster {
    position: absolute;
    pointer-events: none;
}

/* Left Bubble Cluster (Subtle balance behind title) */
.bubble-cluster-left {
    left: 2%;
    top: 15%;
    width: 250px;
    height: 250px;
    z-index: 1;
}

/* Right Bubble Cluster (Matches reference image) */
.bubble-cluster-right {
    right: 2%;
    bottom: 50px;
    width: 400px;
    height: 400px;
    z-index: 2;
}

/* Base Bubble Style */
.hero-bubble {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

/* Shared styles for circles */
.bubble-l1, .bubble-l3, .bubble-1, .bubble-3, .bubble-5, .bubble-6 {
    border-radius: 50%;
}
/* Striped SVG circles should be circular */
svg.hero-bubble {
    border-radius: 50%;
}

/* Shared Colors/Gradients & Slow Animations */
.bubble-l1 {
    background: linear-gradient(135deg, rgba(232, 235, 240, 0.4) 0%, rgba(200, 205, 215, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(11, 20, 38, 0.03);
    animation: float-bubble-1 25s ease-in-out infinite;
}
.bubble-l2 {
    opacity: 0.5;
    animation: float-bubble-2 28s ease-in-out infinite;
}
.bubble-l3 {
    background: linear-gradient(135deg, rgba(123, 160, 91, 0.3) 0%, rgba(123, 160, 91, 0.15) 100%);
    animation: float-bubble-3 22s ease-in-out infinite;
}
.bubble-1 {
    background: linear-gradient(135deg, rgba(232, 235, 240, 0.6) 0%, rgba(215, 220, 230, 0.4) 100%);
    box-shadow: 0 8px 30px rgba(11, 20, 38, 0.04);
    animation: float-bubble-1 25s ease-in-out infinite;
}
.bubble-2 {
    animation: float-bubble-2 28s ease-in-out infinite;
}
.bubble-3 {
    background: linear-gradient(135deg, rgba(123, 160, 91, 0.5) 0%, rgba(123, 160, 91, 0.25) 100%);
    box-shadow: 0 4px 15px rgba(123, 160, 91, 0.1);
    animation: float-bubble-3 22s ease-in-out infinite;
}
.bubble-4 {
    animation: float-bubble-1 30s ease-in-out infinite;
}
.bubble-5 {
    background: linear-gradient(135deg, #0B1426 0%, #1a2a47 100%);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
    animation: float-bubble-2 24s ease-in-out infinite;
}
.bubble-6 {
    background: linear-gradient(135deg, #7BA05B 0%, #5d7e41 100%);
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.2);
    opacity: 0.9;
    animation: float-bubble-3 26s ease-in-out infinite;
}
.bubble-7 {
    animation: float-bubble-1 27s ease-in-out infinite;
}

/* ==========================================================================
   Page-Specific Layout Variations
   ========================================================================== */

/* 1. HOMEPAGE HERO SHAPES */
.hero-home .bubble-l1 { width: 120px; height: 120px; left: 0; top: 0; }
.hero-home .bubble-l2 { left: 110px; top: 50px; }
.hero-home .bubble-l3 { width: 50px; height: 50px; left: 50px; bottom: 0; }

.hero-home .bubble-1 { width: 180px; height: 180px; left: 0; top: 0; }
.hero-home .bubble-2 { right: 40px; top: 30px; }
.hero-home .bubble-3 { width: 70px; height: 70px; right: 10px; top: 120px; }
.hero-home .bubble-4 { left: 40px; bottom: 40px; }
.hero-home .bubble-5 { width: 45px; height: 45px; left: 80px; bottom: 95px; }
.hero-home .bubble-6 { width: 110px; height: 110px; left: 140px; bottom: 20px; }
.hero-home .bubble-7 { right: 30px; bottom: 50px; }

/* 2. ABOUT PAGE HERO SHAPES */
.hero-about .bubble-l1 { width: 90px; height: 90px; left: 20px; top: 30px; }
.hero-about .bubble-l2 { left: 80px; top: 80px; }
.hero-about .bubble-l3 { width: 60px; height: 60px; left: 0px; bottom: 20px; }

.hero-about .bubble-1 { width: 150px; height: 150px; left: 40px; top: 40px; }
.hero-about .bubble-2 { right: 10px; top: 10px; }
.hero-about .bubble-3 { width: 90px; height: 90px; right: 50px; top: 160px; }
.hero-about .bubble-4 { left: 10px; bottom: 80px; }
.hero-about .bubble-5 { width: 55px; height: 55px; left: 130px; bottom: 120px; }
.hero-about .bubble-6 { width: 130px; height: 130px; left: 100px; bottom: 0px; }
.hero-about .bubble-7 { right: 10px; bottom: 80px; }

/* 3. SERVICES PAGE HERO SHAPES */
.hero-services .bubble-l1 { width: 130px; height: 130px; left: 30px; top: 0px; }
.hero-services .bubble-l2 { left: 10px; top: 90px; }
.hero-services .bubble-l3 { width: 45px; height: 45px; left: 100px; bottom: 30px; }

.hero-services .bubble-1 { width: 200px; height: 200px; left: 20px; top: 10px; }
.hero-services .bubble-2 { right: 80px; top: 20px; }
.hero-services .bubble-3 { width: 60px; height: 60px; right: 0px; top: 100px; }
.hero-services .bubble-4 { left: 60px; bottom: 10px; }
.hero-services .bubble-5 { width: 40px; height: 40px; left: 60px; bottom: 150px; }
.hero-services .bubble-6 { width: 100px; height: 100px; left: 160px; bottom: 50px; }
.hero-services .bubble-7 { right: 20px; bottom: 100px; }

/* Very Slight & Slow Float Animations */
@keyframes float-bubble-1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-6px, 8px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-bubble-2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(8px, -6px); }
    100% { transform: translate(0, 0); }
}

@keyframes float-bubble-3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-4px, -8px); }
    100% { transform: translate(0, 0); }
}

/* Responsiveness and Scaling */
@media (max-width: 1200px) {
    .bubble-cluster-right {
        right: 1%;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

@media (max-width: 992px) {
    .bubble-cluster-left {
        display: none; /* Hide left cluster to declutter tablet/mobile view */
    }
    .bubble-cluster-right {
        right: 2%;
        bottom: 20px;
        transform: scale(0.75);
        transform-origin: bottom right;
    }
}

@media (max-width: 768px) {
    .bubble-cluster-right {
        left: 50%;
        right: auto;
        transform: translateX(-50%) scale(0.65);
        transform-origin: bottom center;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .bubble-cluster-right {
        bottom: 5px;
        transform: translateX(-50%) scale(0.55);
    }
}


/* Brand colors for text highlighting */
.brand-fedex {
    font-weight: 800;
}
.fedex-fed {
    color: #4D148C; /* FedEx Purple */
}
.fedex-ex {
    color: #FF6200; /* FedEx Orange */
}
.brand-ups {
    color: #351C15; /* UPS Brown */
    font-weight: 800;
}
.brand-usps {
    font-weight: 800;
}
.usps-us {
    color: #004B87; /* USPS Blue */
}
.usps-ps {
    color: #DA291C; /* USPS Red */
}

.hero-title {
    font-size: 2.5rem; /* Mobile size */
    font-weight: 900;
    margin-bottom: var(--spacing-xl);
    color: var(--midnight-blue);
    line-height: 1.15;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.premium-highlight {
    color: var(--mint-green);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem; /* Mobile size */
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-2xl);
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 1.25rem;
        margin-left: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--mint-green);
    cursor: pointer;
    transition: opacity var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--mint-green);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--mint-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wave 1.5s infinite;
}

@keyframes scroll-wave {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Stacked Hero Layout */
.hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3xl);
    width: 100%;
    max-width: 1200px;
    margin: -50px auto 0;
    text-align: center;
}

.hero-info {
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

@media (min-width: 768px) {
    .hero-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-square {
    background: var(--pure-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.15 / 1;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--midnight-blue);
    position: relative;
    overflow: hidden;
}

.service-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint-green);
    transform: translateY(-4px);
    transition: transform var(--transition-normal);
}

.service-square:hover {
    transform: translateY(-8px);
    border-color: var(--mint-green);
    box-shadow: var(--shadow-lg);
}

.service-square:hover::before {
    transform: translateY(0);
}

.service-square-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 160, 91, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-green);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.service-square:hover .service-square-icon {
    background: var(--mint-green);
    color: var(--pure-white);
    transform: scale(1.1) rotate(5deg);
}

.service-square-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.15rem;
    color: var(--midnight-blue);
    margin-bottom: var(--spacing-xs);
}

.service-square-desc {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .hero-split {
        padding-top: 80px;
        min-height: auto;
    }
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center; /* Center for stacked layout */
    gap: var(--spacing-lg);
    margin: 0 auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 160, 91, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    background: rgba(123, 160, 91, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--mint-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
    line-height: 1.3;
}

/* Clean Button System - No Animations */
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-align: center;
    min-height: 48px;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    font-family: var(--font-secondary);
}

/* Button Variants */
.btn-primary {
    background: var(--mint-green);
    color: var(--pure-white);
    border-color: var(--mint-green);
}

.btn-primary:hover {
    background: var(--midnight-blue);
    border-color: var(--midnight-blue);
    color: var(--pure-white);
}

.btn-secondary {
    background: var(--midnight-blue);
    color: var(--pure-white);
    border-color: var(--midnight-blue);
}

.btn-secondary:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    color: var(--pure-white);
}

.btn-light {
    background: var(--mint-green);
    color: var(--pure-white);
    border-color: var(--mint-green);
    padding: 12px 24px;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-sm);
}

.btn-light:hover {
    background: var(--midnight-blue);
    border-color: var(--midnight-blue);
    color: var(--pure-white);
}

.btn-cta {
    background: var(--mint-green);
    color: var(--pure-white);
    border-color: var(--mint-green);
    box-shadow: var(--shadow-green);
}

.btn-cta:hover {
    background: var(--midnight-blue);
    border-color: var(--midnight-blue);
    color: var(--pure-white);
}

/* Section Styles */
.section {
    padding: calc(var(--spacing-3xl) + var(--spacing-lg)) 0;
    position: relative;
    background: var(--pale-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    color: var(--midnight-blue);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--mint-green);
    border-radius: var(--radius-sm);
}

.section-subtitle {
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Section variants */
.section.dark-section {
    background: var(--gradient-dark);
    color: var(--pure-white);
}

.section.white-section {
    background: var(--pure-white);
}

.section.green-section {
    background: var(--light-gray);
    color: var(--midnight-blue);
}

/* Wabi Sabi Diagonal Section Dividers */
.section.white-section#reviews {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5vw), 0 100%);
    margin-top: 0;
    margin-bottom: -3.5vw;
    position: relative;
    z-index: 2;
    padding-top: calc(var(--spacing-3xl) + var(--spacing-lg));
    padding-bottom: calc(var(--spacing-3xl) + 6vw);
}

.section.green-section#why-speedmail {
    clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 calc(100% - 3.5vw));
    margin-top: -3.5vw;
    margin-bottom: -3.5vw;
    position: relative;
    z-index: 3;
    padding-top: calc(var(--spacing-3xl) + 6vw);
    padding-bottom: calc(var(--spacing-3xl) + 6vw);
}

.section.social-section {
    clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -3.5vw;
    position: relative;
    z-index: 4;
    padding-top: calc(var(--spacing-3xl) + 6vw);
}

/* Enhanced Card Styles */
.card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint-green);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint-green);
}

.card.featured {
    border: 2px solid var(--mint-green);
    box-shadow: var(--shadow-green);
}

.card.featured::before {
    height: 6px;
    background: var(--mint-green);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--mint-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-green);
    color: var(--pure-white);
    font-weight: var(--font-weight-semibold);
}

.card-title {
    color: var(--midnight-blue);
    margin-bottom: var(--spacing-md);
    transition: color var(--transition-normal);
}

.card:hover .card-title {
    color: var(--mint-green);
}

.card-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

/* Service Card Images */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-normal);
}

.card:hover .card-image {
    transform: scale(1.05);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.9));
    color: var(--pure-white);
    padding: var(--spacing-xl);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--mint-green);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Review & Testimonial Styles */
.review-card {
    background: var(--pure-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint-green);
}

.review-rating {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.review-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-name {
    display: block;
    font-weight: var(--font-weight-bold);
    color: var(--midnight-blue);
}

.author-title {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Social Section Styles */
.social-section {
    text-align: center;
    background: var(--pure-white);
    padding: var(--spacing-3xl) 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
    background: var(--pure-white);
    color: var(--midnight-blue);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.social-link svg {
    transition: transform var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--mint-green);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    color: var(--mint-green);
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-md);
    font-size: 1.2rem;
}

/* Enhanced Form Elements */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    font-size: 1.05rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    transition: all var(--transition-normal);
    background: var(--pure-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--mint-green);
    box-shadow: 0 0 0 3px rgba(123, 160, 91, 0.2);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--pure-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(123,160,91,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    color: var(--mint-green);
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-section a:hover {
    color: var(--mint-green);
}

.footer-bottom {
    border-top: 1px solid rgba(123, 160, 91, 0.3);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Premium Highlights */
.premium-highlight {
    color: var(--mint-green) !important;
    font-weight: var(--font-weight-semibold);
}

.interactive-accent:hover {
    color: var(--mint-green) !important;
    transition: all var(--transition-normal);
}

/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid var(--mint-green);
    background: linear-gradient(135deg, var(--pure-white) 0%, rgba(123, 160, 91, 0.05) 100%);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--mint-green);
    opacity: 0.3;
    font-family: serif;
}

/* Animation Control Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

.feature-list li::before {
    content: '✓';
    color: var(--mint-green);
    font-weight: bold;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-center .hero-buttons { justify-content: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Responsive Design */
.d-none-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .d-none-mobile {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .header {
        height: 80px;
        background: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        opacity: 1 !important;
        pointer-events: none !important;
        transform: translateY(0) !important;
    }
    
    .header.scrolled {
        background: rgba(11, 20, 38, 0.95) !important;
        border-bottom: 1px solid rgba(123, 160, 91, 0.2) !important;
        box-shadow: var(--shadow-xl) !important;
        pointer-events: auto !important;
    }
    
    .header .logo,
    .mobile-toggle {
        pointer-events: auto !important;
    }
    
    .header-content {
        min-height: 80px;
        padding: var(--spacing-sm) 0;
    }
    
    .mobile-toggle {
        display: flex;
        margin-right: var(--spacing-sm);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: var(--spacing-xl);
        left: auto;
        width: 320px;
        background: var(--midnight-blue);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-xl);
        border-radius: var(--radius-lg);
        margin-right: 0;
        border-top: 2px solid var(--mint-green);
        list-style: none;
        z-index: 1001;
        gap: 0;
        pointer-events: auto !important;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        color: var(--pure-white) !important;
        text-decoration: none;
        font-weight: var(--font-weight-medium);
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        margin: var(--spacing-sm) 0;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(123, 160, 91, 0.2);
        background: rgba(123, 160, 91, 0.05);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-normal);
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        background: var(--mint-green) !important;
        color: var(--pure-white) !important;
    }
    
    .nav-menu a.active {
        background: var(--mint-green) !important;
        color: var(--pure-white) !important;
        box-shadow: var(--shadow-green) !important;
    }
    
    @media (max-width: 576px) {
        .nav-menu {
            left: var(--spacing-md);
            right: var(--spacing-md);
            width: auto;
        }
    }
    
    .logo-text .tagline {
        display: none;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: calc(100vh - 80px);
        text-align: center;
        padding-top: calc(var(--spacing-3xl) + var(--spacing-2xl));
        padding-left: 0;
        padding-right: 0;
        padding-bottom: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .hero-subtitle {
        padding: 0 var(--spacing-md);
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .btn-light {
        padding: 10px 20px;
        background: var(--mint-green);
        border: 1px solid var(--mint-green);
        color: var(--pure-white);
    }
    
    .header.scrolled .btn-light {
        background: var(--mint-green);
        border-color: var(--mint-green);
    }
    
    /* Mobile text improvements */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    p, .section-subtitle, .card-description {
        font-size: 1rem;
    }
    
    /* Mobile Image Adjustments */
    .service-image {
        height: 150px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: var(--spacing-lg);
    }
    
    /* Mobile Grid System Collapse */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Mobile Card Padding Fix */
    .card {
        padding: var(--spacing-xl);
    }
}

/* Specific Mobile Layout Fixes (under 576px) */
@media (max-width: 576px) {
    .card {
        padding: var(--spacing-lg);
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-services-grid .service-square {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: var(--spacing-md);
        row-gap: 2px;
        align-items: center;
        text-align: left;
        aspect-ratio: auto;
        padding: var(--spacing-md);
    }
    
    .hero-services-grid .service-square::before {
        display: none;
    }
    
    .hero-services-grid .service-square-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-bottom: 0;
        width: 48px;
        height: 48px;
    }
    
    .hero-services-grid .service-square-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .hero-services-grid .service-square-desc {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.85rem;
        margin-bottom: 0;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.1s forwards;
}

/* Page Transition */
.page-transition {
    animation: fadeInUp 0.6s ease-out;
}

/* Hide card icons (no emojis) */
.card-icon {
    display: none !important;
}

/* About Hero Split Layout & Image styling */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-left {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xl);
    color: var(--midnight-blue);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle-left {
    font-size: 1.15rem;
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.7;
    text-align: left;
}

.hero-image-right {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-2xl);
    padding: 10px;
    background: var(--pure-white);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-slow);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots2" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="4" cy="4" r="2" fill="%237BA05B" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots2)"/></svg>');
    z-index: -1;
    border-radius: var(--radius-md);
}

.hero-store-front {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 88%; /* Shifted down further to balance storefront facade and tree cropping */
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 11; /* Slightly taller than 16:10 to show more of the storefront facade */
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--mint-green);
}

.hero-image-wrapper:hover .hero-store-front {
    transform: scale(1.02);
}

/* Responsive styles for About Hero Split */
@media (max-width: 992px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
        margin-top: 0;
    }
    
    .hero-content-left {
        align-items: center;
    }
    
    .hero-title-left {
        font-size: 3rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle-left {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-wrapper {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .hero-title-left {
        font-size: 2.5rem;
    }
    .hero-image-wrapper::after {
        display: none;
    }
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        width: 100%;
        max-width: 300px;
        margin: var(--spacing-xl) auto 0;
    }
    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Service Card SVGs showing display fix */
.about-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 160, 91, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-green);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card:hover .about-card-icon {
    background: var(--mint-green);
    color: var(--pure-white);
    transform: scale(1.1) rotate(5deg);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    background: var(--midnight-blue);
    border: 2px solid var(--mint-green);
    border-radius: 50px;
    padding: 6px 18px 6px 6px;
    color: var(--pure-white);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(11, 20, 38, 0.25);
    transition: all var(--transition-normal);
}

.floating-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(11, 20, 38, 0.35);
    border-color: var(--pure-white);
    background: var(--mint-green);
}

.floating-call-icon {
    width: 40px;
    height: 40px;
    background: var(--mint-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    margin-right: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.floating-call-btn:hover .floating-call-icon {
    background: var(--midnight-blue);
}

.floating-call-text {
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 5px 14px 5px 5px;
    }
    
    .floating-call-icon {
        width: 36px;
        height: 36px;
    }
    
    .floating-call-text {
        font-size: 0.8rem;
    }
}