/*
Theme Name: Tumira eKhaya Theme
Description: A modern WordPress theme for cross-border grocery delivery services - Send with love. Delivered with care
Version: 1.0
*/

/* 
TUMIRA EKHAYA - PROFESSIONAL COLOR SCHEME
========================================
Refined palette for trust, warmth, and cultural connection
*/

:root {
    /* Primary Brand Colors */
    --primary-teal: #2C5F5D;          /* Trust, stability, growth */
    --primary-coral: #E17B47;         /* Energy, warmth, connection */
    --primary-navy: #1E3A5F;          /* Authority, reliability, depth */
    
    /* Supporting Colors */
    --accent-gold: #D4A574;           /* Premium, heritage, warmth */
    --accent-green: #4A7C59;          /* Growth, prosperity, nature */
    --accent-warm-gray: #6B7280;      /* Balance, sophistication */
    
    /* Neutral Colors */
    --text-dark: #374151;             /* Primary text */
    --text-medium: #6B7280;           /* Secondary text */
    --text-light: #9CA3AF;            /* Tertiary text */
    --background-light: #F9FAFB;      /* Light backgrounds */
    --background-white: #FFFFFF;      /* Pure white */
    --border-color: #E5E7EB;          /* Subtle borders */
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--primary-coral));
    --gradient-warm: linear-gradient(135deg, var(--primary-coral), var(--accent-gold));
    --gradient-cool: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    padding-top: 100px; /* Push carousel below fixed navbar */
}

/* General Typography and Spacing */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

section {
    margin-bottom: 2rem;
}

/* Ensure proper spacing in grid layouts */
.grid, [style*="grid"] {
    gap: 2rem;
}

/* Fix text spacing in cards */
.glass-card h3,
.service-card h3,
.testimonial-card h3 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.glass-card p,
.service-card p,
.testimonial-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: var(--primary-teal);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(44, 95, 93, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    background: white;
    color: var(--text-dark);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-coral);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 123, 71, 0.3);
    border: none;
}

.btn-primary:hover {
    background: #D16A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 123, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-navy);
    font-weight: 700;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff8c42;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.step-number {
    background: #ff8c42;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* App Download Section */
.app-download {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    color: white;
    text-align: center;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-btn {
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.app-btn:hover {
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background: var(--primary-navy);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E5E7EB;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-section p {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9CA3AF;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-coral);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 0.8rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ffd700 !important;
}

.dropdown > a i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Mobile responsive dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        color: white !important;
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.1);
    }
}
/* Modern Homepage Enhancements */

/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Modern Hero Section */
.hero-section {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* Modern Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hero-stats > div {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stats > div:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

/* Modern Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #E17B47 0%, #D16A3A 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(225, 123, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(225, 123, 71, 0.4);
}

.btn-secondary {
    background: rgba(44, 95, 93, 0.1);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* Modern Section Styling */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-teal);
}

/* Special styling for titles in dark sections */
.value-proposition .section-title,
.value-proposition h2 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Special styling for subtitles in dark sections */
.value-proposition .section-subtitle,
.value-proposition p {
    color: rgba(255,255,255,0.9) !important;
}
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Service Cards */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,107,53,0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c42 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.15);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card .price-tag {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c42 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Modern Value Proposition Cards */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-teal) !important;
}

.value-card p {
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-dark) !important;
}

/* Special styling for glass cards in dark sections */
.glass-card {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.glass-card h3 {
    color: white !important;
    margin-bottom: 1rem;
    font-weight: 600;
}

.glass-card p {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: var(--primary-teal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 95, 93, 0.2);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.value-card:hover .value-icon::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Modern Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Modern FAQ Items */
.faq-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.1);
}

/* Modern Contact Section */
.contact-numbers a {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-numbers a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
    
    .service-card, .value-card, .testimonial-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Modern Glassmorphism Effects */
.glass-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Icon Visibility Enhancements */
.fas, .fab {
    color: inherit;
}

/* Ensure icons in buttons are visible */
.btn .fas, .btn .fab {
    color: white;
}

/* Ensure icons in dark backgrounds are visible */
.value-icon .fas, .value-icon .fab {
    color: white !important;
}

/* Contact info icons */
.footer-section .fas {
    color: var(--accent-gold) !important;
}

/* Navigation icons */
.nav-menu .fas, .nav-menu .fab {
    color: var(--primary-coral);
}

/* Service card icons */
.service-card .fas, .service-card .fab {
    color: white !important;
}

/* How it works step icons */
.how-it-works-section .fas {
    color: white !important;
}

/* WhatsApp widget icons */
#whatsapp-widget .fab {
    color: white !important;
}

/* Social media icons */
.social-icons .fab {
    color: #E5E7EB !important;
    transition: color 0.3s ease;
}

/* Header icons */
.header-actions .fas {
    color: white !important;
}

/* Ensure all icons have proper contrast */
.fas, .fab {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Modern Scroll Indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c42 100%);
    transform-origin: left;
    z-index: 9999;
}

/* Enhanced Button Visibility - Fix for white buttons on light backgrounds */
.btn {
    min-width: 150px !important;
}

.btn-primary {
    background: var(--primary-coral) !important;
    color: white !important;
    border: none !important;
}

.btn-primary:hover {
    background: #D16A3A !important;
    color: white !important;
}

.btn-secondary {
    background: transparent !important;
    color: var(--primary-teal) !important;
    border: 2px solid var(--primary-teal) !important;
}

.btn-secondary:hover {
    background: var(--primary-teal) !important;
    color: white !important;
}

/* Ensure all button icons are visible */
.btn .fas, .btn .fab {
    color: inherit !important;
}

/* Special styling for buttons on dark backgrounds */
.btn-on-dark {
    background: white !important;
    color: var(--primary-coral) !important;
}

.btn-on-dark:hover {
    background: #f8f9fa !important;
    color: var(--primary-coral) !important;
}

/* Fix for CTA sections with gradient backgrounds */
.cta-section .btn-primary {
    background: white !important;
    color: var(--primary-coral) !important;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa !important;
    color: var(--primary-coral) !important;
}

.cta-section .btn-secondary {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: 2px solid white !important;
}

.cta-section .btn-secondary:hover {
    background: white !important;
    color: var(--primary-coral) !important;
}

/* Hero section button fixes */
.hero-section .btn-primary {
    background: var(--primary-coral) !important;
    color: white !important;
}

.hero-section .btn-secondary {
    background: rgba(44, 95, 93, 0.1) !important;
    color: var(--primary-teal) !important;
    border: 2px solid var(--primary-teal) !important;
    backdrop-filter: blur(10px);
}

.hero-section .btn-secondary:hover {
    background: var(--primary-teal) !important;
    color: white !important;
}
/* Fix for hero stats text visibility */
.hero-stats .glass-card {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-stats .glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2) !important;
}

/* Ensure all stat text is visible */
.hero-stats div[style*="font-size: 0.9rem"] {
    color: #374151 !important;
    font-weight: 600 !important;
}

.hero-stats div[style*="font-size: 2.5rem"] {
    color: #2C5F5D !important;
}

/* General stat text visibility */
.stat-item h4, .stat-item p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.glass-card {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 95, 93, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
/* Hero Carousel Styles - Enhanced Visibility */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 0; /* Remove padding so image goes up to navbar */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.carousel-slide .hero-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    padding: 400px 0 2rem 0 !important; /* Move content down again */
}

.content-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.carousel-slide .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1E3A5F;
    text-shadow: none;
}

.carousel-slide .hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #374151;
    text-shadow: none;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-prev i,
.carousel-next i {
    font-size: 1.2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
}

.indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* Carousel Glass Cards */
.carousel-slide .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.carousel-slide .hero-stats .glass-card {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.carousel-slide .hero-stats .glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25) !important;
}

/* Carousel Buttons */
.carousel-slide .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.carousel-slide .btn-on-dark {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(10px);
}

.carousel-slide .btn-on-dark:hover {
    background: white !important;
    color: var(--primary-coral) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel {
        height: 100vh; /* Full height on mobile too */
        min-height: 500px;
        padding-top: 0; /* No padding on carousel */
    }
    
    /* Removed duplicate carousel-slide .hero-content rule - consolidated above */
    
    .carousel-slide .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .carousel-slide .hero-stats .glass-card {
        padding: 1rem;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-slide .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-slide .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Auto-play animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide.active .hero-text {
    animation: slideIn 0.8s ease-out;
}
/* Enhanced Carousel Trust & Emotional Elements - Bright Theme */
.trust-badge {
    background: linear-gradient(135deg, #2C5F5D, #E17B47);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeInDown 0.8s ease-out;
    box-shadow: 0 8px 25px rgba(44, 95, 93, 0.3);
}

.trust-badge i {
    color: #D4A574;
    font-size: 1.1rem;
}

.emotional-copy {
    font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    color: #374151 !important;
    text-shadow: none !important;
}

.emotional-copy strong {
    color: #E17B47;
    font-weight: 700;
    text-shadow: none;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(44, 95, 93, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid rgba(44, 95, 93, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-item i {
    color: #E17B47;
    font-size: 1rem;
}

/* Enhanced Buttons with Pulse Effect */
.pulse-btn {
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pulse-btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 123, 71, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 123, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 123, 71, 0);
    }
}

/* Testimonial Snippets */
.testimonial-snippet {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.testimonial-snippet p {
    color: white;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-snippet strong {
    color: #D4A574;
    font-weight: 600;
}

/* Enhanced Glass Cards with Better Visibility */
.carousel-slide .hero-stats .glass-card {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.carousel-slide .hero-stats .glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4A574, #E17B47);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.carousel-slide .hero-stats .glass-card:hover::before {
    transform: scaleX(1);
}

.carousel-slide .hero-stats .glass-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(212, 165, 116, 0.5);
}

/* Enhanced Navigation */
.carousel-prev,
.carousel-next {
    background: rgba(255,255,255,0.25) !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    color: white !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255,255,255,0.4) !important;
    transform: scale(1.15) !important;
    border-color: #D4A574 !important;
}

/* Enhanced Indicators */
.indicator {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255,255,255,0.5) !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator.active::before {
    width: 8px;
    height: 8px;
}

.indicator.active {
    border-color: white !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.indicator:hover {
    border-color: #D4A574 !important;
    transform: scale(1.2);
}

/* Animation Enhancements */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Enhanced Slide Transitions */
.carousel-slide.active .hero-text {
    animation: slideInContent 1s ease-out;
}

.carousel-slide.active .trust-badge {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.carousel-slide.active .hero-stats {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.carousel-slide.active .cta-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-item {
        justify-content: center;
        min-width: 200px;
    }
    
    .carousel-slide .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 60px !important;
        height: 60px !important;
    }
    
    .testimonial-snippet {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-snippet p {
        font-size: 0.9rem;
    }
}
/* Bright Theme Overrides for Carousel - Direct Text on Images */
.content-overlay {
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 3rem !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    border: none !important;
    text-align: center !important;
}

/* Duplicate carousel-slide .hero-content rule removed - using main rule above */

.carousel-slide .hero-text h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    font-weight: 800 !important;
}

.carousel-slide .hero-text p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
}

.carousel-slide .hero-stats .glass-card {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.carousel-slide .hero-stats .glass-card:hover {
    border-color: #E17B47 !important;
    box-shadow: 0 15px 40px rgba(225, 123, 71, 0.4) !important;
}

.testimonial-snippet {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.testimonial-snippet p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.testimonial-snippet strong {
    color: #D4A574 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.trust-item {
    color: white !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.trust-item i {
    color: #D4A574 !important;
}

.emotional-copy {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
}

.emotional-copy strong {
    color: #D4A574 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.trust-badge {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    color: white !important;
}

.trust-badge i {
    color: #D4A574 !important;
}

/* Better button visibility on image backgrounds */
.content-overlay .btn-secondary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

.content-overlay .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #2C5F5D !important;
}
/* Additional mobile fixes for navbar overlap */
@media (max-width: 768px) {
    .carousel-slide .hero-content {
        min-height: 100vh !important;
        padding: 140px 0 1rem 0 !important; /* Smaller top padding on mobile */
    }
    
    .carousel-slide .hero-text h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .carousel-slide .hero-text p {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .trust-indicators {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .testimonial-snippet {
        margin-top: 1rem !important;
        padding: 1rem !important;
    }
}

/* Ensure proper spacing from navbar on all screen sizes */
body {
    padding-top: 0 !important; /* Remove any default body padding */
}

.site-header {
    height: auto !important;
    min-height: 80px !important;
}

/* Fix for very small screens */
@media (max-width: 480px) {
    .hero-carousel {
        padding-top: 80px !important;
    }
    
    .carousel-slide .hero-content {
        min-height: 100vh !important;
        padding: 120px 0 1rem 0 !important; /* Even smaller padding for very small screens */
    }
}

/* Dark Section Text Visibility Fixes */
.value-proposition * {
    color: white;
}

.value-proposition .glass-card h3,
.value-proposition .glass-card p {
    color: white !important;
}

.value-proposition .value-card {
    background: rgba(255,255,255,0.95) !important;
}

.value-proposition .value-card h3 {
    color: var(--primary-teal) !important;
}

.value-proposition .value-card p {
    color: var(--text-dark) !important;
}

/* Ensure readability in all card types */
.service-card h3,
.testimonial-card h3 {
    color: var(--primary-teal) !important;
}

.service-card p,
.testimonial-card p {
    color: var(--text-dark) !important;
}

/* Fix any remaining white text on white background issues */
section:not(.value-proposition) .glass-card h3,
section:not(.value-proposition) .glass-card p {
    color: var(--text-dark) !important;
}
/* Ensure navbar text is visible on all carousel backgrounds */
.site-header .nav-menu a {
    color: #333 !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8) !important;
    font-weight: 600 !important;
}

.site-header .nav-menu a:hover {
    color: #E17B47 !important;
}

.site-header .logo {
    filter: drop-shadow(2px 2px 4px rgba(255,255,255,0.8));
}