/* ElectroLight - Premium Modern Stylesheet */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary-yellow: #F5C300;
    --primary-yellow-light: #FFE066;
    --primary-yellow-glow: rgba(245, 195, 0, 0.6);
    --dark-charcoal: #0D0D0D;
    --slate: #1A1A2E;
    --slate-light: #252542;
    --slate-glass: rgba(26, 26, 46, 0.7);
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --white: #FFFFFF;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1200px;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-charcoal);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.section-title span {
    color: var(--primary-yellow);
    text-shadow: 0 0 30px var(--primary-yellow-glow);
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   NAVIGATION - PREMIUM
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.logo:hover {
    text-shadow: 0 0 20px var(--primary-yellow-glow);
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 8px var(--primary-yellow-glow));
    transition: var(--transition);
    animation: bulbFlash 0.20s ease-in-out infinite;
}

.logo:hover svg {
    filter: drop-shadow(0 0 15px var(--primary-yellow-glow));
}

.logo span {
    color: var(--primary-yellow);
    text-shadow: 0 0 10px var(--primary-yellow-glow);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-yellow-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-yellow-glow);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-yellow);
}

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

.nav-cta {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--primary-yellow-glow);
}

.menu-toggle:hover span {
    box-shadow: 0 0 15px var(--primary-yellow-glow);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-yellow-glow);
}

.mobile-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-close svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 8px var(--primary-yellow-glow));
    transition: var(--transition);
}

.mobile-close:hover svg {
    filter: drop-shadow(0 0 15px var(--primary-yellow-glow));
}

/* ========================================
   HERO SECTION - PREMIUM
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark-charcoal);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.avif') center/cover no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.4) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 195, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 195, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 195, 0, 0.15) 0%, rgba(245, 195, 0, 0.08) 30%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 0.5s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.lightning {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, transparent, var(--primary-yellow), transparent);
    opacity: 0;
    animation: lightning 7s infinite;
}

.lightning:nth-child(1) { left: 15%; animation-delay: 0s; }
.lightning:nth-child(2) { left: 35%; animation-delay: 2.5s; }
.lightning:nth-child(3) { left: 55%; animation-delay: 4s; }
.lightning:nth-child(4) { left: 75%; animation-delay: 5.5s; }

@keyframes lightning {
    0%, 89%, 100% { height: 0; opacity: 0; }
    90% { height: 150px; opacity: 0.8; }
    92% { height: 200px; opacity: 0.4; }
    94% { height: 100px; opacity: 0.9; }
    96% { height: 0; opacity: 0; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 10;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #D4A800 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulseBadge 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.8); }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--primary-yellow);
    text-shadow: 
        0 0 10px var(--primary-yellow-glow),
        0 0 30px var(--primary-yellow-glow),
        0 0 60px var(--primary-yellow-glow);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 10px var(--primary-yellow-glow), 0 0 30px var(--primary-yellow-glow); }
    50% { text-shadow: 0 0 20px var(--primary-yellow-glow), 0 0 50px var(--primary-yellow-glow), 0 0 80px var(--primary-yellow-glow); }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-urgency {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.urgency-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 8px var(--primary-yellow-glow));
}

/* Premium Buttons */
.btn {
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #D4A800 100%);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-yellow);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.2),
        0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
    z-index: 10;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-bolt {
    width: 380px;
    height: 380px;
    animation: boltFloat 6s ease-in-out infinite, bulbFlash 0.20s ease-in-out infinite;
    filter: drop-shadow(0 0 40px var(--primary-yellow-glow));
}

@keyframes boltFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes bulbFlash {
    0% { 
        filter: drop-shadow(0 0 40px var(--primary-yellow-glow)) brightness(1);
        opacity: 1;
    }
    10% { 
        filter: drop-shadow(0 0 60px var(--primary-yellow-glow)) brightness(1.3);
        opacity: 1;
    }
    20% { 
        filter: drop-shadow(0 0 25px rgba(245, 195, 0, 0.4)) brightness(0.8);
        opacity: 0.9;
    }
    30% { 
        filter: drop-shadow(0 0 50px var(--primary-yellow-glow)) brightness(1.2);
        opacity: 1;
    }
    40%, 100% { 
        filter: drop-shadow(0 0 40px var(--primary-yellow-glow)) brightness(1);
        opacity: 1;
    }
}

.hero-bolt svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   SERVICES SECTION - GLASSMORPHISM
   ======================================== */
.services-section {
    background: linear-gradient(180deg, var(--slate) 0%, var(--dark-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    box-shadow: 0 0 20px var(--primary-yellow-glow);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--dark-charcoal));
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent, rgba(0, 212, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.1);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card.emergency {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.emergency-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-yellow);
    color: var(--dark-charcoal);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseBadge 2s ease-in-out infinite;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 10px var(--primary-yellow-glow));
    transition: var(--transition);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary-yellow-glow)); }
    50% { filter: drop-shadow(0 0 20px var(--primary-yellow-glow)); }
}

.service-card:hover .service-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

/* ========================================
   WHY CHOOSE US - PREMIUM
   ======================================== */
.why-us-section {
    background: var(--dark-charcoal);
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 50px 25px;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, transparent 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.3) 100%);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
    font-size: 2.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.feature-item:hover .feature-icon {
    background: var(--primary-yellow);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.2);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION - PREMIUM
   ======================================== */
.about-section {
    background: linear-gradient(180deg, var(--slate) 0%, var(--dark-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.03) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content h2 span {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-yellow-glow);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 35px;
}

.quote-callout {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-left: 4px solid var(--primary-yellow);
    padding: 35px;
    position: relative;
    border-radius: 0 12px 12px 0;
}

.quote-callout::before {
    content: '"';
    position: absolute;
    top: 5px;
    left: 25px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-yellow);
    opacity: 0.2;
    line-height: 1;
}

.quote-callout p {
    color: var(--white);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-style: italic;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    text-shadow: 0 0 20px var(--primary-yellow-glow);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   SERVICE AREA SECTION - PREMIUM
   ======================================== */
.area-section {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.area-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

.map-pulse {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.area-locations h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--white);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.6) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.location-list li:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.location-list svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 8px var(--primary-yellow-glow));
    flex-shrink: 0;
}

.location-list span {
    color: var(--text-light);
    font-size: 1rem;
}

.area-cta {
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.area-cta p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ========================================
   TESTIMONIALS - PREMIUM
   ======================================== */
.testimonials-section {
    background: var(--dark-charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-yellow);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 22px;
    letter-spacing: 6px;
    text-shadow: 0 0 10px var(--primary-yellow-glow);
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #D4A800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    box-shadow: 0 0 20px var(--primary-yellow-glow);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION - PREMIUM
   ======================================== */
.contact-section {
    background: linear-gradient(180deg, var(--dark-charcoal) 0%, var(--slate) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    box-shadow: 0 0 20px var(--primary-yellow-glow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.contact-form h2 span {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-yellow-glow);
}

.contact-form > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.15),
        0 0 40px rgba(0, 212, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    margin-top: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.info-card.urgent {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.urgent-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-yellow);
    color: var(--white);
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    text-shadow: 0 0 15px var(--primary-yellow-glow);
}

.info-card.urgent h3 {
    margin-top: 30px;
}

.info-card.urgent p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--primary-yellow);
    color: var(--white);
    padding: 18px 25px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: pulseBadge 2s ease-in-out infinite;
}

.emergency-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.emergency-phone svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-yellow);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px var(--primary-yellow-glow));
}

.info-item span,
.info-item a {
    color: var(--text-light);
    font-size: 1.05rem;
}

.info-item a:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 15px var(--primary-yellow-glow);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    color: var(--white);
    padding: 18px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.35),
        0 0 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* ========================================
   FOOTER - PREMIUM
   ======================================== */
.footer {
    background: var(--dark-charcoal);
    padding: 70px 0 35px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-yellow) 50%, transparent 100%);
    box-shadow: 0 0 20px var(--primary-yellow-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.footer-social a:hover svg {
    fill: var(--dark-charcoal);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-yellow);
    transition: var(--transition);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul a,
.footer-column ul span {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-column ul a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-yellow);
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--primary-yellow);
    padding-left: 8px;
}

.footer-column ul a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   ANIMATIONS - ELECTRIC FLASH OVERLAY
   ======================================== */
.electric-flash-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle, #fff9c4 0%, #f5c300 40%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.3);
}

.electric-flash-overlay.active {
    animation: electricFlash 0.6s ease-out forwards;
}

@keyframes electricFlash {
    0% { opacity: 0; transform: scale(0.3); }
    20% { opacity: 1; transform: scale(1.1); }
    40% { opacity: 0.8; }
    60% { opacity: 0.3; }
    100% { opacity: 0; transform: scale(1.5); }
}

.electric-flash-overlay.flicker {
    animation: flicker 0.15s ease-in-out 4, electricFlash 0.6s ease-out 0.6s forwards;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.2; }
    50% { opacity: 0.9; }
    75% { opacity: 0.1; }
}

.flash-bolt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
}

.flash-bolt.active {
    opacity: 1;
}

.flash-bolt svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 40px var(--primary-yellow)) drop-shadow(0 0 80px var(--primary-yellow));
}

.flash-bolt .bolt-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
}

.flash-bolt .ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 80px;
    background: linear-gradient(to top, var(--primary-yellow), transparent);
    transform-origin: bottom center;
    opacity: 0;
}

.flash-bolt.active .ray {
    animation: rayExpand 0.5s ease-out forwards;
}

@keyframes rayExpand {
    0% { opacity: 0; height: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; height: 100px; }
}

/* ========================================
   ANIMATIONS - CLICK RIPPLE
   ======================================== */
.click-ripple {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
}

.ripple-ring {
    position: absolute;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    animation: rippleExpand 0.4s ease-out forwards;
    transform: translate(-50%, -50%);
}

@keyframes rippleExpand {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

.ripple-spike {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-yellow), 0 0 20px var(--primary-yellow);
    transform: translate(-50%, -50%);
    animation: spikeBurst 0.4s ease-out forwards;
}

@keyframes spikeBurst {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-charcoal);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-yellow) 0%, #D4A800 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-yellow-light) 0%, var(--primary-yellow) 100%);
}

/* ========================================
   FOCUS STATES
   ======================================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 3px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-bolt {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-urgency {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .area-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .hero-urgency {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}