/* ================================================
   Win Win Solutions — New Corporate Design
   ================================================ */

/* ---------- Root Variables ---------- */
:root {
    --accent: #E53935;
    --accent-dark: #b71c1c;
    --accent-glow: rgba(229, 57, 53, 0.35);
    --bg-body: #06080f;
    --bg-surface: #0d1117;
    --bg-card: #111827;
    --bg-elevated: #1a2233;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(229,57,53,0.3);
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(.4,0,.2,1);
    --shadow-card: 0 8px 32px rgba(0,0,0,.45);
    --shadow-glow: 0 0 60px var(--accent-glow);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ---------- Global Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

img { max-width: 100%; height: auto; }

/* ---------- Utility ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Logo Wraps (white bg for dark-bg visibility) ---------- */
.logo-wrap {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    line-height: 0;
}
.about-logo-wrap {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 20px;
    line-height: 0;
}
.footer-logo-wrap {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    margin-bottom: 20px;
    line-height: 0;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,57,53,.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    top: -300px; left: -300px;
    transition: transform .15s ease-out;
    will-change: transform;
}

/* ---------- Mobile Overlay ---------- */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    z-index: 1040;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    background: rgba(10, 15, 22, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    transition: var(--transition);
    z-index: 1050;
}
.navbar.scrolled {
    background: rgba(10, 15, 22, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.navbar .navbar-brand img {
    height: 60px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-brand img {
    height: 45px;
}
.nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: .92rem;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 18px; right: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-cta {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: .9rem;
    transition: var(--transition);
}
.btn-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

/* Hamburger */
.navbar-toggler { border: none; padding: 6px; box-shadow: none !important; }
@media (min-width: 992px) {
    .navbar-toggler { display: none !important; }
}
.hamburger { width: 26px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span {
    display: block; height: 2.5px; width: 100%;
    border-radius: 2px; background: var(--text-primary);
    transition: var(--transition); transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* Mobile slide menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed; top: 0; right: -320px;
        width: 300px; height: 100vh;
        background: var(--bg-card);
        z-index: 1050;
        padding: 80px 30px 40px;
        transition: right .4s cubic-bezier(.4,0,.2,1), visibility .4s;
        box-shadow: -10px 0 40px rgba(0,0,0,.5);
        display: block !important;
        border-left: 1px solid var(--border);
        overflow-y: auto;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        visibility: hidden;
    }
    .navbar-collapse.show { right: 0; visibility: visible; }
    .mobile-nav-header {
        position: absolute; top: 20px; left: 30px; right: 30px;
        display: flex; justify-content: space-between; align-items: center;
    }
    .mobile-close-btn {
        background: none; border: none; font-size: 1.5rem;
        color: var(--text-secondary); cursor: pointer;
        transition: color .3s;
    }
    .mobile-close-btn:hover { color: var(--accent); }
    .navbar-collapse .nav-link {
        color: var(--text-secondary) !important;
        font-size: 1.1rem; padding: 14px 16px !important;
        margin: 2px 0; border-radius: var(--radius-sm);
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active { color: var(--accent) !important; background: rgba(229,57,53,.08); }
    .navbar-collapse .nav-link::after { display: none; }
    .navbar-collapse .btn-cta {
        width: 100%; margin-top: 20px; text-align: center;
    }
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(229,57,53,.12) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 60%, rgba(229,57,53,.06) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-body) 0%, #0a0e1a 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

/* Floating orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 { width: 400px; height: 400px; background: rgba(229,57,53,.15); top: 5%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(229,57,53,.08); bottom: 10%; right: 5%; animation-delay: -4s; }
.orb-3 { width: 200px; height: 200px; background: rgba(255,138,101,.1); top: 40%; right: 25%; animation-delay: -8s; }

@keyframes floatOrb {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -40px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; padding-top: 100px; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229,57,53,.08);
    border: 1px solid rgba(229,57,53,.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .85rem;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: .7; box-shadow: 0 0 0 8px transparent; }
}

/* Hero Heading */
.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #fff;
}

/* Hero Description */
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

/* Hero Buttons */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.btn-hero-primary {
    display: inline-flex; align-items: center;
    background: var(--accent); color: #fff;
    padding: 14px 30px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem; border: none;
    text-decoration: none;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-hero-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.btn-hero-primary:hover::before { transform: translateX(100%); }
.btn-hero-primary:hover {
    background: var(--accent-dark); color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-hero-ghost {
    display: inline-flex; align-items: center;
    background: transparent; color: var(--text-secondary);
    padding: 14px 30px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,.12);
    text-decoration: none;
    transition: var(--transition);
}
.btn-hero-ghost:hover {
    color: #fff; border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.04);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; gap: 32px;
    padding: 28px 36px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    max-width: 480px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-plus { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.stat-label { display: block; font-size: .8rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual - Animated Rings */
.hero-visual {
    position: relative;
    width: 100%; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
}
.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(229,57,53,.12);
}
.ring-1 { width: 100%; height: 100%; animation: spinRing 30s linear infinite; }
.ring-2 { width: 75%; height: 75%; border-color: rgba(229,57,53,.08); animation: spinRing 25s linear infinite reverse; }
.ring-3 { width: 50%; height: 50%; border-color: rgba(229,57,53,.15); animation: spinRing 20s linear infinite; border-style: dashed; }

@keyframes spinRing { to { transform: rotate(360deg); } }

.visual-center {
    position: relative; z-index: 2;
    width: 180px; height: 180px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(229,57,53,.15);
    box-shadow: 0 0 80px rgba(229,57,53,.1), var(--shadow-card);
}
.hero-logo-visual { width: 120px; height: auto; }

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2;
}
.hero-scroll-indicator span {
    font-size: .7rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); font-weight: 600;
}
.scroll-line {
    width: 1px; height: 40px; position: relative; overflow: hidden;
    background: rgba(255,255,255,.08);
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 50%;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%   { top: -50%; }
    100% { top: 120%; }
}

/* ================================================
   REAL ESTATE HIGHLIGHTS
   ================================================ */
.re-highlights {
    padding: 0 0 40px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}
.re-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.re-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.re-icon {
    width: 64px; height: 64px;
    background: rgba(229,57,53,.08);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}
.re-card:hover .re-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 20px var(--accent-glow);
}
.re-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.re-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: 120px 0;
    position: relative;
    background: var(--bg-body);
}

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}
.section-label::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 18px; height: 2px;
    background: var(--accent);
}

.section-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    color: var(--text-primary);
    margin-bottom: 0;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
    margin-left: auto;
}

/* Service Cards */
.svc-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
    cursor: default;
    will-change: transform;
}
.svc-card-glow {
    position: absolute; inset: 0;
    pointer-events: none;
    transition: background .3s ease;
    z-index: 0;
}
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff8a65);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px var(--border-hover);
}

.svc-number {
    position: absolute; top: 20px; right: 24px;
    font-size: 3.5rem; font-weight: 800;
    color: rgba(255,255,255,.03);
    line-height: 1;
    pointer-events: none;
    transition: color .4s ease;
}
.svc-card:hover .svc-number { color: rgba(229,57,53,.08); }

.svc-icon {
    position: relative; z-index: 1;
    width: 56px; height: 56px;
    background: rgba(229,57,53,.08);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 1.5rem; color: var(--accent);
    transition: var(--transition);
}
.svc-card:hover .svc-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 20px var(--accent-glow);
    border-radius: 50%;
    transform: scale(1.05);
}

.svc-title {
    position: relative; z-index: 1;
    font-size: 1.15rem; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.svc-list {
    position: relative; z-index: 1;
    list-style: none; padding: 0; margin: 0 0 24px;
}
.svc-list li {
    font-size: .9rem; color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
}
.svc-list li::before {
    content: '';
    position: absolute; left: 0; top: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .6;
}

.svc-arrow {
    position: relative; z-index: 1;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition);
}
.svc-card:hover .svc-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateX(4px);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

/* About left visual */
.about-visual-wrap {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-blob {
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(229,57,53,.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: blobPulse 6s ease-in-out infinite alternate;
}
@keyframes blobPulse {
    0%   { transform: translate(-50%,-50%) scale(1); opacity: .5; }
    100% { transform: translate(-50%,-50%) scale(1.15); opacity: .8; }
}

.about-card-stack { position: relative; z-index: 2; }

.about-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    width: 320px;
    margin: 0 auto;
}
.about-logo { height: 80px; }
.about-main-card h4 { font-weight: 700; margin-bottom: 4px; font-size: 1.2rem; }
.about-main-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.reg-badge {
    display: inline-block;
    background: rgba(229,57,53,.08);
    border: 1px solid rgba(229,57,53,.2);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-weight: 700;
    color: var(--accent);
    font-size: .85rem;
}

.about-mini-card {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-card);
    z-index: 3;
    animation: floatCard 5s ease-in-out infinite alternate;
}
.about-mini-card i { font-size: 1.3rem; color: var(--accent); }
.about-mini-card strong { display: block; font-weight: 700; color: var(--text-primary); font-size: .95rem; }
.about-mini-card span { font-size: .75rem; color: var(--text-muted); }

.amc-1 { top: -10px; left: -30px; animation-delay: 0s; }
.amc-2 { bottom: -10px; right: -30px; animation-delay: -2.5s; }
.amc-3 { bottom: -40px; left: -30px; animation-delay: -1.2s; }

.amc-img {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

@keyframes floatCard {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* About text side */
.about-text {
    font-size: 1.05rem; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 32px;
}

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 20px;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.about-feature:hover {
    border-color: var(--border-hover);
    background: rgba(229,57,53,.03);
}
.af-icon {
    flex-shrink: 0;
    color: var(--accent); font-size: 1.2rem;
    margin-top: 2px;
}
.about-feature strong {
    display: block; font-weight: 700; color: var(--text-primary);
    margin-bottom: 4px; font-size: .95rem;
}
.about-feature p {
    margin: 0; font-size: .88rem; color: var(--text-muted); line-height: 1.5;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0000 0%, var(--bg-body) 40%, var(--bg-body) 60%, #1a0505 100%);
}
.cta-bg-anim {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(229,57,53,.08) 0%, transparent 60%);
    animation: ctaPulse 4s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
    0%   { opacity: .5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.03); }
}

.cta-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.btn-cta-main {
    display: inline-flex; align-items: center;
    background: var(--accent); color: #fff;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem; border: none;
    text-decoration: none;
    transition: var(--transition);
}
.btn-cta-main:hover {
    background: var(--accent-dark); color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--accent-glow);
}
.btn-cta-outline {
    display: inline-flex; align-items: center;
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,.12);
    text-decoration: none;
    transition: var(--transition);
}
.btn-cta-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,.3);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: #030509;
    padding: 80px 0 30px;
    position: relative;
}
.footer-top-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .3;
}

.footer-logo {
    height: 65px;
}
.footer-desc {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: .95rem;
    text-decoration: none;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--accent); border-color: var(--accent);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px var(--accent-glow);
}

.footer-heading {
    font-weight: 700; font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: .3px;
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0; height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 0;
    transition: all .3s ease;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 16px;
}
.footer-links a:hover::before {
    width: 10px;
    margin-right: 6px;
}

.footer-contact {
    list-style: none; padding: 0; margin: 0;
}
.footer-contact li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px;
    font-size: .9rem;
    color: var(--text-muted);
}
.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .3s;
}
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .navbar {
        background: rgba(10, 15, 22, 0.85);
    }
    .navbar.scrolled {
        background: rgba(10, 15, 22, 0.95);
    }
    .hero-content { padding-top: 120px; }
    .hero-stats { gap: 20px; padding: 20px 24px; }
    .stat-number { font-size: 1.5rem; }
    .about-visual-wrap { min-height: 400px; margin-bottom: 40px; }
    .section-desc { margin-left: 0; margin-top: 12px; }
}
@media (max-width: 768px) {
    .services, .about, .cta-banner { padding: 80px 0; }
    .hero-stats { flex-direction: column; gap: 16px; max-width: 200px; }
    .stat-divider { width: 40px; height: 1px; }
    .section-heading { font-size: 1.8rem; }
    .about-mini-card { display: none; }
    .cursor-glow { display: none; }
}

/* ================================================
   LIGHT THEME SECTIONS
   ================================================ */
.theme-light { background: #ffffff !important; color: #333 !important; }
.theme-light .section-heading { color: #111827 !important; }
.theme-light .section-desc { color: #4b5563 !important; }

/* In a light section, keep cards dark for contrast */
.theme-light .svc-card { 
    background: var(--bg-card); 
    border-color: var(--border); 
    box-shadow: 0 8px 32px rgba(0,0,0,.15); 
}
.theme-light .svc-card:hover { 
    border-color: var(--border-hover); 
    box-shadow: 0 16px 48px rgba(0,0,0,.2), 0 0 0 1px var(--border-hover); 
}
.theme-light .svc-title { color: var(--text-primary) !important; }
.theme-light .svc-list li { color: var(--text-secondary) !important; }
.theme-light .svc-number { color: rgba(255,255,255,.05); }
.theme-light .svc-card:hover .svc-number { color: rgba(229,57,53,.08); }

.theme-light.cta-banner { background: linear-gradient(135deg, #fce4e4 0%, #ffffff 40%, #ffffff 60%, #fce4e4 100%) !important; color: #111827 !important; }
.theme-light.cta-banner h2 { color: #111827 !important; }
.theme-light.cta-banner p { color: #4b5563 !important; }

.theme-light .btn-cta-outline { color: #111827 !important; border-color: rgba(17, 24, 39, 0.2); }
.theme-light .btn-cta-outline:hover { color: #111827 !important; border-color: rgba(17, 24, 39, 0.6); }
