/* Critical CSS Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Optimize font loading - Use system fonts as fallback */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

/* Reduce layout shifts */
img {
    height: auto;
    max-width: 100%;
}

/* Optimize animations for performance - Disable heavy animations initially */
@media (prefers-reduced-motion: no-preference) {
    * {
        animation-duration: 0.3s !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reset and Base Styles - Luxury Edition */
:root {
    /* Luxury Color Palette - Enhanced */
    --luxury-gold: #C9A961;
    --luxury-gold-light: #E8D7B0;
    --luxury-gold-dark: #9B7E3C;
    --luxury-black: #000000;
    --luxury-charcoal: #1C1C1E;
    --luxury-gray: #2C2C2E;
    --luxury-silver: #D4D4D4;
    --luxury-white: #FFFFFF;
    --luxury-cream: #F5F5F0;
    --luxury-platinum: #E5E4E2;
    
    /* Primary Colors */
    --primary-green: #0D4D2E;
    --secondary-green: #0A3821;
    --accent-green: #1A6B45;
    --dark-green: #051F13;
    --light-green: #E8F5E9;
    
    /* Text Colors */
    --text-luxury: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #7A7A7A;
    --text-gold: #D4AF37;
    
    /* Luxury Gradients */
    --gradient-luxury: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0D4D2E 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4B7 50%, #D4AF37 100%);
    --gradient-green: linear-gradient(135deg, #0D4D2E 0%, #1A6B45 100%);
    --gradient-premium: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(13, 77, 46, 0.1) 100%);
    
    /* Luxury Shadows */
    --shadow-luxury: 0 4px 30px rgba(212, 175, 55, 0.15);
    --shadow-premium: 0 8px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.4);
    --shadow-deep: 0 15px 60px rgba(0, 0, 0, 0.5);
    
    /* Premium Effects */
    --border-radius: 2px;
    --border-radius-large: 4px;
    --transition-luxury: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Professional Animation Keyframes - Optimized */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Remove heavy animations */
@keyframes pulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.02, 1.02, 1);
    }
}

/* Use will-change for better performance */
.btn,
.service-card,
.portfolio-item {
    will-change: transform;
}

.btn:hover,
.service-card:hover,
.portfolio-item:hover {
    will-change: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 40, 24, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -2px;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    line-height: 1.2;
    max-width: 200px;
    font-style: italic;
}

/* Features Showcase - Professional replacement for code */
.features-showcase {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #FFFFFF !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.8rem;
    line-height: 1.4;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

.system-status .status-icon {
    font-size: 0.8rem;
}

.system-status .status-text {
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Prominent CTA Styling */
.cta-prominent {
    position: relative;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3) !important;
    transform: scale(1.05);
    animation: pulse-glow 2s infinite;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-prominent:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4) !important;
}

.cta-prominent .btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
    }
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
}

.language-option:hover {
    background: rgba(19, 91, 58, 0.1);
    color: var(--primary-green);
}

.language-option.active {
    background: var(--primary-green);
    color: var(--white);
}

.language-option .flag {
    font-size: 1.2rem;
}

.email-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Testimonial Metrics */
.testimonial-metrics {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.testimonial-metrics .metric {
    background: rgba(19, 91, 58, 0.1);
    color: var(--primary-green);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(19, 91, 58, 0.2);
}

/* Hide Google Translate banner/menu/header completely */
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-ftab,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

body {
    top: 0 !important;
    position: static !important;
}

html {
    margin-top: 0 !important;
}

body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}

/* Force hide any GT injected elements */
.skiptranslate,
.goog-te-gadget,
.goog-logo-link {
    display: none !important;
    visibility: hidden !important;
}

/* Keep the element present but off-screen so GT can initialize */
.visually-hidden-translate {
    position: fixed;
    width: 1px;
    height: 1px;
    overflow: hidden;
    bottom: -9999px;
    right: 0;
}

/* Fix body margin when Google Translate is active */
body.translated-ltr {
    margin-top: 0 !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Also hide other Google Translate UI artifacts */
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
/* Hide gadget remnants */
.goog-te-gadget,
.goog-te-gadget-simple,
img.goog-te-gadget-icon,
.goog-logo-link {
    display: none !important;
    visibility: hidden !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-green) !important;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger .bar {
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    margin: 3px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    flex: none !important;
    border: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .title-highlight {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #C9A961;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Mobile tagline fix */
@media (max-width: 768px) {
    .hero-tagline {
        color: #E8D7B0;
        font-size: 1.1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, #E8D7B0 0%, #C9A961 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border-color: #C9A961;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(19, 91, 58, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.6s ease 0.3s;
}

.section-header.animate-in h2::after {
    width: 60px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Demo Section */
.mobile-demo {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.mobile-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(19, 91, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 127, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mobile-demo-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mobile-demo-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft var(--animation-medium) ease-out forwards;
}

.demo-feature:nth-child(1) { animation-delay: 0.2s; }
.demo-feature:nth-child(2) { animation-delay: 0.4s; }
.demo-feature:nth-child(3) { animation-delay: 0.6s; }
.demo-feature:nth-child(4) { animation-delay: 0.8s; }

.demo-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* System Package Styles */
.system-package {
    margin-top: 2rem;
}

.system-package h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(19, 91, 58, 0.1);
    transition: var(--transition);
    opacity: 1;
    transform: translateX(0);
}


.package-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(19, 91, 58, 0.15);
    border-color: rgba(19, 91, 58, 0.3);
}

.package-icon {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.package-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

.package-highlight {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
    opacity: 1;
    transform: scale(1);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.9rem;
}

.highlight-text {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

/* Mobile Phone Mockup */
.mobile-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-phone {
    position: relative;
    animation: none;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.phone-screen .screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    padding: 20px;
    box-sizing: border-box;
}

.phone-screen .screen-content.active {
    opacity: 1;
    transform: translateX(0);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.app-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
}

.live-indicator {
    font-size: 0.8rem;
    padding: 4px 8px;
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border-radius: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Home Land Hotel Dashboard Content */
.orders-summary {
    margin-bottom: 20px;
}

.order-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.order-stats .stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 8px;
    flex: 1;
}

.order-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    display: block;
}

.order-stats .stat-label {
    font-size: 0.7rem;
    color: #666;
}

.live-orders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    transition: var(--transition);
}

.order-item.new {
    border-left: 4px solid #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.order-id {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
}

.order-time {
    font-size: 0.7rem;
    color: #666;
}

.order-room {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.order-items {
    font-size: 0.75rem;
    color: #666;
}

/* Room Status Styles */
.room-status-summary {
    margin-bottom: 20px;
}

.status-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.status-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.status-chip.available {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.status-chip.occupied {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.chip-icon {
    font-size: 1rem;
    margin-bottom: 2px;
}

.chip-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.chip-label {
    font-size: 0.7rem;
    color: #666;
}

.room-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.room-card.occupied {
    border-left: 4px solid #ff3b30;
    background: rgba(255, 59, 48, 0.05);
}

.room-card.available {
    border-left: 4px solid #34c759;
    background: rgba(52, 199, 89, 0.05);
}

.room-card.maintenance {
    border-left: 4px solid #ff9500;
    background: rgba(255, 149, 0, 0.05);
}

.room-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    min-width: 40px;
}

.room-info {
    flex: 1;
}

.room-status {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.room-guest, .room-checkout, .room-ready, .room-eta {
    font-size: 0.7rem;
    color: #666;
}

/* Sales Dashboard Styles */
.revenue-summary {
    margin-bottom: 20px;
}

.revenue-card-main {
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.revenue-title {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.revenue-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.revenue-change {
    font-size: 0.75rem;
    opacity: 0.9;
}

.sales-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.sales-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
}

.sales-category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-icon {
    font-size: 1rem;
}

.category-name {
    font-size: 0.8rem;
    font-weight: 500;
}

.sales-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
}

.occupancy-rate {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.rate-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.rate-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.room-item {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.room-item.occupied {
    background: rgba(255, 59, 48, 0.1);
    border: 2px solid rgba(255, 59, 48, 0.3);
}

.room-item.available {
    background: rgba(52, 199, 89, 0.1);
    border: 2px solid rgba(52, 199, 89, 0.3);
}

.room-item.maintenance {
    background: rgba(255, 149, 0, 0.1);
    border: 2px solid rgba(255, 149, 0, 0.3);
}

.room-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.room-status {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Analytics Content */
.chart-placeholder {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 80px;
    margin-bottom: 10px;
    gap: 8px;
}

.chart-bar {
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    flex: 1;
    height: 100%;
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.insights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Phone Reflection */
.phone-reflection {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(44, 44, 46, 0.2), transparent);
    border-radius: 35px;
    filter: blur(10px);
    transform: scaleY(0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    animation: floatAround 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; right: 10%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 15%; }
.floating-icon:nth-child(4) { top: 40%; right: 20%; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.8; }
    75% { transform: translateY(-25px) rotate(2deg); opacity: 0.9; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 35px rgba(19, 91, 58, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #FFFFFF;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.services .section-header {
    position: relative;
    z-index: 2;
}

.services .section-header h2 {
    color: #0D3520;
}

.services .section-header p {
    color: rgba(10, 40, 24, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 91, 58, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(0) scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(19, 91, 58, 0.3);
    position: relative;
    z-index: 2;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0;
}

.service-card:hover .service-icon {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 8px 25px rgba(19, 91, 58, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    opacity: 1;
    transform: translateX(0);
}

.service-features li:nth-child(1) { transition-delay: 0.1s; }
.service-features li:nth-child(2) { transition-delay: 0.2s; }
.service-features li:nth-child(3) { transition-delay: 0.3s; }
.service-features li:nth-child(4) { transition-delay: 0.4s; }
.service-features li:nth-child(5) { transition-delay: 0.5s; }
.service-features li:nth-child(6) { transition-delay: 0.6s; }
.service-features li:nth-child(7) { transition-delay: 0.7s; }
.service-features li:nth-child(8) { transition-delay: 0.8s; }

.service-card.animate-in .service-features li {
    opacity: 1;
    transform: translateX(0);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li::before {
    transform: scale(1.2);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

/* Client Showcase */
.client-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.client-images {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.client-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.client-slide.active {
    opacity: 1;
}

.client-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.client-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.client-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.client-description h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(19, 91, 58, 0.1);
    color: var(--primary-green);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(19, 91, 58, 0.2);
}

.client-badge.live {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border-color: rgba(52, 199, 89, 0.3);
    animation: pulse 2s infinite;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(19, 91, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(26, 127, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
}

.portfolio-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 91, 58, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(19, 91, 58, 0.2);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(19, 91, 58, 0.8), rgba(26, 127, 78, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.portfolio-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-green);
    color: var(--white);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(19, 91, 58, 0.3);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    backdrop-filter: blur(10px);
}

/* Fix dropdown options visibility */
.form-group select {
    background: rgba(29, 29, 31, 0.95);
    color: white;
}

.form-group select option {
    background: #1D1D1F;
    color: white;
    padding: 10px;
    border: none;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: var(--primary-green);
    color: white;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(19, 91, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-green);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .company-name {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Force hide Google Translate banner on mobile */
    html, body {
        margin-top: 0 !important;
        padding-top: 0 !important;
        transform: none !important;
    }
    
    body {
        top: 0 !important;
        position: static !important;
    }
    
    .goog-te-banner-frame,
    iframe.goog-te-banner-frame,
    body > .skiptranslate,
    body > iframe.skiptranslate {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
        z-index: -9999 !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Keep language switcher visible on mobile */
    .language-switcher {
        display: flex !important;
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1002;
    }
    
    .language-menu {
        position: fixed !important;
        top: 50px !important;
        right: 60px !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        border-top: 1px solid #eee;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 180px;
    }
    
    .about-placeholder {
        width: 280px;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Enhanced Service Cards */
.service-card.featured {
    background: white;
    color: #0D3520;
    position: relative;
    border: 2px solid #0D3520;
    transform: scale(1.02);
}

.service-card.featured .service-icon {
    color: #0D3520;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF3B30;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: #0D4D2E;
    border-radius: 0;
}

.benefits-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
    border-color: #C9A961;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #0D3520;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #0D3520;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.benefit-item p {
    color: rgba(10, 40, 24, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Portfolio */
.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-tag.live {
    background: #34C759;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Success Metrics */
.success-metrics {
    margin-top: 2rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.why-choose-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-choose-content {
    flex: 1;
}

.why-choose-main {
    background: #fff;
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(19, 91, 58, 0.15);
}

.why-choose-header {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.why-choose-header::-webkit-details-marker { display: none; }

.why-choose-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.dropdown-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.why-choose-main[open] .dropdown-arrow {
    transform: rotate(180deg);
}

.why-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background: #fff;
}

.reason-item {
    padding: 1rem;
    border: 1px solid rgba(19, 91, 58, 0.1);
    border-radius: 8px;
    background: rgba(19, 91, 58, 0.02);
}

.reason-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-green);
    font-size: 0.95rem;
    font-weight: 600;
}

.reason-item p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}

/* Mobile Showcase */
.mobile-showcase {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-device {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: none;
}

.device-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-green), #00ff88, var(--primary-green));
    border-radius: 30px;
    opacity: 0;
    animation: none;
    z-index: -1;
    display: none !important;
}

.mobile-reflection {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
    border-radius: 50%;
    filter: blur(10px);
    animation: reflection-pulse 4s ease-in-out infinite;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.screen-header {
    display: none;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
    color: white;
}

.signal-battery {
    display: flex;
    gap: 0.25rem;
}

.mobile-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 0.5rem;
    border-radius: 4px;
}

.nav-logo-mobile {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

.nav-brand-mobile {
    flex: 1;
}

.brand-main-mobile {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    animation: logo-glow 3s ease-in-out infinite alternate;
}

.brand-sub-mobile {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    animation: logo-fade 2s ease-in-out infinite alternate;
}

.nav-menu-mobile {
    font-size: 0.8rem;
    color: white;
}

.screen-content {
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 100%;
    overflow-y: auto;
}

.hero-mobile-main {
    text-align: center;
    padding: 0.75rem 0.5rem;
}

.hero-title-main {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    animation: title-slide-in 0.5s ease-out both;
}

.hero-subtitle-main {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 500;
    animation: title-slide-in 0.6s ease-out 0.1s both;
}

@keyframes title-slide-in {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stats-row-mobile {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.stat-item-mobile {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-desc {
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.buttons-row-mobile {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-get-quote {
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    animation: button-pop 0.5s ease-out 0.3s both;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-get-quote:active {
    transform: scale(0.95);
}

.btn-view-success {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    animation: button-pop 0.5s ease-out 0.35s both;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-view-success:active {
    transform: scale(0.95);
}

@keyframes button-pop {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.features-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(19, 91, 58, 0.1);
    transition: transform 150ms ease, box-shadow 200ms ease !important;
    animation: feature-fade-in 0.4s ease-out both;
}

.feature-row:nth-child(1) { animation-delay: 0.1s; }
.feature-row:nth-child(2) { animation-delay: 0.2s; }
.feature-row:nth-child(3) { animation-delay: 0.3s; }

@keyframes feature-fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.feature-row:hover,
.feature-row:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(19, 91, 58, 0.12);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 91, 58, 0.08);
    color: var(--primary-green);
    font-size: 0.8rem;
    line-height: 1;
    transition: transform 150ms ease !important;
    animation: icon-bounce 0.6s ease-out both;
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% { transform: scale(1); }
    40% { transform: scale(1.1); }
    60% { transform: scale(1.05); }
}

.feature-row:hover .feature-icon,
.feature-row:active .feature-icon { transform: scale(1.05); }

.feature-name {
    font-size: 0.66rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-progress {
    margin-top: 0.25rem;
    height: 3px;
    background: rgba(19, 91, 58, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #00ff88);
    border-radius: 2px;
    animation: none;
}

.live-status-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.live-dot-mobile {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

.live-text-mobile {
    font-size: 0.6rem;
    color: #00aa00;
    font-weight: 600;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    display: none !important;
}

.particle {
    position: absolute;
    font-size: 1rem;
    opacity: 0.7;
    animation: particle-float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: -10%;
    animation-delay: 1.2s;
}

.particle-3 {
    top: 60%;
    left: -15%;
    animation-delay: 2.4s;
}

.particle-4 {
    top: 80%;
    right: -5%;
    animation-delay: 3.6s;
}

.particle-5 {
    top: 10%;
    right: -20%;
    animation-delay: 4.8s;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(19, 91, 58, 0.2); }
    100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(19, 91, 58, 0.4); }
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes reflection-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.1; transform: scaleX(1.1); }
}

@keyframes animate-slide-in {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes animate-slide-in-delay {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: var(--target-width, 100%); }
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes particle-float {
    0% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    50% { transform: translateX(100px) translateY(-50px) rotate(180deg); opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateX(200px) translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes logo-glow {
    0% { 
        color: white; 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    100% { 
        color: #00ff88; 
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.4);
    }
}

@keyframes logo-fade {
    0% { 
        opacity: 0.8; 
        color: rgba(255, 255, 255, 0.8);
    }
    100% { 
        opacity: 1; 
        color: rgba(0, 255, 136, 0.9);
    }
}

/* Animation Classes (re-enabled for the site; the Why-Choose phone doesn't use these) */
.animate-slide-in { animation: animate-slide-in 0.6s ease-out both; }
.animate-slide-in-delay { animation: animate-slide-in 0.6s ease-out 0.3s both; }
.slide-up-1 { animation: animate-slide-in 0.6s ease-out 0.2s both; }
.slide-up-2 { animation: animate-slide-in 0.6s ease-out 0.35s both; }
.slide-up-3 { animation: animate-slide-in 0.6s ease-out 0.5s both; }

.bounce {
    animation: bounce 2s infinite;
}

.pulse-animation {
    animation: pulse-animation 2s ease-in-out infinite;
}

/* Ensure mobile demo is visible without blocking animations */
.mobile-screen {
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-showcase {
        flex: none;
        align-self: center;
    }
    
    .mobile-device {
        width: 180px;
        height: 360px;
    }
    
    .why-reasons-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-item {
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #135B3A 0%, #0E4228 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(19, 91, 58, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.metric-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(19, 91, 58, 0.5);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
}

/* Simple text list for Why Choose section */
.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(19, 91, 58, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}

.why-choose-list li strong {
    color: var(--primary-green);
}

.why-choose-list li::before {
    content: "✔";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 91, 58, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Accordion for Why Choose section */
.why-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.why-item {
    background: #fff;
    border: 1px solid rgba(19, 91, 58, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(19, 91, 58, 0.08);
}

.why-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-item summary::-webkit-details-marker { display: none; }

.why-item summary::before {
    content: "✔";
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 91, 58, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    font-size: 0.8rem;
}

.why-item summary::after {
    content: "▾";
    margin-left: auto;
    color: var(--primary-green);
    transition: transform 0.2s ease;
}

.why-item[open] summary::after { transform: rotate(180deg); }

.why-content {
    padding: 0 1.25rem 1rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .portfolio-item.featured {
        grid-column: span 1;
    }
    
    .benefits-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .service-card.featured {
        transform: none;
    }
}

/* Professional Navigation Enhancements */
.nav-link.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-left: 1rem;
    transition: var(--transition);
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(26, 127, 78, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(19, 91, 58, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(14, 66, 40, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.5) saturate(0.6) opacity(0.7);
    animation: none;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 0.9;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInDown var(--animation-medium) ease-out 0.2s both;
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(19, 91, 58, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp var(--animation-medium) ease-out 0.4s both;
}

.hero-title .title-highlight {
    animation: fadeInLeft var(--animation-medium) ease-out 0.6s both;
}

.title-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp var(--animation-medium) ease-out 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp var(--animation-medium) ease-out 1s both;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: scaleIn var(--animation-medium) ease-out calc(1.2s + var(--stagger-delay, 0s)) both;
}

.hero-stats .stat-item:nth-child(1) { --stagger-delay: 0s; }
.hero-stats .stat-item:nth-child(2) { --stagger-delay: 0.1s; }
.hero-stats .stat-item:nth-child(3) { --stagger-delay: 0.2s; }
.hero-stats .stat-item:nth-child(4) { --stagger-delay: 0.3s; }

.hero-stats .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(19, 91, 58, 0.4);
    border-color: rgba(26, 127, 78, 0.5);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp var(--animation-medium) ease-out 1.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    animation: pulse 0.6s ease-in-out;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-trust-indicators {
    margin-top: 2rem;
    animation: none;
}

.trust-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 1rem;
    color: #C9A961;
}

/* Software Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight var(--animation-slow) ease-out 0.8s both;
}

/* Tablet Animation */
.tablet-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tablet-device {
    position: relative;
    animation: none;
}

.tablet-frame {
    width: 480px;
    height: 320px;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 25px;
    padding: 12px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.tablet-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
    padding: 20px;
    box-sizing: border-box;
}

.tablet-content.active {
    opacity: 1;
    transform: translateX(0);
}

/* Code Editor Styles */
.code-editor {
    height: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', monospace;
}

.editor-header {
    background: #2d2d30;
    padding: 8px 15px;
    border-bottom: 1px solid #3e3e42;
}

.editor-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 6px 12px;
    background: #3c3c3c;
    color: #cccccc;
    border-radius: 4px 4px 0 0;
    font-size: 0.8rem;
    cursor: pointer;
}

.tab.active {
    background: #1e1e1e;
    color: #ffffff;
}

.code-area {
    padding: 15px;
    height: calc(100% - 80px);
    overflow: hidden;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.line-number {
    color: #858585;
    margin-right: 15px;
    min-width: 20px;
    text-align: right;
}

.code-text {
    color: #cccccc;
}

.keyword { color: #569cd6; }
.variable { color: #9cdcfe; }
.function { color: #dcdcaa; }
.property { color: #92c5f7; }
.string { color: #ce9178; }
.boolean { color: #569cd6; }

.typing-cursor {
    width: 2px;
    height: 18px;
    background: #ffffff;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.compile-status {
    position: absolute;
    bottom: 10px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ec9b0;
    font-size: 0.8rem;
}

.status-icon {
    animation: pulse 2s infinite;
}

/* System Interface Styles */
.system-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.system-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: white;
    border-bottom: 2px solid #f0f0f0;
}

.system-logo {
    font-size: 1.8rem;
}

.system-header h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.live-status {
    font-size: 0.8rem;
    padding: 4px 8px;
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border-radius: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.system-dashboard {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Tablet Reflection */
.tablet-reflection {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(44, 44, 46, 0.2), transparent);
    border-radius: 25px;
    filter: blur(15px);
    transform: scaleY(0.3);
}

/* Code Particles */
.code-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(19, 91, 58, 0.3);
    animation: floatCode 8s ease-in-out infinite;
    font-family: 'Consolas', 'Monaco', monospace;
    font-weight: bold;
}

.particle:nth-child(1) { 
    top: 20%; 
    left: 5%; 
    animation-delay: 0s;
}
.particle:nth-child(2) { 
    top: 60%; 
    right: 5%; 
    animation-delay: 2s;
}
.particle:nth-child(3) { 
    bottom: 30%; 
    left: 10%; 
    animation-delay: 4s;
}
.particle:nth-child(4) { 
    top: 40%; 
    right: 15%; 
    animation-delay: 6s;
}

@keyframes tabletFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes floatCode {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-15px) rotate(2deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-8px) rotate(-1deg); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-20px) rotate(1deg); 
        opacity: 0.7; 
    }
}

.software-showcase {
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.software-showcase:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F57; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #28CA42; }

.showcase-title {
    font-weight: 600;
    font-size: 1rem;
}

.showcase-content {
    padding: 1.5rem;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.software-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: scaleIn var(--animation-medium) ease-out calc(1.5s + var(--item-delay, 0s)) both;
}

.software-item:nth-child(1) { --item-delay: 0s; }
.software-item:nth-child(2) { --item-delay: 0.1s; }
.software-item:nth-child(3) { --item-delay: 0.2s; }
.software-item:nth-child(4) { --item-delay: 0.3s; }
.software-item:nth-child(5) { --item-delay: 0.4s; }
.software-item:nth-child(6) { --item-delay: 0.5s; }

.software-item:hover {
    background: rgba(19, 91, 58, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(19, 91, 58, 0.2);
}

.software-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.software-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.software-status {
    font-size: 0.7rem;
    color: var(--success-green);
    font-weight: 500;
    background: rgba(52, 199, 89, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

.showcase-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--text-light);
    background: var(--light-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

.tech-badge i {
    font-size: 0.8rem;
    color: var(--primary-green);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--warning-orange);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #0D3520;
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .hero-container {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 5rem 0 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
        padding: 1rem;
    }

    .hero-visual {
        order: 2;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .title-highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-trust-indicators {
        margin-top: 1.5rem;
    }

    .trust-text {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile Demo Responsive */
    .mobile-demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .mobile-demo-text {
        order: 2;
    }

    .mobile-mockup-container {
        order: 1;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .demo-feature {
        padding: 1rem;
    }

    .feature-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .system-package h4 {
        font-size: 1.1rem;
    }

    .package-item {
        padding: 0.6rem;
    }

    .package-icon {
        font-size: 1rem;
        min-width: 20px;
    }

    .package-text {
        font-size: 0.85rem;
    }

    .package-highlight {
        padding: 1rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    /* Client Showcase Mobile */
    .client-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .client-images {
        height: 250px;
        order: 1;
    }

    .client-description {
        order: 2;
        text-align: center;
    }

    .client-description h3 {
        font-size: 1.4rem;
    }

    .client-description p {
        font-size: 1rem;
    }

    .client-badges {
        justify-content: center;
    }

    /* Tablet Animation Mobile */
    .tablet-frame {
        width: 350px;
        height: 240px;
        padding: 8px;
    }

    .tablet-content {
        padding: 15px;
    }

    .code-line {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .system-header {
        padding: 10px 15px;
    }

    .system-header h3 {
        font-size: 1rem;
    }

    .system-dashboard {
        padding: 15px;
        gap: 10px;
    }

    .dashboard-card {
        padding: 10px;
        gap: 10px;
    }

    .card-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .card-value {
        font-size: 1.1rem;
    }

    .particle {
        font-size: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .software-showcase {
        transform: none;
        max-width: 400px;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .showcase-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-logo-bg {
        opacity: 0.12;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .software-showcase {
        max-width: 320px;
    }
    
    .showcase-content {
        padding: 1rem;
    }
    
    .tech-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-logo-bg {
        opacity: 0.1;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-item {
        padding: 1.5rem 1rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(29, 29, 31, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link.cta-button {
        margin: 1rem auto;
        display: inline-block;
        width: fit-content;
    }
    
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .software-showcase {
        max-width: 280px;
    }
    
    .hero-logo-bg {
        opacity: 0.08;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 5rem 0 0.5rem 0;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .title-highlight {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .hero-stats .stat-item {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .trust-text {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .trust-badges {
        gap: 0.3rem;
    }

    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Tablet Animation Mobile */
    .tablet-frame {
        width: 280px;
        height: 200px;
        padding: 6px;
    }

    .tablet-content {
        padding: 10px;
    }

    .code-line {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .system-header {
        padding: 8px 12px;
    }

    .system-header h3 {
        font-size: 0.8rem;
    }

    .system-dashboard {
        padding: 10px;
        gap: 8px;
    }

    .dashboard-card {
        padding: 8px;
        gap: 8px;
    }

    .card-icon {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .card-value {
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 0.7rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.legal-content h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Demo Request Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.demo-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-large);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-heavy);
    animation: fadeInUp 0.3s ease-out;
}

.demo-modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    position: relative;
}

.demo-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.demo-close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.demo-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.demo-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(19, 91, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Header Demo Button */
.header-demo-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Case Study Section */
.case-study-section {
    padding: 5rem 0;
    background: var(--light-green);
}

.case-study-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.case-study-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.case-study-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.case-study-content {
    padding: 2rem;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.form-message.error {
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.form-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean Hero Stats without Icons */
.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Enhanced Trust Indicators */
.hero-trust-indicators {
    margin-top: 40px;
    text-align: center;
}

.trust-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.why-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: left;
}

.why-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Clean Featured Service Cards */
.service-card.featured-card {
    background: #ffffff;
    border: 2px solid var(--primary-green);
    position: relative;
}

/* Clean Additional Services Section */
.additional-services {
    margin: 60px 0;
    padding: 40px;
    background: #C9A961;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.additional-services h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #0D3520;
    margin-bottom: 30px;
    font-weight: 700;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Clean Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stats .stat-item {
    background: var(--primary-green);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.stats .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(19, 91, 58, 0.3);
}

.stats .stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stats .stat-item p {
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-services {
        padding: 30px 20px;
    }
    
    .service-item {
        padding: 25px;
        background: white !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 20px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        background: white !important;
    }
}

/* ========================================
   ENHANCED VISUAL IMPROVEMENTS
   ======================================== */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Hero Stats Grid - 5 columns for new layout */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
}

/* Animated Gradient Background for Stats */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-stats .stat-item {
    background: linear-gradient(135deg, rgba(19, 91, 58, 0.1), rgba(26, 127, 78, 0.15), rgba(19, 91, 58, 0.1));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Icon Pulse Animation */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-stats .stat-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

/* Enhanced Section Headers */
.section-header {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    border-radius: 2px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '✦';
    position: absolute;
    left: -30px;
    color: var(--primary-green);
    font-size: 1.2rem;
    opacity: 0.6;
}

.section-header h2::after {
    content: '✦';
    position: absolute;
    right: -30px;
    color: var(--primary-green);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Floating Animation for Trust Badges - DISABLED */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(0px); }
}

.trust-badge {
    animation: none;
}

.trust-badge:nth-child(1) { animation-delay: 0s; }
.trust-badge:nth-child(2) { animation-delay: 0.5s; }
.trust-badge:nth-child(3) { animation-delay: 1s; }
.trust-badge:nth-child(4) { animation-delay: 1.5s; }

/* Enhanced Service Cards with Shine Effect */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.service-card:hover::before {
    left: 100%;
}

/* Enhanced Why Items with Border Animation */
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(19, 91, 58, 0.2); }
    50% { box-shadow: 0 0 40px rgba(19, 91, 58, 0.4); }
}

.why-item:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Testimonial Card Enhancement */
.testimonial-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(19, 91, 58, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(19, 91, 58, 0.2);
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(19, 91, 58, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Enhanced Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Portfolio Item Enhancement */
.portfolio-item {
    position: relative;
    transition: all 0.4s ease;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(19, 91, 58, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* Enhanced Stats Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats .stat-item {
    animation: countUp 0.8s ease-out forwards;
}

.stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats .stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Loading State for Images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Enhanced Form Inputs */
input, textarea, select {
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(19, 91, 58, 0.15);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-stats .stat-icon {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .cta-section, .hero-buttons {
        display: none;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Accessibility Enhancements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card,
    .why-item,
    .testimonial-card {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f5f5f7;
        --text-light: #a1a1a6;
        --light-gray: #1c1c1e;
        --white: #000000;
    }
}
