/* =============================================
   CARMA CCTV - Main Stylesheet
   ============================================= */

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

/* --- CSS Variables: Cavebells Theme (Green & White) --- */
:root {
    --primary:        #2D6A4F; /* Royal Oak inspired rich green */
    --primary-dark:   #1B4332;
    --primary-glow:   rgba(45, 106, 79, 0.15);
    --accent:         #D4AF37; /* Elegant gold accent */
    --bg:             #FFFFFF;
    --bg2:            #F8F9FA;
    --bg3:            #F1F3F5;
    
    /* Clean Cards (No heavy glass) */
    --glass-bg:       #FFFFFF;
    --glass-border:   #E9ECEF;
    --glass-shadow:   0 4px 20px rgba(0, 0, 0, 0.05);
    --glass-hover-bg: #FFFFFF;

    --card:           #FFFFFF;
    --card-hover:     #FFFFFF;
    --border:         #E9ECEF;
    --border-active:  #2D6A4F;
    --text:           #1e293b;
    --text-muted:     #475569;
    --text-dim:       #94a3b8;
    --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:   'Outfit', 'Inter', sans-serif;
    --radius-sm:      6px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --shadow-sm:      0 2px 10px rgba(0,0,0,0.03);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.06);
    --shadow-glow:    0 0 30px rgba(45,106,79,0.1);
    --transition:     all 0.3s ease-in-out;
}

/* Base Overrides for clean theme */
#navbar.scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E9ECEF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
}
.hero-overlay {
    background: transparent !important;
}
.lead-form-card {
    background: #FFFFFF !important;
    border: 1px solid #E9ECEF !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}
.lead-form-card .input-group input { 
    background: #F8F9FA !important; 
    color: #1e293b !important; 
    border-color: #DEE2E6;
}
.lead-form-card .input-group input:focus {
    background: #FFFFFF !important;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.stats-bar { background: transparent !important; }
.why-us   { background: transparent !important; }
.footer   { background: #F8F9FA !important; border-top: 1px solid #E9ECEF; }
.cta-bg   { background: transparent !important; }
.step-number { -webkit-text-stroke-color: rgba(45,106,79,0.2) !important; color: transparent; }
.why-big-card { 
    background: #FFFFFF !important;
    border-color: #E9ECEF;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.testimo-card.featured { 
    background: #FFFFFF !important; 
    border-color: rgba(45,106,79,0.3);
}
.service-card.highlighted { 
    background: #FFFFFF !important; 
    border-color: rgba(45,106,79,0.3);
    box-shadow: 0 8px 30px rgba(45,106,79,0.08);
}

/* Admin footer link styling */
.admin-footer-link { color: var(--primary) !important; font-weight: 600; }
.admin-footer-link:hover { opacity: 0.8; }


/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Utility --- */
/* Ambient Mesh Backgrounds */
.ambient-mesh {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    animation: meshDrift 20s infinite alternate ease-in-out;
}
.ambient-mesh.mesh-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -200px;
    left: -100px;
}
.ambient-mesh.mesh-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 98, 255, 0.15);
    bottom: 10%;
    right: -100px;
    animation-delay: -5s;
}
.ambient-mesh.mesh-3 {
    width: 700px;
    height: 700px;
    background: rgba(0, 229, 204, 0.1);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

body.light-mode .ambient-mesh.mesh-1 { background: rgba(0, 143, 128, 0.2); }
body.light-mode .ambient-mesh.mesh-2 { background: rgba(0, 82, 212, 0.15); }
body.light-mode .ambient-mesh.mesh-3 { background: rgba(0, 143, 128, 0.15); }

@keyframes meshDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #0062ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,229,204,0.1);
    border: 1px solid rgba(0,229,204,0.25);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.75;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #07080f;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,229,204,0.06);
}
.btn-xl { padding: 17px 38px; font-size: 17px; }
.btn-admin {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-admin:hover { color: var(--primary); border-color: var(--primary); }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img { height: 80px; width: auto; object-fit: contain; border-radius: 6px; }
.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 74px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(0, 229, 204, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 70%, rgba(0, 98, 255, 0.06) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(7,8,15,0.3) 0%, rgba(7,8,15,0.7) 60%, rgba(7,8,15,1) 100%);
}

/* Animated grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,204,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,204,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 40px;
}
.hero-text { flex: 1; max-width: 580px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,229,204,0.08);
    border: 1px solid rgba(0,229,204,0.25);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-text h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 22px;
}
.hero-text h1 span { color: var(--primary); -webkit-text-fill-color: unset; }
.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
}
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.hf-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Lead Form Card */
.lead-form-wrapper { flex-shrink: 0; width: 440px; }
.lead-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: var(--transition);
}
.lead-form-card:hover { 
    box-shadow: var(--glass-shadow), var(--shadow-glow); 
    background: var(--glass-hover-bg);
}
.form-header { text-align: center; margin-bottom: 30px; }
.form-icon { font-size: 36px; margin-bottom: 12px; }
.form-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.form-header p { font-size: 13px; color: var(--text-muted); }
.input-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.input-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.input-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}
.input-group input::placeholder { color: var(--text-dim); }
.input-group input:focus {
    border-color: var(--primary);
    background: rgba(0,229,204,0.04);
    box-shadow: 0 0 0 3px rgba(0,229,204,0.1);
}
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: #07080f;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}
.btn-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,229,204,0.35);
    transform: translateY(-1px);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-msg { text-align: center; padding: 10px; font-weight: 600; font-size: 14px; margin-top: 10px; border-radius: var(--radius-sm); display: none; }
.form-msg.success { background: rgba(0,229,204,0.1); color: var(--primary); display: block; }
.form-msg.error { background: rgba(255,60,60,0.1); color: #ff6b6b; display: block; }
.form-disclaimer { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 14px; }

/* --- Radio Pill Selector --- */
.form-radio-group { margin-bottom: 14px; }
.radio-group-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}
.radio-group-hint {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.4;
}
.radio-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.radio-pill {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.radio-pill input[type="radio"] {
    display: none;
}
.radio-pill span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--bg2);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}
.radio-pill:hover span {
    border-color: var(--primary);
    color: var(--primary);
}
.radio-pill input[type="radio"]:checked + span,
.radio-pill.active span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* --- Terms Checkbox --- */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    margin: 10px 0 14px;
    cursor: pointer;
    line-height: 1.5;
}
.terms-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}
.terms-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

/* Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particles span {
    position: absolute;
    display: block;
    width: 3px; height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: float linear infinite;
}
.particles span:nth-child(1) { left: 10%; top: 80%; animation-duration: 12s; animation-delay: 0s; }
.particles span:nth-child(2) { left: 25%; top: 60%; animation-duration: 18s; animation-delay: 2s; width:2px; height:2px; }
.particles span:nth-child(3) { left: 50%; top: 90%; animation-duration: 14s; animation-delay: 4s; }
.particles span:nth-child(4) { left: 75%; top: 70%; animation-duration: 20s; animation-delay: 1s; width:4px; height:4px; opacity:0.2; }
.particles span:nth-child(5) { left: 90%; top: 85%; animation-duration: 16s; animation-delay: 3s; }
@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { opacity: 0.15; }
    100% { transform: translateY(-80vh) translateX(30px); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: transparent;
    padding: 48px 0;
    position: relative;
    z-index: 2;
}
.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}
.stat-item { text-align: center; }
.stat-item h3 {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-display);
    display: inline;
}
.stat-item span { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat-item p { font-size: 14px; color: var(--text-muted); margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: 120px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    cursor: default;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.2), var(--shadow-glow); 
    background: var(--glass-hover-bg);
}
.service-card:hover::before { opacity: 1; }
.service-card.highlighted {
    background: linear-gradient(135deg, rgba(0,229,204,0.08) 0%, rgba(0,98,255,0.05) 100%);
    border-color: var(--border-active);
}
.service-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(0,229,204,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(0,229,204,0.2);
}
.service-icon { font-size: 26px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.service-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,229,204,0.1);
    border: 1px solid rgba(0,229,204,0.2);
    padding: 3px 10px;
    border-radius: 20px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    padding: 100px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}
.steps-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}
.step-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
}
.step-card:hover { 
    background: var(--glass-hover-bg); 
    transform: translateY(-4px);
}
.step-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,229,204,0.3);
    margin-bottom: 16px;
    line-height: 1;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-arrow { font-size: 28px; color: var(--border-active); flex-shrink: 0; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.why-big-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
}
.pulse-ring {
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(0,229,204,0.15);
    animation: expandRing 3s infinite ease-out;
}
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px solid rgba(0,229,204,0.1);
    animation: expandRing 3s 1s infinite ease-out;
}
@keyframes expandRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}
.why-center-icon { font-size: 64px; margin-bottom: 24px; }
.why-big-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.why-card-sub { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }
.why-badges { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.why-badges span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0,229,204,0.08);
    border: 1px solid rgba(0,229,204,0.2);
    padding: 6px 16px;
    border-radius: 50px;
}
.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}
.why-item:hover { 
    background: var(--glass-hover-bg); 
    transform: translateX(4px);
}
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 120px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}
.testimo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
    text-align: left;
}
.testimo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
}
.testimo-card.featured {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.2);
}
body.light-mode .testimo-card.featured {
    background: rgba(255, 255, 255, 0.85);
}
.testimo-card:hover { 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-md), var(--shadow-glow); 
    background: var(--glass-hover-bg);
}
.stars { font-size: 18px; color: #ffc842; margin-bottom: 18px; letter-spacing: 2px; }
.testimo-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimo-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #07080f;
    flex-shrink: 0;
}
.testimo-author strong { display: block; font-size: 15px; font-weight: 700; }
.testimo-author span { font-size: 13px; color: var(--text-muted); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}
.cta-content { 
    position: relative; 
    z-index: 1; 
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--glass-shadow);
}
.cta-content h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.cta-content p { font-size: 20px; color: var(--text-muted); margin-bottom: 44px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.cta-trust span::before { content: ''; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #050608;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}
.footer-brand .logo-text { font-size: 24px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); background: rgba(0,229,204,0.08); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.contact-list { color: var(--text-muted); font-size: 14px; }
.contact-list li { color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dim);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-dim); transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .testimo-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
    .steps-grid { flex-wrap: wrap; }
    .step-arrow { display: none; }
}

@media (max-width: 860px) {
    /* Form comes FIRST on mobile */
    .hero-content { flex-direction: column; text-align: center; padding: 80px 16px 100px; }
    .lead-form-wrapper { order: -1; width: 100%; max-width: 100%; }
    .hero-text { order: 0; }
    .hero-features { justify-content: center; }
    .stats-container { flex-wrap: wrap; gap: 32px; }
    .stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .nav-links, .nav-cta { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: #ffffff; padding: 20px; gap: 4px; border-bottom: 1px solid #E9ECEF; z-index: 998; }
    .nav-cta.open { display: flex; flex-direction: column; padding: 0 20px 20px; background: #ffffff; gap: 10px; z-index: 998; }
    .hamburger { display: flex; }
    .hamburger span { background: var(--text); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .input-row { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    /* Bottom nav padding so content doesn't hide behind mobile bottom nav */
    body { padding-bottom: 70px; }
    .footer { padding-bottom: 80px; }
    /* Mobile app-like cards */
    .service-card { border-radius: 16px; padding: 20px 16px; }
    .service-icon-wrap { width: 44px; height: 44px; margin-bottom: 14px; }
    .service-icon { font-size: 22px; }
    .service-card h3 { font-size: 15px; }
    .service-card p { font-size: 13px; }
    .section-title { font-size: 24px; }
    .section-sub { font-size: 15px; margin-bottom: 32px; }
    /* Floating buttons visible on all screens */
    .floating-actions { right: 16px; bottom: 90px; }
    /* Mobile bottom nav visible */
    .mobile-bottom-nav { display: flex; }
}

/* =============================================
   PREMIUM HIGHLIGHT SECTION
   ============================================= */
.premium-highlight {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.highlight-card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: var(--transition);
}
.highlight-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), var(--shadow-glow);
    transform: translateY(-4px);
}
.highlight-content {
    flex: 1;
    padding: 60px;
}
.highlight-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff007b 0%, #ff6a00 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.3);
}
.highlight-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}
.highlight-features {
    margin-bottom: 36px;
}
.highlight-features li {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 229, 204, 0.15);
    color: var(--primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}
.highlight-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.highlight-social-proof {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stars {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}
.rating-text {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    margin-left: 8px;
}
.proof-stats {
    font-size: 13px;
    color: var(--text-muted);
}
.highlight-visual {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}
.highlight-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.highlight-card:hover .highlight-img {
    transform: scale(1.05);
}
.visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--glass-bg) 0%, transparent 100%);
}

@media (max-width: 992px) {
    .highlight-card {
        flex-direction: column;
    }
    .highlight-visual {
        width: 100%;
        min-height: 300px;
    }
    .visual-glow {
        background: linear-gradient(180deg, var(--glass-bg) 0%, transparent 100%);
    }
    .highlight-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   FLOATING ACTION BUTTONS (Call / WhatsApp)
   ============================================= */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.fab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.fab-icon { font-size: 18px; }
.fab-call {
    background: var(--primary);
}
.fab-whatsapp {
    background: #25D366;
}

/* =============================================
   MOBILE BOTTOM NAVIGATION BAR
   ============================================= */
.mobile-bottom-nav {
    display: none; /* shown via media query */
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 995;
    background: #ffffff;
    border-top: 1px solid #E9ECEF;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    justify-content: space-around;
    align-items: center;
    height: 64px;
    padding: 0 8px;
}
.mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    text-decoration: none;
    color: #94a3b8;
    padding: 8px 4px;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}
.mbn-item.active,
.mbn-item:hover {
    color: var(--primary);
}
.mbn-icon { font-size: 22px; line-height: 1; }
.mbn-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3px; font-family: var(--font-display); }

/* Center "Quote" pill button */
.mbn-center {
    background: var(--primary);
    color: #fff !important;
    border-radius: 16px;
    padding: 10px 8px;
    margin-top: -16px;
    box-shadow: 0 4px 16px rgba(45,106,79,0.3);
    min-width: 58px;
}
.mbn-center .mbn-icon { font-size: 20px; }
.mbn-center:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Extra small mobile tweaks */
@media (max-width: 420px) {
    .fab-label { display: none; }
    .fab { padding: 13px; border-radius: 50%; }
    .fab-icon { font-size: 20px; margin: 0; }
    .fab { gap: 0; }
}
