/* JKJ Solartech and Security - Premium Industrial Stylesheet */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary-yellow: #F5C300;
    --primary-yellow-light: #FFE066;
    --primary-yellow-glow: rgba(245, 195, 0, 0.4);
    --primary-yellow-soft: rgba(245, 195, 0, 0.06);
    --primary-yellow-border: rgba(245, 195, 0, 0.12);
    --dark-charcoal: #0A0A0A;
    --deep-navy: #0D0D1A;
    --slate: #12122A;
    --slate-light: #1E1E3A;
    --slate-glass: rgba(13, 13, 26, 0.8);
    --text-light: #F0F0F0;
    --text-muted: #999999;
    --text-dim: #666666;
    --white: #FFFFFF;
    
    --font-heading: 'Oswald', 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', '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
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p {
    line-height: 1.8;
    color: var(--text-muted);
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.025;
    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 24px;
}

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

.section:not(.hero):not(.page-header)::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-yellow);
    background: var(--primary-yellow-soft);
    border: 1px solid var(--primary-yellow-border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary-yellow);
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.05rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.05rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(245, 195, 0, 0.1);
    padding: 18px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(245, 195, 0, 0.2);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

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

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

.logo img {
    width: 43px;
    height: 43px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    display: inline-flex !important;
    padding: 12px 28px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

/* ========================================
   NAV DROPDOWN
   ======================================== */
.nav-dropdown {
    position: relative;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(245, 195, 0, 0.15);
    border-radius: 12px;
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(245, 195, 0, 0.1);
    color: var(--primary-yellow);
    padding-left: 20px;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

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

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    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: 0;
}

.mobile-menu li { border-bottom: 1px solid rgba(245, 195, 0, 0.06); }

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
}

.mobile-menu a:hover { color: var(--primary-yellow); }

.mobile-menu li a[href*="service-"] {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
    padding-left: 20px;
    opacity: 0.7;
}

.mobile-menu .nav-dropdown {
    position: relative;
}

.mobile-menu .nav-dropdown .nav-arrow {
    font-size: 0.8rem;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mobile-menu .nav-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}

.mobile-menu .nav-dropdown > .dropdown-menu {
    display: none;
    padding-left: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    position: static;
}

.mobile-menu .nav-dropdown.open > .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown-menu li {
    border-bottom: none;
}

.mobile-menu .dropdown-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 10px 0;
    text-transform: none;
    letter-spacing: 0;
}

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

.mobile-close svg {
    width: 28px; height: 28px;
    fill: var(--primary-yellow);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-charcoal);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 16px 32px;
    border: 2px solid var(--primary-yellow);
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 195, 0, 0.35);
    background: #FFD700;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid rgba(245, 195, 0, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 32px;
}

.btn-secondary:hover {
    color: var(--dark-charcoal);
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 195, 0, 0.15);
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(245, 195, 0, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 195, 0, 0.02) 0%, transparent 50%);
    z-index: 0;
}

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

.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: 80px 80px;
    animation: gridMove 60s linear infinite;
    opacity: 0.6;
}

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

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

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

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

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    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: 25%; animation-delay: 1.2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2.4s; }
.particle:nth-child(4) { left: 55%; animation-delay: 3.6s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4.8s; }
.particle:nth-child(6) { left: 85%; animation-delay: 6s; }
.particle:nth-child(7) { left: 15%; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 45%; animation-delay: 3s; }
.particle:nth-child(9) { left: 75%; animation-delay: 5.2s; }

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

.lightning {
    position: absolute;
    width: 1px;
    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: 40%; animation-delay: 2.5s; }
.lightning:nth-child(3) { left: 65%; animation-delay: 4.5s; }
.lightning:nth-child(4) { left: 80%; animation-delay: 5.8s; }

@keyframes lightning {
    0%, 89%, 100% { height: 0; opacity: 0; }
    90% { height: 120px; opacity: 0.6; }
    92% { height: 160px; opacity: 0.3; }
    94% { height: 80px; opacity: 0.7; }
    96% { height: 0; opacity: 0; }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow-soft);
    border: 1px solid var(--primary-yellow-border);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--primary-yellow);
}
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.85;
}

.hero-sub-slogan {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--primary-yellow-light);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
    margin-bottom: 24px !important;
}

.hero-nationwide {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nationwide-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 195, 0, 0.1);
    border: 1px solid rgba(245, 195, 0, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nationwide-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 16px;
    padding: 16px;
    background: rgba(245, 195, 0, 0.05);
    border-left: 3px solid var(--primary-yellow);
    border-radius: 0 8px 8px 0;
}

.nationwide-note {
    font-size: 0.85rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-weight: 500;
}

.emergency-nationwide {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

.footer-nationwide {
    font-size: 0.85rem;
    color: var(--primary-yellow);
    margin-top: 12px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trust-icon {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.2s both;
}

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

.hero-bulb {
    width: 320px;
    height: 320px;
    animation: bulbFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--primary-yellow-glow));
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    animation: fadeIn 1s ease-out 1.5s both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.4; } }

.hero-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.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);
}

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

.service-card {
    background: linear-gradient(160deg, rgba(18, 18, 42, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(245, 195, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(245, 195, 0, 0.15), transparent, rgba(245, 195, 0, 0.03));
    -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(-8px);
    border-color: rgba(245, 195, 0, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 195, 0, 0.05);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    fill: var(--primary-yellow);
    filter: drop-shadow(0 0 8px rgba(245, 195, 0, 0.2));
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(245, 195, 0, 0.35));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.service-card .card-best {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 12px;
    border-top: 1px solid rgba(245, 195, 0, 0.06);
    margin-top: auto;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.service-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

.service-card-bestfor {
    display: block;
    font-size: 0.78rem;
    color: var(--primary-yellow);
    font-weight: 500;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(245, 195, 0, 0.08);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 8px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

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

.services-grid .service-card {
    min-height: 320px;
}

.section-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--deep-navy);
    border-top: 1px solid rgba(245, 195, 0, 0.1);
    border-bottom: 1px solid rgba(245, 195, 0, 0.1);
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(245, 195, 0, 0.15);
}

.stat-card:last-child::after { display: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    border-top: 1px solid rgba(245, 195, 0, 0.06);
    border-bottom: 1px solid rgba(245, 195, 0, 0.06);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(245, 195, 0, 0.08);
    border-color: rgba(245, 195, 0, 0.2);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.badge-text span {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.trust-badge-card:hover {
    background: rgba(245, 195, 0, 0.08);
    border-color: rgba(245, 195, 0, 0.2);
    transform: translateY(-3px);
}

.badge-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.badge-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-card-content strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.badge-card-content span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

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

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.25) 0%, transparent 100%);
    border-radius: 14px;
    border: 1px solid rgba(245, 195, 0, 0.04);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: linear-gradient(180deg, rgba(245, 195, 0, 0.06) 0%, rgba(26, 26, 46, 0.25) 100%);
    border-color: rgba(245, 195, 0, 0.15);
    transform: translateY(-6px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.12);
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: rgba(245, 195, 0, 0.15);
    border-color: rgba(245, 195, 0, 0.3);
    transform: scale(1.05);
}

.feature-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 0.3px;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 160%;
    background: linear-gradient(135deg, transparent 40%, rgba(245, 195, 0, 0.02) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--white);
}

.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: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-content p:last-of-type {
    margin-bottom: 24px;
}

.quote-callout {
    background: linear-gradient(135deg, rgba(245, 195, 0, 0.08) 0%, rgba(245, 195, 0, 0.02) 100%);
    border-left: 3px solid var(--primary-yellow);
    padding: 24px 28px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
}

.quote-callout p {
    color: var(--white);
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.3px;
}

.about-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-cred {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cred-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition);
}

.cred-card:hover {
    border-color: rgba(245, 195, 0, 0.25);
    transform: translateY(-3px);
}

.cred-card .cred-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.cred-card .cred-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-yellow);
    font-weight: 600;
}

/* ========================================
   AREAS WE SERVE
   ======================================== */
.areas-section {
    background: linear-gradient(180deg, var(--slate) 0%, var(--dark-charcoal) 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.area-item {
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.08);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
}

.area-item:hover {
    background: rgba(245, 195, 0, 0.1);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

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

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

.testimonial-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.4) 0%, rgba(13, 13, 13, 0.6) 100%);
    backdrop-filter: blur(8px);
    padding: 32px 28px;
    border-radius: 14px;
    border: 1px solid rgba(245, 195, 0, 0.06);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(245, 195, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
    opacity: 0.7;
}

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

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(245, 195, 0, 0.06);
}

.testimonial-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-service {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    background: var(--primary-yellow-soft);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(245, 195, 0, 0.12);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.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);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--white);
}

.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: 32px;
    font-size: 1rem;
    line-height: 1.75;
}

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

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    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 16px rgba(245, 195, 0, 0.1);
}

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

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

.form-group select option {
    background: var(--dark-charcoal);
    color: var(--text-light);
}

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

.contact-form .btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.info-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 14px;
    padding: 28px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--primary-yellow);
    letter-spacing: 0.3px;
}

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

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

.info-item svg {
    width: 20px; height: 20px;
    fill: var(--primary-yellow);
    flex-shrink: 0;
    opacity: 0.8;
}

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

.info-item a:hover { color: var(--primary-yellow); }

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

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

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

.response-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #86efac;
}

.response-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   EMERGENCY BAND
   ======================================== */
.emergency-band {
    background: linear-gradient(135deg, #1a0a00 0%, #2d1500 50%, #1a0a00 100%);
    border-top: 1px solid rgba(245, 195, 0, 0.15);
    border-bottom: 1px solid rgba(245, 195, 0, 0.15);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
}

.emergency-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 195, 0, 0.04) 0%, transparent 70%);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.emergency-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.emergency-text {
    flex: 1;
}

.emergency-text h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 6px;
    text-shadow: 0 0 15px var(--primary-yellow-glow);
    letter-spacing: 0.3px;
}

.emergency-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.emergency-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    color: var(--white) !important;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

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

/* ========================================
   PAGE HEADER (Inner pages)
   ======================================== */
.page-header {
    padding: 160px 0 80px;
    background: var(--dark-charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 195, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 195, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 195, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 14px;
    position: relative;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 span {
    color: var(--primary-yellow);
    text-shadow: 0 0 25px var(--primary-yellow-glow);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.page-header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

.page-header-breadcrumb a {
    color: var(--primary-yellow);
    opacity: 0.7;
}

.page-header-breadcrumb a:hover { opacity: 1; }

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */
.service-detail-page {
    padding: 60px 0 100px;
    background: var(--dark-charcoal);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-detail-content h2 span {
    color: var(--primary-yellow);
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-detail-list {
    list-style: none;
    margin: 16px 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(245, 195, 0, 0.03);
    border: 1px solid rgba(245, 195, 0, 0.06);
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-light);
    font-size: 0.92rem;
}

.service-detail-list li:hover {
    background: rgba(245, 195, 0, 0.07);
    border-color: rgba(245, 195, 0, 0.15);
    transform: translateX(4px);
}

.service-detail-list li::before {
    content: '\26A1';
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 1px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-card {
    background: linear-gradient(160deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 14px;
    padding: 28px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--primary-yellow);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.sidebar-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.sidebar-cta-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.benefit-card {
    background: rgba(245, 195, 0, 0.04);
    border: 1px solid rgba(245, 195, 0, 0.08);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(245, 195, 0, 0.08);
    border-color: rgba(245, 195, 0, 0.2);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.benefit-card h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ========================================
   SERVICES HUB PAGE
   ======================================== */
.services-hub-section {
    padding: 60px 0 100px;
    background: var(--dark-charcoal);
}

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

.service-hub-card {
    background: linear-gradient(160deg, rgba(18, 18, 42, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.service-hub-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(245, 195, 0, 0.12), transparent, rgba(245, 195, 0, 0.03));
    -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-hub-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 195, 0, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(245, 195, 0, 0.05);
}

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

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

.service-hub-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 195, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.hub-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.hub-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-hub-card:hover .hub-card-icon {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(245, 195, 0, 0.3);
}

.hub-card-icon svg {
    width: 28px; height: 28px;
    fill: var(--primary-yellow);
    transition: fill 0.3s ease;
}

.service-hub-card:hover .hub-card-icon svg {
    fill: var(--dark-charcoal);
}

.hub-card-title h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.hub-card-title span {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hub-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hub-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.hub-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--primary-yellow-soft);
    border: 1px solid rgba(245, 195, 0, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 500;
}

.hub-card-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-hub-card:hover .hub-card-cta { gap: 12px; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-page {
    padding: 60px 0 80px;
    background: var(--dark-charcoal);
}

.about-page-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-page-content .about-content p {
    margin-bottom: 18px;
}

.about-page-content .about-content p:last-of-type {
    margin-bottom: 24px;
}

.values-section {
    background: linear-gradient(180deg, var(--slate) 0%, var(--dark-charcoal) 100%);
}

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

.value-card {
    background: rgba(245, 195, 0, 0.03);
    border: 1px solid rgba(245, 195, 0, 0.06);
    border-radius: 12px;
    padding: 30px 24px;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(245, 195, 0, 0.06);
    border-color: rgba(245, 195, 0, 0.15);
    transform: translateY(-5px);
}

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    padding: 60px 0 100px;
    background: var(--dark-charcoal);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-quick-section {
    padding: 36px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(13, 13, 13, 0.7) 100%);
    border-bottom: 1px solid rgba(245, 195, 0, 0.06);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 0 0 60px;
    background: var(--dark-charcoal);
}

.map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(245, 195, 0, 0.1);
    height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.9) brightness(0.4) contrast(1.2);
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.thankyou-content { max-width: 550px; margin: 0 auto; }

.thankyou-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 24px;
}

.thankyou-content h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--white);
}

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

.thankyou-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thankyou-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

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

.footer-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 195, 0, 0.06);
    border: 1px solid rgba(245, 195, 0, 0.12);
    border-radius: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

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

.footer-social svg {
    width: 18px; height: 18px;
    fill: var(--primary-yellow);
    transition: fill 0.3s ease;
}

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

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

.footer-column ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul a:hover {
    color: var(--primary-yellow);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(245, 195, 0, 0.06);
    text-align: center;
}

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

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

.footer-bottom a:hover { text-shadow: 0 0 12px var(--primary-yellow-glow); }

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #20BD5A;
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

.whatsapp-float-tooltip {
    position: absolute;
    right: 66px;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(245, 195, 0, 0.15);
    color: var(--white);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(25px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   BULB FLASH ANIMATIONS
   ======================================== */
.bulb-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);
}

.bulb-flash-overlay.active {
    animation: bulbFlash 0.6s ease-out forwards;
}

@keyframes bulbFlash {
    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); }
}

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

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

.flash-bulb svg {
    width: 100px; height: 100px;
    filter: drop-shadow(0 0 30px var(--primary-yellow));
}

.bulb-rays {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
}

.bulb-rays .ray {
    position: absolute;
    width: 2px;
    height: 50px;
    background: linear-gradient(to top, transparent, var(--primary-yellow));
    transform-origin: bottom center;
    opacity: 0;
}

.flash-bulb.active .bulb-rays .ray {
    animation: rayFlash 0.6s ease-out forwards;
}

@keyframes rayFlash {
    0% { opacity: 0; height: 0; }
    20% { opacity: 1; height: 50px; }
    100% { opacity: 0; height: 80px; }
}

/* ========================================
   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(245, 195, 0, 0.25) 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: 70px; height: 70px; opacity: 0; }
}

.ripple-spike {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px 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(1.5); opacity: 0; }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-charcoal); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-yellow) 0%, #D4A800 100%);
    border-radius: 4px;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2)::after { display: none; }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p { margin: 0 auto 28px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .hero-scroll { display: none; }

    .services-grid,
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .about-grid,
    .about-page-content,
    .contact-grid,
    .contact-page-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar { position: static; }
    .contact-info { position: static; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .emergency-content { flex-direction: column; text-align: center; }
    .emergency-actions { justify-content: center; }

    .page-header h1 { font-size: 2.5rem; }

    .service-benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none !important; }
    .menu-toggle { display: flex; }

    .section { padding: 80px 0; }
    .container { padding: 0 20px; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1rem; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
    .hero-trust { gap: 14px; flex-wrap: wrap; }
    .trust-item { font-size: 0.78rem; }

    .section-title { font-size: 2rem; }

    .services-grid,
    .services-page-grid { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: 1fr; }

    .trust-badges { grid-template-columns: repeat(2, 1fr); }
    .trust-badge { padding: 16px 18px; }

    .areas-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .area-item { padding: 10px 6px; font-size: 0.8rem; }

    .about-grid { gap: 40px; }
    .about-cred { grid-template-columns: 1fr 1fr; }
    .about-content h2 { font-size: 2rem; }

    .form-row { grid-template-columns: 1fr; }

    .emergency-actions { flex-direction: column; width: 100%; }
    .emergency-actions .btn { width: 100%; justify-content: center; }

    .section-cta { flex-direction: column; align-items: center; }
    .about-ctas { flex-direction: column; }
    .about-ctas .btn { width: 100%; justify-content: center; }

    .service-benefits-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-social { justify-content: center; }

    .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 26px; height: 26px; }

    .page-header { padding: 130px 0 60px; }
    .page-header h1 { font-size: 2rem; }

    .values-grid { grid-template-columns: 1fr; }

    .contact-form h2 { font-size: 2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-card::after { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .btn { padding: 14px 24px; font-size: 0.8rem; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .section-title { font-size: 1.7rem; }
    .about-cred { grid-template-columns: 1fr; }
    .trust-badges { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.8rem; }
}
