/* ============================================
   DENRAMA.NET HOME PAGE - MODERN & FAST
   Inspired by: Vercel, GitHub, Stripe
   ============================================ */

:root {
    --primary: #00d9ff;
    --primary-hover: #00b8d4;
    --secondary: #0099cc;
    --success: #22c55e;
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    --gradient-space: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #1a2a4a 100%);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE STYLES - Optimized for Performance
   ============================================ */

.home-wrapper {
    overflow-x: hidden;
    will-change: auto;
    background: var(--dark-bg, #0f172a);
    color: var(--dark-text, #f1f5f9);
    min-height: 100vh;
    /* Break out of container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 0;
    padding-right: 0;
}

body.light-mode .home-wrapper {
    background: var(--light-bg, #f8fafc);
    color: var(--light-text, #1e293b);
}

/* ============================================
   HERO SECTION - Minimalist Modern
   ============================================ */

.hero-section-modern {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #1a2a4a 100%);
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 10% 20%, #00d9ff, rgba(0, 217, 255, 0) 1px),
        radial-gradient(1px 1px at 30% 70%, #0099cc, rgba(0, 153, 204, 0) 1px),
        radial-gradient(1px 1px at 50% 30%, #00d9ff, rgba(0, 217, 255, 0) 1px),
        radial-gradient(1px 1px at 70% 80%, #0099cc, rgba(0, 153, 204, 0) 1px),
        radial-gradient(1px 1px at 90% 40%, #00d9ff, rgba(0, 217, 255, 0) 1px),
        radial-gradient(2px 2px at 20% 50%, #00d9ff, rgba(0, 217, 255, 0) 2px),
        radial-gradient(1.5px 1.5px at 80% 20%, #0099cc, rgba(0, 153, 204, 0) 1.5px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px, 400px 400px, 450px 450px, 500px 500px;
    background-repeat: repeat;
    animation: stars 20s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes stars {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

body.light-mode .hero-section-modern {
    background: linear-gradient(135deg, #e0f7ff 0%, #b3e5ff 50%, #81d4fa 100%);
}

body.light-mode .hero-section-modern::before {
    background-image: 
        radial-gradient(1px 1px at 10% 20%, #0099cc, rgba(0, 153, 204, 0) 1px),
        radial-gradient(1px 1px at 30% 70%, #0066aa, rgba(0, 102, 170, 0) 1px),
        radial-gradient(1px 1px at 50% 30%, #0099cc, rgba(0, 153, 204, 0) 1px),
        radial-gradient(1px 1px at 70% 80%, #0066aa, rgba(0, 102, 170, 0) 1px),
        radial-gradient(1px 1px at 90% 40%, #0099cc, rgba(0, 153, 204, 0) 1px),
        radial-gradient(2px 2px at 20% 50%, #0099cc, rgba(0, 153, 204, 0) 2px),
        radial-gradient(1.5px 1.5px at 80% 20%, #0066aa, rgba(0, 102, 170, 0) 1.5px);
    opacity: 0.4;
}

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

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #00d9ff;
    margin-bottom: 24px;
    transition: all 0.3s var(--transition-smooth);
}

body.light-mode .hero-badge-new {
    background: rgba(0, 150, 200, 0.1);
    color: #0099cc;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d9ff;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    }
}

.hero-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark-text, #f1f5f9);
    margin-bottom: 24px;
    animation: shine 4s ease-in-out infinite;
}

body.light-mode .hero-heading {
    color: var(--light-text, #1e293b);
}

.gradient-text-flow {
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 50%, #00b8d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shine {
    0% { text-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(0, 153, 204, 0.4); }
    100% { text-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
}

.hero-subheading {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--dark-text-secondary, #94a3b8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.light-mode .hero-subheading {
    color: var(--light-text-secondary, #64748b);
}

/* ============================================
   CTA BUTTONS - Modern Design
   ============================================ */

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-modern {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern-primary {
    background: var(--primary);
    color: #0a0e27;
    box-shadow: 0 4px 14px rgba(0, 217, 255, 0.4);
    font-weight: 700;
}

.btn-modern-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
    color: #0a0e27;
}

.btn-modern-secondary {
    background: transparent;
    color: var(--dark-text, #f1f5f9);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

body.light-mode .btn-modern-secondary {
    color: var(--light-text, #1e293b);
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-modern-secondary:hover {
    background: rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-2px);
    color: var(--primary);
}

/* ============================================
   TRUST BAR - Social Proof
   ============================================ */

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.trust-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

body.light-mode .trust-bar {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-percent {
    font-size: 1.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--dark-text-secondary, #94a3b8);
    font-weight: 500;
}

body.light-mode .trust-label {
    color: var(--light-text-secondary, #64748b);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

body.light-mode .trust-divider {
    background: rgba(0, 0, 0, 0.1);
}

/* ============================================
    HERO BACKGROUND - NASA/SpaceX Theme
    ============================================ */

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background: transparent;
    overflow: hidden;
}

.hero-bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.08) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 150% 80% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 150% 80% at 50% 50%, black 0%, transparent 80%);
    animation: gridFlow 8s linear infinite;
}

.hero-bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 217, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 153, 204, 0.1) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px;
    animation: dotsShift 15s linear infinite;
    opacity: 0.4;
}

@keyframes gridFlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes dotsShift {
    0% { background-position: 0 0, 50px 50px; }
    100% { background-position: 150px 150px, 250px 250px; }
}

body.light-mode .hero-bg-grid::before {
    background-image: 
        linear-gradient(rgba(0, 150, 200, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 200, 0.1) 1px, transparent 1px);
}

body.light-mode .hero-bg-grid::after {
    background-image: 
        radial-gradient(circle, rgba(0, 150, 200, 0.2) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 100, 180, 0.15) 1px, transparent 1px);
}

.hero-bg-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, #00d9ff, rgba(0, 217, 255, 0)),
        radial-gradient(1px 1px at 60% 70%, #0099cc, rgba(0, 153, 204, 0)),
        radial-gradient(1px 1px at 50% 50%, #00d9ff, rgba(0, 217, 255, 0)),
        radial-gradient(1px 1px at 80% 10%, #0099cc, rgba(0, 153, 204, 0)),
        radial-gradient(1px 1px at 90% 60%, #00d9ff, rgba(0, 217, 255, 0));
    background-size: 
        200% 200%,
        300% 300%,
        250% 250%,
        350% 350%,
        400% 400%;
    background-repeat: repeat;
    animation: starfield 60s linear infinite;
    opacity: 0.5;
}

.hero-bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 100% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 50%, black 30%, transparent 100%);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes starfield {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 200% 200%, 300% 300%, 250% 250%, 350% 350%, 400% 400%; }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

body.light-mode .hero-bg-grid {
    background: linear-gradient(135deg, #e0f7ff 0%, #b3e5ff 50%, #81d4fa 100%);
}

body.light-mode .hero-bg-grid::before {
    opacity: 0.2;
}

body.light-mode .hero-bg-grid::after {
    background-image: 
        linear-gradient(rgba(0, 150, 200, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 200, 0.08) 1px, transparent 1px);
}

/* ============================================
   SERVICES SECTION - Card Grid
   ============================================ */

.services-section-modern {
    padding: 100px 0;
    position: relative;
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

body.light-mode .section-tag {
    background: rgba(0, 150, 200, 0.1);
    color: #0099cc;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-text, #f1f5f9);
    margin-bottom: 16px;
}

body.light-mode .section-title {
    color: var(--light-text, #1e293b);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-text-secondary, #94a3b8);
    line-height: 1.6;
}

body.light-mode .section-subtitle {
    color: var(--light-text-secondary, #64748b);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card-modern {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

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

.service-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

body.light-mode .service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.25), inset 0 1px 0 rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.08);
}

body.light-mode .service-card-modern:hover {
    box-shadow: 0 20px 60px rgba(0, 153, 204, 0.2);
}

.service-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s var(--transition-smooth);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text, #f1f5f9);
    margin-bottom: 12px;
}

body.light-mode .service-title-modern {
    color: var(--light-text, #1e293b);
}

.service-desc-modern {
    font-size: 0.9375rem;
    color: var(--dark-text-secondary, #94a3b8);
    line-height: 1.6;
    margin-bottom: 20px;
}

body.light-mode .service-desc-modern {
    color: var(--light-text-secondary, #64748b);
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.15);
    color: #00d9ff;
    transition: all 0.3s var(--transition-smooth);
}

.service-card-modern:hover .service-arrow {
    background: var(--primary);
    color: #0a0e27;
    transform: translateX(4px);
}

.service-card-coming {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section-modern {
    padding: 80px 0;
    background: rgba(0, 217, 255, 0.03);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

body.light-mode .features-section-modern {
    background: rgba(0, 150, 200, 0.03);
    border-color: rgba(0, 150, 200, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item-modern {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--transition-smooth);
}

.feature-item-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: rgba(0, 217, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00d9ff;
    transition: all 0.3s var(--transition-bounce);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.feature-item-modern:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.feature-title-new {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text, #f1f5f9);
    margin-bottom: 8px;
}

body.light-mode .feature-title-new {
    color: var(--light-text, #1e293b);
}

.feature-desc-new {
    font-size: 0.9375rem;
    color: var(--dark-text-secondary, #94a3b8);
    line-height: 1.5;
}

body.light-mode .feature-desc-new {
    color: var(--light-text-secondary, #64748b);
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-section-modern {
    padding: 100px 0;
}

.map-wrapper-modern {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body.light-mode .map-wrapper-modern {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First
   ============================================ */

@media (max-width: 768px) {
    .hero-section-modern {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    
    .trust-divider {
        width: 60%;
        height: 1px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .services-section-modern,
    .features-section-modern,
    .location-section-modern {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .map-wrapper-modern {
        height: 350px;
    }
    
    .section-header-modern {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .service-card-modern {
        padding: 24px;
    }
    
    .trust-bar {
        padding: 20px;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Lazy load optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Will-change optimization - use sparingly */
.btn-modern:hover,
.service-card-modern:hover {
    will-change: transform;
}

.btn-modern:not(:hover),
.service-card-modern:not(:hover) {
    will-change: auto;
}

/* ============================================
   CTA SECTION - High Value
   ============================================ */

.cta-section-modern {
    padding: 0 0 100px;
}

.cta-box-modern {
    background: linear-gradient(135deg, #00d9ff 0%, #0066cc 100%);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
    margin: 0 auto;
    width: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-modern-primary {
    background: #ffffff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-buttons .btn-modern-primary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

/* Trust Icon Styles */
.trust-icon {
    font-size: 2rem;
    color: #00d9ff;
    margin-bottom: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-mode .trust-icon {
    color: #0099cc;
}

/* Refined Hero Heading for Light Mode */
body.light-mode .hero-heading {
    color: #0f172a; /* Darker text for better contrast */
}

body.light-mode .hero-subheading {
    color: #475569; /* Darker slate for better readability */
}

/* Refined Service Cards for Light Mode */
body.light-mode .service-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

body.light-mode .service-card-modern:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #0099cc;
}
