/* ============================================
   RIGHT WAY TYPING CENTER — PREMIUM STYLESHEET
   Modern/Bold Professional Design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #C62828;
    --primary-dark: #8E0000;
    --primary-light: #FF5F52;
    --secondary: #0D1B2A;
    --secondary-light: #1B2D45;
    --accent: #C62828;
    --accent-hover: #A51C1C;
    --gold: #D4A437;
    --success: #25D366;
    --bg: #FAFBFC;
    --bg-alt: #F0F2F5;
    --text: #1A1A2E;
    --text-light: #5A6178;
    --text-muted: #8B93A7;
    --border: #E2E6ED;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(13,27,42,0.06);
    --shadow: 0 4px 20px rgba(13,27,42,0.08);
    --shadow-lg: 0 8px 40px rgba(13,27,42,0.12);
    --shadow-xl: 0 20px 60px rgba(13,27,42,0.15);
    --shadow-accent: 0 8px 30px rgba(198,40,40,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--secondary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 80px 0; }

/* ---------- Gradient Text ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Tag ---------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(198,40,40,0.08), rgba(198,40,40,0.04));
    border: 1px solid rgba(198,40,40,0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag i { font-size: 14px; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-heading); font-weight: 600; border-radius: var(--radius); padding: 10px 24px; transition: var(--transition); letter-spacing: 0.3px; }
.btn-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(198,40,40,0.35);
}
.btn-outline-accent {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-accent:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 14px; }
.btn-nav { padding: 10px 22px; font-size: 14px; border-radius: 50px; }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 20px; animation: preloaderPulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.preloader-bar-fill, .preloader-progress { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 3px; transition: width 0.3s; }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--primary-light); font-size: 12px; }
.top-bar-right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.top-bar-right a { color: rgba(255,255,255,0.85); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.top-bar-right a:hover { color: var(--primary-light); }
.top-bar-right i { font-size: 12px; color: var(--primary-light); }
.top-social { display: flex; gap: 12px; }
.top-social a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); font-size: 12px; }
.top-social a:hover { background: var(--primary); color: var(--white); }

/* ---------- Navbar ---------- */
.navbar {
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
    top: 38px;
    z-index: 1040;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    padding: 8px 0;
    top: 38px;
}
.navbar.scrolled.nav-top { top: 0; }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(198,40,40,0.15);
}
.navbar.scrolled .logo-img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--secondary);
}
.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.navbar:not(.scrolled) .brand-name { color: var(--white); }
.navbar:not(.scrolled) .brand-sub { color: rgba(255,255,255,0.7); }
.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text) !important;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.2px;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary) !important; font-weight: 600; }

/* Toggler */
.navbar-toggler { border: none; padding: 8px; background: transparent; box-shadow: none !important; }
.toggler-icon { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.toggler-icon span { display: block; width: 100%; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.navbar:not(.scrolled) .toggler-icon span { background: var(--white); }

/* ---------- Mega Menu ---------- */
.mega-dropdown { position: static; }
.mega-menu {
    width: 100%;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0;
    margin-top: 0;
    border-top: 3px solid var(--primary);
    background: var(--white);
    animation: fadeInDown 0.3s ease;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 0;
    padding: 30px;
}
.mega-col { padding: 0 20px; }
.mega-col:not(:last-child) { border-right: 1px solid var(--border); }
.mega-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.mega-menu .dropdown-item {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.mega-menu .dropdown-item i { font-size: 18px; color: var(--primary); width: 24px; text-align: center; }
.mega-menu .dropdown-item:hover, .mega-menu .dropdown-item.active {
    background: rgba(198,40,40,0.06);
    color: var(--primary);
}
.mega-cta-col { display: flex; align-items: center; }
.mega-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    width: 100%;
    color: var(--white);
}
.mega-cta i { font-size: 32px; color: var(--primary-light); margin-bottom: 10px; display: block; }
.mega-cta h6 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.mega-cta p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--secondary) 0%, #162235 40%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.hero-shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--gold); bottom: -150px; left: -100px; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--primary-light); top: 40%; left: 30%; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(198,40,40,0.15);
    border: 1px solid rgba(198,40,40,0.25);
    border-radius: 50px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-badge i { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, #FF8A80 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-typed {
    color: var(--primary-light);
    border-right: 3px solid var(--primary-light);
    padding-right: 4px;
    animation: blink 0.7s infinite;
}
@keyframes blink { 0%,100% { border-color: var(--primary-light); } 50% { border-color: transparent; } }
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-buttons .btn-light {
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-buttons .btn-light:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.hero-buttons .btn-outline-light { border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero-buttons .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Hero Trust Stats */
.hero-trust { display: flex; gap: 40px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}
.trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Floating Cards */
.hero-visual { position: relative; }
.hero-logo-showcase {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(20px);
}
.hero-logo-showcase img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    animation: heroFloat 3s ease-in-out infinite;
}
.hero-floating-card i { font-size: 20px; color: var(--primary-light); }
.hero-floating-card:nth-child(2) { top: 10%; right: -20px; animation-delay: 0s; }
.hero-floating-card:nth-child(3) { bottom: 20%; left: -40px; animation-delay: 1s; }
.hero-floating-card:nth-child(4) { bottom: 0%; right: 10%; animation-delay: 2s; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee Section ---------- */
.marquee-section {
    padding: 24px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-item i { color: var(--primary); font-size: 18px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .sc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}
.service-card h5 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; }
.sc-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    font-family: var(--font-heading);
}
.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-top: 14px;
}
.sc-link i { transition: transform 0.3s; }
.sc-link:hover i { transform: translateX(4px); }

/* ---------- Mini Cards ---------- */
.mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    height: 100%;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(198,40,40,0.2); }
.mini-card .mc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.mini-card h6 { font-size: 14px; margin-bottom: 2px; }
.mini-card .mc-price { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ---------- Feature Cards (Service Detail Pages) ---------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(198,40,40,0.15); }
.fc-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}
.feature-card:hover .fc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.08);
}
.feature-card h5 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-light); margin-bottom: 14px; }
.fc-price {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(198,40,40,0.08), rgba(198,40,40,0.03));
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-accent);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card .pc-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 18px;
}
.pricing-card.featured .pc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.pricing-card h5 { font-size: 18px; margin-bottom: 6px; }
.pricing-card .pc-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card .pc-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}
.pricing-card .pc-price small { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.pricing-card .pc-currency { font-size: 18px; font-weight: 600; }

/* ---------- Value Cards (About page) ---------- */
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card.featured { border-color: var(--primary); background: linear-gradient(135deg, rgba(198,40,40,0.02), var(--white)); }
.value-card .vc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 16px;
}
.value-card.featured .vc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

/* ---------- Process Section ---------- */
.process-section {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.04;
}
.process-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(198,40,40,0.15);
    border: 2px solid rgba(198,40,40,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-light);
    margin: 0 auto 18px;
}
.process-card h5 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.process-card p { color: rgba(255,255,255,0.55); font-size: 14px; }

/* ---------- Testimonials (Swiper) ---------- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(198,40,40,0.1);
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}
.tc-stars { color: #FFC107; font-size: 14px; margin-bottom: 14px; }
.tc-text { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
}
.tc-name { font-weight: 700; font-size: 14px; }
.tc-role { font-size: 12px; color: var(--text-muted); }

/* Swiper Overrides */
.swiper { padding-bottom: 50px !important; }
.swiper-pagination-bullet { background: var(--primary); width: 10px; height: 10px; }
.swiper-pagination-bullet-active { width: 28px; border-radius: 5px; }

/* ---------- About Visual ---------- */
.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-wrapper {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198,40,40,0.04);
    border: 2px solid var(--border);
    padding: 30px;
}
.about-img-wrapper img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
.about-exp-badge {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 22px;
    text-align: center;
    box-shadow: var(--shadow-accent);
}
.about-exp-badge .exp-num { font-family: var(--font-heading); font-size: 28px; font-weight: 900; line-height: 1; display: block; }
.about-exp-badge .exp-text { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* About Features Grid */
.about-feature {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.about-feature:hover { background: rgba(198,40,40,0.03); }
.about-feature .af-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.about-feature h6 { font-size: 15px; margin-bottom: 3px; }
.about-feature p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ---------- Counter Section ---------- */
.counter-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2e44 100%);
    padding: 60px 0;
}
.counter-item { text-align: center; padding: 20px; }
.counter-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    display: block;
}
.counter-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ---------- Strength Cards ---------- */
.strength-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.strength-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.strength-card .stc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 14px;
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header-shapes { position: absolute; inset: 0; pointer-events: none; }
.ph-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.ph-shape-1 { width: 400px; height: 400px; background: var(--primary); top: -150px; right: -100px; }
.ph-shape-2 { width: 250px; height: 250px; background: var(--gold); bottom: -80px; left: -50px; }
.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 16px;
}
.page-header .breadcrumb-item { font-size: 13px; color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item a:hover { color: var(--primary-light); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-title { color: var(--white); margin-bottom: 10px; }
.page-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-subtitle { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 480px; }

/* ---------- Detail Content ---------- */
.detail-content { }
.detail-icon-header {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 24px;
}
.detail-content h2 { margin-bottom: 14px; }
.detail-content h3 { color: var(--secondary); }
.detail-content p { color: var(--text-light); font-size: 15px; }

/* Requirements Box */
.requirements-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}
.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}
.req-item:last-child { border-bottom: none; }
.req-item i { color: var(--success); font-size: 18px; flex-shrink: 0; }

/* ---------- Detail Sidebar ---------- */
.detail-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 20px;
}
.sidebar-cta h5 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 16px; }
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-box h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    color: var(--secondary);
}
.sidebar-box h6 i { color: var(--primary); }
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(198,40,40,0.06); color: var(--primary); }
.sidebar-nav a i { font-size: 16px; color: var(--primary); width: 20px; text-align: center; }
.sidebar-hours { list-style: none; padding: 0; margin: 0; }
.sidebar-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}
.sidebar-hours li:last-child { border-bottom: none; }

/* ---------- CTA Section ---------- */
.cta-section { padding: 60px 0 80px; }
.cta-card-main {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 48px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}
.cta-card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); font-size: 28px; margin-bottom: 6px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-actions .btn-light:hover { transform: translateY(-2px); }
.cta-actions .btn-success { background: #25D366; border-color: #25D366; }
.cta-actions .btn-success:hover { background: #1DA851; transform: translateY(-2px); }

/* ---------- Hero Quick Services ---------- */
.hero-quick-services {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hqs-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}
.hqs-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hqs-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.hqs-pill i { font-size: 13px; }

/* ---------- Hero Google Badge ---------- */
.hero-google-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 180px;
    z-index: 5;
}
.hgb-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 4px;
}
.hgb-stars > .bi-google {
    font-size: 22px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hgb-rating strong {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1;
    display: block;
}
.hgb-stars-row {
    display: flex;
    gap: 1px;
}
.hgb-stars-row i {
    font-size: 11px;
    color: #FBBC05;
}
.hero-google-badge > span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- Why Choose Us ---------- */
.wcu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.wcu-card:hover::before { transform: scaleX(1); }
.wcu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(198,40,40,0.15);
}
.wcu-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}
.wcu-card:hover .wcu-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.wcu-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}
.wcu-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ---------- Government Affiliations ---------- */
.affiliations-section { background: var(--bg-offwhite); }
.affil-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.affil-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(198,40,40,0.2);
}
.affil-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
}
.affil-card:hover .affil-icon {
    transform: scale(1.1) rotate(-5deg);
}
.affil-card h6 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--secondary);
}
.affil-card span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sb-item { position: relative; z-index: 1; padding: 12px 0; }
.sb-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.sb-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Location Preview ---------- */
.location-preview-section a { color: var(--primary); text-decoration: none; }
.location-preview-section a:hover { text-decoration: underline; }
.loc-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.loc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.loc-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.loc-info-item strong {
    font-size: 14px;
    color: var(--secondary);
    display: block;
    margin-bottom: 2px;
}
.loc-info-item div:last-child {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
.loc-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border);
}
.loc-map-wrap iframe {
    display: block;
    border-radius: var(--radius-lg);
}

/* ---------- Contact Page ---------- */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-info-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(198,40,40,0.02), var(--white));
}
.cic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 16px;
}
.contact-info-card.featured .cic-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.contact-info-card h5 { font-size: 17px; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.contact-info-card p a { color: var(--text); font-weight: 600; }
.cic-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 4px; color: var(--secondary); }
.contact-form-card .form-control, .contact-form-card .form-select {
    border-radius: var(--radius);
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 14px;
    transition: var(--transition);
}
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}
.contact-form-card .input-group-text {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--primary);
    border-radius: var(--radius) 0 0 var(--radius);
}
.contact-form-card .form-label { font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 6px; }
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.working-hours-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}
.working-hours-card h5 { font-size: 17px; margin-bottom: 16px; color: var(--secondary); }
.wh-list { list-style: none; padding: 0; margin: 0 0 16px; }
.wh-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.wh-list li:last-child { border-bottom: none; }
.wh-list li.closed { color: var(--primary); }
.wh-time { font-weight: 700; }
.wh-note {
    background: rgba(198,40,40,0.06);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-category { margin-bottom: 36px; }
.faq-cat-title {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.faq-cat-title i { color: var(--primary); font-size: 22px; }
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    padding: 16px 20px;
    background: var(--white);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: rgba(198,40,40,0.04);
    color: var(--primary);
}
.accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
}
.accordion-body {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    padding: 0 20px 16px;
}
.accordion-body a { color: var(--primary); font-weight: 600; }

/* ---------- Footer ---------- */
.main-footer { background: var(--secondary); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-brand .footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid rgba(255,255,255,0.1);
}
.footer-brand h5 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.footer-arabic {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    direction: rtl;
}
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
}
.footer-contact i { color: var(--primary-light); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: waFloat 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes waFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.wa-notification {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    animation: notifPulse 2s infinite;
}
@keyframes notifPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; visibility: visible; transform: translateX(0); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .hero-floating-card:nth-child(3) { left: -10px; }
}

@media (max-width: 991px) {
    .top-bar { display: none; }
    .navbar { top: 0 !important; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); }
    .navbar.scrolled { top: 0 !important; }
    .navbar:not(.scrolled) .brand-name { color: var(--secondary); }
    .navbar:not(.scrolled) .brand-sub { color: var(--text-muted); }
    .navbar:not(.scrolled) .nav-link { color: var(--text) !important; }
    .navbar:not(.scrolled) .toggler-icon span { background: var(--secondary); }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }
    .navbar-nav { gap: 4px; }
    .nav-link { padding: 10px 14px !important; }
    .btn-nav { margin-top: 10px; text-align: center; display: block; }
    /* Mega Menu Mobile */
    .mega-menu {
        border-radius: var(--radius) !important;
        box-shadow: none;
        border-top: 2px solid var(--primary);
        position: static !important;
        transform: none !important;
    }
    .mega-menu-inner {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
    }
    .mega-col { padding: 0; border-right: none !important; }
    .mega-cta-col { display: none; }
    .hero-section { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-visual { margin-top: 40px; }
    .hero-logo-showcase { width: 240px; height: 240px; }
    .hero-logo-showcase img { width: 150px; height: 150px; }
    .hero-floating-card { display: none; }
    .hero-google-badge { display: none; }
    .hero-trust { gap: 24px; }
    .hqs-label { display: none; }
    .sb-number { font-size: 36px; }
    .sb-label { font-size: 12px; }
    .stats-banner { padding: 40px 0; }
    .section-padding { padding: 60px 0; }
    .page-header { padding: 120px 0 40px; }
    .cta-card-main { padding: 32px 24px; flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .detail-sidebar { margin-top: 30px; position: static; }
    .counter-num { font-size: 32px; }
}

@media (max-width: 767px) {
    body { font-size: 14px; }
    .hero-section { padding: 100px 0 50px; }
    .hero-title { font-size: 1.8rem; }
    .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-quick-services { justify-content: center; }
    .hqs-pill { font-size: 11px; padding: 5px 10px; }
    .sb-number { font-size: 28px; }
    .wcu-card { padding: 28px 20px; }
    .affil-card { padding: 20px 12px; }
    .loc-map-wrap iframe { height: 280px; }
    .hero-trust { justify-content: center; gap: 20px; }
    .trust-number { font-size: 22px; }
    .scroll-indicator { display: none; }
    .section-padding { padding: 50px 0; }
    h2 { font-size: 1.6rem; }
    .pricing-card { padding: 28px 20px; }
    .page-header { padding: 100px 0 32px; }
    .footer-top { padding: 40px 0 30px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 20px; left: 20px; width: 38px; height: 38px; }
    .wa-tooltip { display: none; }
    .contact-form-card { padding: 24px 20px; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.5rem; }
    .hero-logo-showcase { width: 200px; height: 200px; }
    .hero-logo-showcase img { width: 120px; height: 120px; }
    .about-img-wrapper { width: 220px; height: 220px; padding: 20px; }
    .about-img-wrapper img { width: 140px; height: 140px; }
    .about-img-main { width: 200px; height: 200px; padding: 20px; }
    .about-img-main img { width: 130px; height: 130px; }
}

/* ---------- Missing Utility Classes ---------- */
.bg-offwhite { background: var(--bg-alt); }
.text-accent { color: var(--primary) !important; }
.text-white-60 { color: rgba(255,255,255,0.6) !important; }

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header p {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 10px;
}

/* ---------- Hero Extra Classes ---------- */
.hero-content { position: relative; z-index: 2; }
.hero-badge-wrap { margin-bottom: 4px; }
.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-weight: 500;
}
.typed-text {
    color: var(--primary-light);
    font-weight: 700;
}
.typed-cursor {
    color: var(--primary-light);
    font-weight: 300;
    animation: blink 0.7s infinite;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-indicator a {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}
.hero-scroll-indicator a span {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s ease-in-out infinite;
}
@keyframes scrollMouse { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 28px; } }
.hero-logo-img { /* handled by .hero-logo-showcase img */ }
.hfc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(198,40,40,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-light);
}

/* Hero Trust Items */
.trust-item { text-align: center; }
.trust-item span:last-child {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

/* ---------- Service Card Link Wrapper ---------- */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.service-card-link:hover { color: inherit; }
.sc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .sc-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}
.sc-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(198,40,40,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .sc-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}
.sc-all {
    border: 2px dashed rgba(198,40,40,0.2);
    background: rgba(198,40,40,0.02);
}
.sc-all:hover { border-style: solid; }

/* ---------- About Section Aliases ---------- */
.about-img-main {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198,40,40,0.04);
    border: 2px solid var(--border);
    padding: 30px;
}
.about-img-main img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
.about-logo-img { /* handled by parent img rule */ }
.aeb-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.aeb-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.about-features { display: flex; flex-direction: column; gap: 4px; }
.af-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.af-item:hover { background: rgba(198,40,40,0.03); }
.af-item .af-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(198,40,40,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.af-item h6 { font-size: 15px; margin-bottom: 3px; }
.af-item p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ---------- Marquee Content ---------- */
.marquee-content {
    display: flex;
    gap: 50px;
    flex-shrink: 0;
}
.marquee-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
}
.marquee-content span i { color: var(--primary); font-size: 16px; }

/* ---------- Pricing Card Extras ---------- */
.pc-header {
    margin-bottom: 18px;
}
.pc-header i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}
.pc-header h5 { font-size: 18px; margin-bottom: 4px; }
.pc-header p { font-size: 13px; color: var(--text-muted); margin: 0; }
.pc-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.pc-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}
.pc-price span {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}
.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.pc-features li:last-child { border-bottom: none; }
.pc-features li i { color: var(--primary); font-size: 16px; }
.pricing-card.featured .pc-header i { color: var(--white); }
.pricing-card.featured .pc-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius); padding: 20px; margin: -36px -28px 18px; }
.pricing-card.featured .pc-header h5 { color: var(--white); }
.pricing-card.featured .pc-header p { color: rgba(255,255,255,0.7); }

/* ---------- Process Section Extras ---------- */
.section-tag-light {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--primary-light);
}
.proc-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: rgba(198,40,40,0.3);
    margin-bottom: 8px;
}
.proc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(198,40,40,0.15);
    border: 2px solid rgba(198,40,40,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-light);
    margin: 0 auto 18px;
}

/* ---------- Testimonial Rating Alias ---------- */
.tc-rating { color: #FFC107; font-size: 14px; margin-bottom: 14px; }
.tc-author h6 { margin-bottom: 0; }
.tc-author span { font-size: 12px; color: var(--text-muted); }

/* ---------- Counter Card Alias ---------- */
.counter-card { text-align: center; padding: 20px; }
.counter-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    display: block;
}

/* ---------- Animations ---------- */
[data-aos] { transition-duration: 800ms !important; }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }