/* ========================================
   LUXURY ENHANCEMENTS - ROLEX & APPLE INSPIRED
   Mobile-First Premium Design System - Dark Green Edition
   ======================================== */

/* Premium Typography - Optimized */
:root {
    /* Use system fonts for faster loading */
    --font-luxury: Georgia, 'Times New Roman', serif;
    --font-modern: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    
    /* Premium Spacing */
    --spacing-luxury: clamp(60px, 8vw, 120px);
    --spacing-section: clamp(40px, 6vw, 80px);
    
    /* Luxury Dark Green Palette */
    --luxury-dark-green: #0A2818;
    --luxury-deep-green: #0D3520;
    --luxury-forest-green: #134228;
    --luxury-emerald: #1A5236;
}

/* Global Luxury Enhancements - Optimized */
body {
    font-family: var(--font-modern);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimized Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-dark-green);
}

::-webkit-scrollbar-thumb {
    background: #C9A961;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E8D7B0;
}

/* ========================================
   NAVIGATION - LUXURY EDITION
   ======================================== */
.navbar {
    background: rgba(10, 40, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 1px 0 rgba(201, 169, 97, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 40, 24, 0.98);
    box-shadow: 0 4px 30px rgba(10, 40, 24, 0.8);
}

.brand-main {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.brand-sub {
    color: #D4D4D4;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 400;
}

.nav-link {
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #C9A961;
    transform: translateY(-1px);
}

/* ========================================
   HERO SECTION - LUXURY EDITION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #0A2818 0%, #0D3520 50%, #134228 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-luxury);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #FFFFFF;
}

.title-highlight {
    background: none !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: text !important;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF !important;
}

.hero-subtitle {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* Premium Stats - Diamond/Hexagon Style */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0;
}

.stat-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 245, 0.98) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.4);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.stat-number {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0D3520;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    display: block;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(10, 40, 24, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #C9A961;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    background: #C9A961;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C9A961;
    color: #C9A961;
    transform: translateY(-3px);
}

/* ========================================
   SERVICE CARDS - LUXURY EDITION
   ======================================== */
.services {
    background: #FFFFFF;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 245, 0.98) 100%);
    border: 1px solid rgba(13, 77, 46, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 245, 0.98) 100%);
    border-color: rgba(13, 77, 46, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

.service-card h3 {
    font-family: var(--font-luxury);
    font-weight: 600;
    color: #0D3520;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.service-card p {
    color: rgba(10, 40, 24, 0.9);
    font-weight: 400;
    line-height: 1.7;
    font-size: 1rem;
}

.service-icon {
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

/* ========================================
   MOBILE LUXURY ENHANCEMENTS
   ======================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .nav-menu {
        background: rgba(10, 40, 24, 0.98);
        backdrop-filter: blur(30px);
        border-top: 1px solid rgba(201, 169, 97, 0.3);
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #FFFFFF;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1.75rem 1.25rem;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    
    .stat-number {
        font-size: 1.6rem;
        color: #0D3520;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: rgba(10, 40, 24, 0.9);
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        color: #0D3520;
    }
    
    .service-card p {
        color: rgba(10, 40, 24, 0.9);
        font-size: 0.95rem;
    }
    
    .mobile-phone {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(201, 169, 97, 0.1);
    }
    
    .phone-frame {
        background: linear-gradient(145deg, #0D3520, #0A2818);
        border: 1px solid rgba(201, 169, 97, 0.3);
    }
    
    .section-header h2 {
        font-size: 2rem;
        color: #0D3520;
    }
    
    .section-header p {
        font-size: 1rem;
        color: rgba(10, 40, 24, 0.85);
    }
}

/* ========================================
   PREMIUM MOBILE DEVICE SHOWCASE
   ======================================== */
.mobile-device {
    background: linear-gradient(145deg, #0A2818, #0D3520);
    box-shadow: 
        0 40px 100px rgba(10, 40, 24, 0.8),
        0 0 0 1px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-device:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 50px 120px rgba(10, 40, 24, 0.9),
        0 0 0 1px rgba(201, 169, 97, 0.4),
        0 0 40px rgba(201, 169, 97, 0.3);
}

.mobile-screen {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
}

.screen-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
}

.hero-title-main {
    font-family: var(--font-luxury);
    color: #0A2818;
    font-weight: 400;
}

.btn-get-quote {
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.feature-row {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
}

.feature-row:hover {
    border-color: #C9A961;
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.15);
}

/* ========================================
   CONTACT FORM - LUXURY EDITION
   ======================================== */
.contact {
    background: linear-gradient(135deg, #0A2818 0%, #0D3520 100%);
}

.contact-form {
    background: rgba(13, 53, 32, 0.7);
    border: 1px solid rgba(201, 169, 97, 0.4);
    backdrop-filter: blur(30px);
    padding: 2rem;
    border-radius: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* ========================================
   PORTFOLIO - LUXURY EDITION
   ======================================== */
.portfolio {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
}

.portfolio-item {
    background: linear-gradient(135deg, #0D4D2E 0%, #0A3821 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}

.portfolio-content h3 {
    font-family: var(--font-luxury);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   FOOTER - LUXURY EDITION
   ======================================== */
.footer {
    background: #0A2818;
    border-top: 1px solid rgba(201, 169, 97, 0.4);
    padding: 3rem 0 1rem;
}

.footer-section h3 {
    font-family: var(--font-luxury);
    color: #C9A961;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #C9A961;
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PREMIUM ANIMATIONS
   ======================================== */
@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.luxury-shimmer {
    background: linear-gradient(
        90deg,
        #9B7E3C 0%,
        #C9A961 50%,
        #9B7E3C 100%
    );
    background-size: 200% auto;
    animation: goldShimmer 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SCROLL PROGRESS - LUXURY
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A961 0%, #E8D7B0 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   PREMIUM TOUCH INTERACTIONS (Mobile)
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:active {
        transform: scale(0.97);
    }
    
    .btn-secondary:active {
        transform: scale(0.97);
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .nav-link:active {
        color: #C9A961;
    }
}

/* ========================================
   LUXURY SECTION HEADERS
   ======================================== */
.section-header h2 {
    font-family: var(--font-luxury);
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #0D3520;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.section-header h2::after {
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    height: 2px;
}

.section-header p {
    color: rgba(10, 40, 24, 0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Dark background sections */
.hero .section-header h2,
.contact .section-header h2,
.footer .section-header h2 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .section-header p,
.contact .section-header p,
.footer .section-header p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PREMIUM TRUST INDICATORS
   ======================================== */
.hero-trust-indicators {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.trust-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 1.1rem;
    color: #C9A961;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ========================================
   ABOUT SECTION - LUXURY
   ======================================== */
.about {
    background: linear-gradient(135deg, #0D4D2E 0%, #0A3821 100%) !important;
    padding: 5rem 0;
}

.about-text h3 {
    font-family: var(--font-luxury);
    color: #0D3520;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.about-text p {
    color: rgba(10, 40, 24, 0.9);
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.05rem;
}

.stats {
    border-top: 1px solid rgba(201, 169, 97, 0.4);
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
    padding: 2rem 0;
    margin: 2rem 0;
}

.stat-item h4 {
    font-family: var(--font-luxury);
    color: #0D3520;
    font-weight: 600;
    font-size: 2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.stat-item p {
    color: rgba(10, 40, 24, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   CONTACT ITEMS - LUXURY
   ======================================== */
.contact-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(201, 169, 97, 0.05);
    transform: translateX(5px);
}

.contact-details h3 {
    font-family: var(--font-luxury);
    color: #C9A961;
    font-weight: 400;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn {
        min-height: 48px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .trust-badge {
        text-align: center;
    }
}

/* ========================================
   TABLET ENHANCEMENTS
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   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;
    }
}

/* ========================================
   HIGH CONTRAST MODE SUPPORT
   ======================================== */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #C9A961;
    }
    
    .btn-secondary {
        border: 2px solid #FFFFFF;
    }
    
    .service-card,
    .portfolio-item {
        border: 2px solid rgba(201, 169, 97, 0.3);
    }
}


/* ========================================
   TEXT VISIBILITY FIXES
   ======================================== */

/* Hero and Contact - Dark backgrounds keep white text */
.hero,
.contact,
.footer {
    color: #FFFFFF;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero span,
.hero div {
    color: #FFFFFF !important;
}

/* Services - Light background needs dark text */
.services {
    color: #0A2818;
}

.services h1,
.services h2 {
    color: #0D3520 !important;
}

.services .section-header h2 {
    color: #0D3520 !important;
}

.services .section-header p {
    color: rgba(10, 40, 24, 0.7) !important;
}

.services h3,
.services h4,
.services p,
.services li,
.services span {
    color: #0A2818 !important;
}

.service-features li {
    color: rgba(10, 40, 24, 0.85) !important;
}

.service-features li::before {
    color: #0D3520 !important;
}

/* Portfolio - Light background needs dark text */
.portfolio {
    color: #0A2818;
}

.portfolio h1,
.portfolio h2 {
    color: #0D3520 !important;
}

.portfolio .section-header h2 {
    color: #0D3520 !important;
}

.portfolio .section-header p {
    color: rgba(10, 40, 24, 0.7) !important;
}

.portfolio h3,
.portfolio p,
.portfolio span {
    color: #0A2818 !important;
}

.portfolio-content h3 {
    color: #FFFFFF !important;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* About - Light background needs dark text */
.about {
    color: #0A2818;
}

.about h1,
.about h2 {
    color: #0D3520 !important;
}

.about .section-header h2 {
    color: #0D3520 !important;
}

.about .section-header p {
    color: rgba(10, 40, 24, 0.7) !important;
}

.about h3,
.about h4,
.about p,
.about span {
    color: #0A2818 !important;
}

.about-text h3 {
    color: #0D3520 !important;
}

.about-text p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Contact - Dark background keeps white text */
.contact h1,
.contact h2,
.contact h3,
.contact p,
.contact span,
.contact label {
    color: #FFFFFF !important;
}

.contact-details h3 {
    color: #C9A961 !important;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer - Dark background keeps white text */
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer p,
.footer span,
.footer a,
.footer li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-section h3 {
    color: #C9A961 !important;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-section ul li a:hover {
    color: #C9A961 !important;
}

/* Section headers - Adapt to background */
.hero .section-header h2,
.contact .section-header h2,
.footer .section-header h2 {
    color: #FFFFFF !important;
}

.hero .section-header p,
.contact .section-header p,
.footer .section-header p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.services .section-header h2,
.portfolio .section-header h2,
.about .section-header h2 {
    color: #0D3520 !important;
}

.services .section-header p,
.portfolio .section-header p,
.about .section-header p {
    color: rgba(10, 40, 24, 0.7) !important;
}

/* Stats and numbers - Adapt to background */
.hero .stat-number {
    color: #C9A961 !important;
}

.hero .stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about .stat-number,
.services .stat-number,
.portfolio .stat-number {
    color: #0D3520 !important;
}

.about .stat-label,
.services .stat-label,
.portfolio .stat-label {
    color: rgba(10, 40, 24, 0.7) !important;
}

/* Trust badges */
.trust-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
}

.trust-badge {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Form placeholders */
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Ensure dark text only on light backgrounds */
.mobile-screen,
.screen-content,
.phone-screen {
    color: #0A2818;
}

.mobile-screen h1,
.mobile-screen h2,
.mobile-screen h3,
.mobile-screen h4,
.mobile-screen p,
.screen-content h1,
.screen-content h2,
.screen-content h3,
.screen-content h4,
.screen-content p {
    color: #0A2818 !important;
}

/* Client showcase - Light background */
.client-showcase {
    background: rgba(255, 255, 255, 0.98);
}

.client-description h3 {
    color: #0D3520 !important;
}

.client-description p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Benefits section */
.benefits-section {
    background: #0D4D2E !important;
}

.benefits-section h3 {
    color: #FFFFFF !important;
}

.benefit-item h4 {
    color: #0A2818 !important;
}

.benefit-item p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Why choose section - Light background */
.why-choose-header h3 {
    color: #FFFFFF !important;
}

.reason-item {
    background: rgba(255, 255, 255, 0.95);
}

.reason-item h4 {
    color: #0D3520 !important;
}

.reason-item p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Mobile demo section text - Light background */
.mobile-demo {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
}

.mobile-demo-text h3 {
    color: #0D3520 !important;
}

.mobile-demo-text p {
    color: rgba(10, 40, 24, 0.8) !important;
}

.demo-feature h4 {
    color: #0A2818 !important;
}

.demo-feature p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Package items */
.package-item {
    color: #0A2818 !important;
}

.package-text {
    color: #0A2818 !important;
}

/* Testimonials */
.testimonial-card {
    color: #0A2818 !important;
}

.testimonial-text {
    color: rgba(10, 40, 24, 0.9) !important;
}

.testimonial-author {
    color: #0A2818 !important;
}

/* Success stories - Light background */
.success-story {
    background: rgba(255, 255, 255, 0.95);
}

.success-story h3 {
    color: #0D3520 !important;
}

.success-story p {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* Feature content */
.feature-content h4 {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Language switcher */
.language-option {
    color: #FFFFFF !important;
}

.language-option.active {
    color: #0A2818 !important;
}

/* Founder badge */
.founder-badge {
    background: rgba(201, 169, 97, 0.15) !important;
    border-color: rgba(201, 169, 97, 0.4) !important;
}

.founder-label,
.founder-name,
.founder-role {
    color: #C9A961 !important;
}

/* Rotating text */
#rotating-text,
#rotating-subtitle {
    color: #FFFFFF !important;
}

/* Live status indicators */
.live-status,
.live-indicator {
    color: #34C759 !important;
}

/* Order and room cards */
.order-item,
.room-card {
    color: #0A2818 !important;
}

.order-id,
.room-number {
    color: #0D3520 !important;
}

/* Chart and analytics */
.chart-placeholder {
    color: #0A2818 !important;
}

.insight-item {
    color: #0A2818 !important;
}

/* System interface */
.system-interface h3 {
    color: #0A2818 !important;
}

.dashboard-card {
    color: #0A2818 !important;
}

.card-title {
    color: rgba(10, 40, 24, 0.7) !important;
}

.card-value {
    color: #0D3520 !important;
}


/* ========================================
   TESTIMONIALS / CLIENT SECTION FIX
   ======================================== */

/* Success Stories / Testimonials Section */
.success-stories,
#success-stories,
.testimonials {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%) !important;
}

.success-stories .section-header h2,
#success-stories .section-header h2,
.testimonials .section-header h2 {
    color: #0D3520 !important;
}

.success-stories .section-header p,
#success-stories .section-header p,
.testimonials .section-header p {
    color: rgba(10, 40, 24, 0.7) !important;
}

/* Testimonial Cards */
.testimonial-card,
.client-card,
.success-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(201, 169, 97, 0.3) !important;
    color: #0A2818 !important;
}

.testimonial-card h3,
.testimonial-card h4,
.testimonial-card p,
.testimonial-card span,
.client-card h3,
.client-card h4,
.client-card p,
.client-card span,
.success-card h3,
.success-card h4,
.success-card p,
.success-card span {
    color: #0A2818 !important;
}

.testimonial-text,
.client-text {
    color: rgba(10, 40, 24, 0.85) !important;
}

.testimonial-author,
.client-name {
    color: #0D3520 !important;
    font-weight: 600 !important;
}

.testimonial-role,
.client-role {
    color: rgba(10, 40, 24, 0.7) !important;
}

/* Star ratings */
.testimonial-rating,
.rating,
.stars {
    color: #C9A961 !important;
}

.testimonial-rating i,
.rating i,
.stars i {
    color: #C9A961 !important;
}

/* Quote marks */
.testimonial-card::before,
.testimonial-quote::before {
    color: rgba(201, 169, 97, 0.3) !important;
}

/* ========================================
   WHO WE ARE / TEAM SECTION FIX
   ======================================== */

.who-we-are,
#who-we-are,
.team-section,
.our-team {
    background: linear-gradient(135deg, #0A2818 0%, #0D3520 100%) !important;
}

.who-we-are .section-header h2,
#who-we-are .section-header h2,
.team-section .section-header h2,
.our-team .section-header h2 {
    color: #FFFFFF !important;
}

.who-we-are .section-header p,
#who-we-are .section-header p,
.team-section .section-header p,
.our-team .section-header p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Team member cards */
.team-member,
.team-card,
.member-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(201, 169, 97, 0.3) !important;
}

.team-member h3,
.team-member h4,
.team-member p,
.team-card h3,
.team-card h4,
.team-card p,
.member-card h3,
.member-card h4,
.member-card p {
    color: #0A2818 !important;
}

.team-member-name,
.member-name {
    color: #0D3520 !important;
    font-weight: 600 !important;
}

.team-member-role,
.member-role {
    color: #C9A961 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.85rem !important;
}

.team-member-bio,
.member-bio {
    color: rgba(10, 40, 24, 0.8) !important;
}

/* ========================================
   MOBILE-FIRST LUXURY ENHANCEMENTS
   ======================================== */

/* Mobile Hero - Extra Luxury */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #0A2818 0%, #0D3520 50%, #134228 100%);
        padding: 120px 24px 80px;
    }
    
    .hero::before {
        background: 
            radial-gradient(circle at 30% 20%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(26, 82, 54, 0.2) 0%, transparent 50%);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    
    .title-highlight {
        font-size: 2.8rem;
        background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 50%, #C9A961 100%);
        background-size: 200% auto;
        animation: goldShimmer 4s linear infinite;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* Mobile Stats - Premium */
    .hero-stats {
        background: rgba(13, 53, 32, 0.5);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        border: 1px solid rgba(201, 169, 97, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        color: #C9A961;
        text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 1.5px;
    }
    
    /* Mobile Buttons - Luxury */
    .btn-primary {
        padding: 18px 40px;
        font-size: 1.05rem;
        border-radius: 4px;
        box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
        font-weight: 700;
    }
    
    .btn-primary:active {
        transform: scale(0.97);
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    }
    
    .btn-secondary {
        padding: 18px 40px;
        font-size: 1.05rem;
        border-radius: 4px;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
    
    .btn-secondary:active {
        transform: scale(0.97);
        background: rgba(255, 255, 255, 0.15);
    }
    
    /* Mobile Trust Badges - Premium */
    .trust-badge {
        padding: 0.75rem 1.25rem;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 8px;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        color: #FFFFFF !important;
    }
    
    /* Mobile Service Cards - Enhanced */
    .service-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Mobile Portfolio Cards - Luxury */
    .portfolio-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
    
    /* Mobile Contact Form - Premium */
    .contact-form {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        border: 1px solid rgba(201, 169, 97, 0.35);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        border-radius: 8px;
        font-size: 16px;
        border: 1px solid rgba(201, 169, 97, 0.3);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #C9A961;
        box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    }
    
    /* Mobile Navigation - Luxury */
    .nav-menu.active {
        background: rgba(10, 40, 24, 0.98);
        backdrop-filter: blur(30px);
        padding: 2rem 0;
    }
    
    .nav-link {
        padding: 1.25rem 2rem;
        font-size: 1.15rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.15);
        transition: all 0.3s ease;
    }
    
    .nav-link:active {
        background: rgba(201, 169, 97, 0.1);
        color: #C9A961;
    }
    
    /* Mobile Testimonials - Enhanced */
    .testimonial-card {
        padding: 2rem 1.75rem;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-rating {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile Team Cards - Premium */
    .team-member,
    .team-card {
        padding: 2rem 1.75rem;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .team-member-role {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        background: rgba(201, 169, 97, 0.15);
        border-radius: 20px;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    /* Mobile Smooth Scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile Touch Feedback - Enhanced */
    .btn,
    .service-card,
    .portfolio-item,
    .testimonial-card,
    .team-card {
        -webkit-tap-highlight-color: rgba(201, 169, 97, 0.2);
        touch-action: manipulation;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}


/* ========================================
   PREMIUM ABOUT SECTION - WOW ANIMATIONS
   ======================================== */

/* Animated Hero Header */
.about-hero-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(26, 82, 54, 0.1) 100%);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: none !important;
    position: relative;
    overflow: hidden;
}

.animated-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #C9A961;
    border-radius: 50%;
    animation: none !important;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
}

.badge-text {
    font-weight: 600;
    color: #0D3520;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

/* Animated Title */
.about-title-animated {
    font-family: var(--font-luxury);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: wordFadeIn 0.8s ease-out forwards;
    animation-delay: var(--delay);
    margin: 0 0.3rem;
}

.gradient-text {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: wordFadeIn 0.8s ease-out forwards, goldShimmer 3s linear infinite;
    animation-delay: var(--delay);
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Animated Stats Counter */
.stats-counter-animated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
}

.stat-box-animated {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-box-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.5s;
}

.stat-box-animated:hover::before {
    left: 100%;
}

.stat-box-animated:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.3);
}

.stat-icon-animated {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-number-animated {
    display: block;
    font-family: var(--font-luxury);
    font-size: 3rem;
    font-weight: 300;
    color: #0D3520;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-animated {
    font-size: 0.85rem;
    color: rgba(10, 40, 24, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Story Section */
.story-section {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 240, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.story-card.slide-in-left {
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.story-card.slide-in-right {
    animation: slideInRight 0.8s ease-out 0.6s forwards;
}

.story-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.2);
}

.story-icon {
    font-size: 3rem;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.story-content h4 {
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    color: #0D3520;
    margin-bottom: 1rem;
    font-weight: 400;
}

.story-content p {
    color: rgba(10, 40, 24, 0.85);
    line-height: 1.8;
    font-size: 1rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Leadership Showcase - Premium */
.leadership-showcase {
    margin: 5rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0A2818 0%, #0D3520 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.leadership-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 82, 54, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.leadership-title {
    text-align: center;
    font-family: var(--font-luxury);
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.title-icon {
    font-size: 2.5rem;
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

/* Leader Hero Card */
.leader-hero-card {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 240, 0.95) 100%);
    border-radius: 25px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.leader-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.leader-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.4);
}

.leader-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.leader-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.leader-hero-name {
    font-family: var(--font-luxury);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.leader-hero-name a {
    color: #0D3520;
    text-decoration: none;
    background: linear-gradient(135deg, #0D3520 0%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.leader-hero-name a:hover {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-hero-desc {
    font-size: 1.1rem;
    color: rgba(10, 40, 24, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

/* Executive Grid */
.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.executive-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.3);
    background: rgba(255, 255, 255, 1);
}

.executive-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.executive-card:hover .executive-avatar {
    transform: scale(1.1) rotate(5deg);
}

.executive-role {
    display: block;
    font-size: 0.75rem;
    color: #C9A961;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.executive-name {
    font-family: var(--font-luxury);
    font-size: 1.3rem;
    color: #0D3520;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.executive-desc {
    font-size: 0.9rem;
    color: rgba(10, 40, 24, 0.7);
    line-height: 1.5;
}

/* Mission Statement */
.mission-statement {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(26, 82, 54, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: missionPulse 4s ease-in-out infinite;
}

@keyframes missionPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.mission-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: none !important;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.mission-title {
    font-family: var(--font-luxury);
    font-size: 2rem;
    color: #0D3520;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.mission-text {
    font-size: 1.1rem;
    color: rgba(10, 40, 24, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.expertise-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.expertise-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.3);
    border-color: #C9A961;
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.expertise-item span {
    display: block;
    font-size: 0.9rem;
    color: #0D3520;
    font-weight: 600;
}

/* ========================================
   MOBILE OPTIMIZATIONS - PREMIUM
   ======================================== */

@media (max-width: 768px) {
    .about-hero-header {
        padding: 2rem 0;
    }
    
    .about-title-animated {
        font-size: 2rem;
    }
    
    .stats-counter-animated {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-box-animated {
        padding: 1rem;
    }
    
    .stat-icon-animated {
        font-size: 2rem;
    }
    
    .stat-number-animated {
        font-size: 2rem;
    }
    
    .story-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .story-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .leadership-showcase {
        padding: 2rem 1rem;
    }
    
    .leader-hero-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-hero-name {
        font-size: 1.8rem;
    }
    
    .executive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem 1.5rem;
    }
    
    .mission-icon-large {
        font-size: 3rem;
    }
    
    .mission-title {
        font-size: 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .expertise-item {
        padding: 1rem;
    }
    
    .expertise-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-counter-animated {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   SCROLL ANIMATIONS - INTERSECTION OBSERVER
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   MOBILE WOW FACTOR - TOUCH INTERACTIONS
   ======================================== */

/* Smooth Touch Scrolling */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(201, 169, 97, 0.2);
        -webkit-touch-callout: none;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile Hero - Extra Impact */
    .hero {
        min-height: 100svh;
        background: linear-gradient(135deg, #0A2818 0%, #0D3520 50%, #134228 100%);
    }
    
    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05));
        pointer-events: none;
    }
    
    /* Mobile Navigation - Premium */
    .nav-menu.active {
        animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Touch-Friendly Buttons */
    .btn {
        min-height: 48px;
        min-width: 120px;
        font-size: 1rem;
        padding: 14px 28px;
        touch-action: manipulation;
    }
    
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Service Cards - Mobile Touch */
    .service-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    /* Stats Counter - Mobile Optimized */
    .stats-counter-animated {
        padding: 2rem 1rem;
        gap: 1rem;
    }
    
    .stat-box-animated {
        padding: 1.25rem 1rem;
    }
    
    .stat-box-animated:active {
        transform: scale(0.95);
    }
    
    /* Story Cards - Mobile Touch */
    .story-card {
        padding: 1.5rem;
    }
    
    .story-card:active {
        transform: scale(0.98);
    }
    
    /* Leadership Cards - Mobile */
    .leader-hero-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-hero-card:active {
        transform: scale(0.98);
    }
    
    .executive-card:active {
        transform: scale(0.98);
    }
    
    /* Expertise Items - Mobile Touch */
    .expertise-item:active {
        transform: scale(0.95);
    }
    
    /* Mobile Scroll Snap */
    .services-grid,
    .portfolio-grid {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-card,
    .portfolio-item {
        scroll-snap-align: center;
    }
    
    /* Pull-to-Refresh Indicator */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 9999;
        pointer-events: none;
    }
    
    /* Mobile Loading States */
    .loading-shimmer {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(201, 169, 97, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%
        );
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }
    
    /* Mobile Floating Action Button */
    .mobile-fab {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
        z-index: 999;
        animation: fabPulse 2s ease-in-out infinite;
    }
    
    @keyframes fabPulse {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
        }
        50% {
            box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
        }
    }
    
    /* Mobile Bottom Sheet */
    .mobile-bottom-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .mobile-bottom-sheet.active {
        transform: translateY(0);
    }
    
    /* Mobile Swipe Indicator */
    .swipe-indicator {
        width: 40px;
        height: 4px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
        margin: 12px auto;
    }
    
    /* Mobile Card Stack Effect */
    .card-stack {
        position: relative;
    }
    
    .card-stack > * {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .card-stack > *:nth-child(1) {
        z-index: 3;
    }
    
    .card-stack > *:nth-child(2) {
        z-index: 2;
        transform: translateY(8px) scale(0.95);
        opacity: 0.8;
    }
    
    .card-stack > *:nth-child(3) {
        z-index: 1;
        transform: translateY(16px) scale(0.9);
        opacity: 0.6;
    }
    
    /* Mobile Parallax Layers */
    .parallax-layer {
        transition: transform 0.1s ease-out;
        will-change: transform;
    }
    
    /* Mobile Haptic Feedback Simulation */
    @keyframes hapticFeedback {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(0.98); }
    }
    
    .haptic-feedback:active {
        animation: hapticFeedback 0.1s ease;
    }
    
    /* Mobile Skeleton Loaders */
    .skeleton {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(201, 169, 97, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 75%
        );
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s infinite;
        border-radius: 8px;
    }
    
    @keyframes skeleton-loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    /* Mobile Sticky Header Enhancement */
    .navbar.scrolled {
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 2px 20px rgba(10, 40, 24, 0.8);
    }
    
    /* Mobile Safe Area Support */
    @supports (padding: max(0px)) {
        .hero,
        .navbar,
        .footer {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }
        
        .navbar {
            padding-top: max(1rem, env(safe-area-inset-top));
        }
        
        .footer {
            padding-bottom: max(2rem, env(safe-area-inset-bottom));
        }
    }
    
    /* Mobile Gesture Hints */
    .gesture-hint {
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 16px;
        background: rgba(10, 40, 24, 0.9);
        color: #FFFFFF;
        border-radius: 20px;
        font-size: 0.85rem;
        opacity: 0;
        animation: hintFadeIn 0.5s ease forwards;
        z-index: 999;
    }
    
    @keyframes hintFadeIn {
        to {
            opacity: 1;
        }
    }
    
    /* Mobile Performance Optimizations */
    .service-card,
    .portfolio-item,
    .story-card,
    .executive-card {
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Mobile Dark Mode Support */
    @media (prefers-color-scheme: dark) {
        .service-card,
        .portfolio-item,
        .story-card {
            background: linear-gradient(135deg, rgba(28, 28, 30, 0.95) 0%, rgba(44, 44, 46, 0.95) 100%);
            border-color: rgba(201, 169, 97, 0.4);
        }
        
        .stat-box-animated,
        .executive-card {
            background: rgba(28, 28, 30, 0.9);
        }
    }
}

/* ========================================
   MOBILE LANDSCAPE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-counter-animated {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 1rem;
    }
    
    .stat-box-animated {
        padding: 1rem 0.75rem;
    }
    
    .stat-number-animated {
        font-size: 2rem;
    }
}

/* ========================================
   TABLET OPTIMIZATIONS
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-counter-animated {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .story-section {
        gap: 2.5rem;
    }
    
    .executive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid #C9A961;
    outline-offset: 4px;
    border-radius: 4px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 3px solid currentColor;
    }
    
    .service-card,
    .portfolio-item,
    .story-card {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@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;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .scroll-progress,
    .mobile-fab {
        display: none !important;
    }
    
    .hero,
    .about,
    .services,
    .portfolio {
        page-break-inside: avoid;
    }
}


/* ========================================
   ENHANCED ANIMATIONS & EFFECTS - OPTIMIZED
   ======================================== */

/* Lightweight fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Reduced animation usage */
.service-card,
.portfolio-item {
    opacity: 1;
    transform: translateY(0);
}

/* Simplified glow effect - only on hover */
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

/* Lightweight pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.live-indicator,
.live-status {
    animation: pulse 2s ease-in-out infinite;
}

/* Simplified gradient - no animation by default */
.title-highlight {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   IMPROVED CARD HOVER EFFECTS - OPTIMIZED
   ======================================== */

.service-card,
.portfolio-item {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.portfolio-item:hover {
    transform: translateY(-5px);
}

/* ========================================
   ENHANCED MOBILE EXPERIENCE
   ======================================== */

@media (max-width: 768px) {
    /* Improve touch targets */
    .btn {
        min-height: 48px;
        font-size: 1.05rem;
    }
    
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Better spacing for mobile */
    .service-card,
    .portfolio-item {
        margin-bottom: 1.5rem;
    }
    
    /* Optimize text sizes for mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Improve button visibility on mobile */
    .btn-primary {
        background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
        box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus states for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #C9A961;
    outline-offset: 2px;
}

/* High contrast for better readability */
@media (prefers-contrast: high) {
    .hero-title,
    .section-header h2,
    .service-card h3 {
        font-weight: 700;
    }
    
    .btn-primary {
        border: 2px solid #0A2818;
    }
    
    .btn-secondary {
        border: 2px solid #FFFFFF;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .hero-buttons,
    .btn,
    .floating-elements {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .service-card,
    .portfolio-item {
        page-break-inside: avoid;
    }
}


/* ========================================
   SMALL DEVICE IMPROVEMENTS (< 480px)
   ======================================== */

@media (max-width: 480px) {
    /* Hero section */
    .hero {
        padding: 80px 15px 40px;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 2rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .title-highlight {
        font-size: 1.75rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    #rotating-text {
        font-size: 1.5rem;
        display: block;
        line-height: 1.4;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    /* Hero stats - single column on very small screens */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        min-height: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Trust badges */
    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-badge {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Benefits section */
    .benefits-section {
        padding: 3rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1.25rem;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    /* About section cubes */
    .stats-circular-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .stat-circle {
        height: 180px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Timeline */
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-card h5 {
        font-size: 1.1rem;
    }
    
    .timeline-card p {
        font-size: 0.9rem;
    }
    
    /* Hexagons */
    .executives-hexagon {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hexagon-card {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hexagon-shape {
        height: 220px;
    }
    
    /* Diamond leader */
    .diamond-shape {
        padding: 2.5rem 1.5rem;
    }
    
    .leader-name-large {
        font-size: 1.4rem;
    }
    
    /* Mission card */
    .mission-glass-card {
        padding: 2rem 1.25rem;
    }
    
    .mission-content h4 {
        font-size: 1.5rem;
    }
    
    .mission-content p {
        font-size: 0.95rem;
    }
    
    /* Bubbles */
    .bubbles-container {
        gap: 1.25rem;
    }
    
    .bubble {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .bubble-item span {
        font-size: 0.8rem;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   EXTRA SMALL DEVICES (< 360px)
   ======================================== */

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .service-card,
    .benefit-item {
        padding: 1.25rem 1rem;
    }
}
