/* ============================================
   PREM CCTV BARMER — CONVERSION DESIGN SYSTEM
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

/* ---- CSS TOKENS ---- */
:root {
    --primary: #0A2540;
    --accent: #00C2FF;
    --cta: #FF6B00;
    --cta-hover: #e55a00;
    --bg: #F5F7FA;
    --white: #ffffff;
    --text: #1A1A1A;
    --text-muted: #556070;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 24px rgba(10, 37, 64, 0.13);
    --shadow-lg: 0 8px 40px rgba(10, 37, 64, 0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1160px;
}

/* ---- GLOBAL RESET ADDITIONS ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Headings use Poppins */
h1,
h2,
h3,
h4 {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* ---- SHARED SECTION WRAPPER ---- */
.cv-section {
    padding: 5rem 1.5rem;
}

.cv-section--dark {
    background: var(--primary);
    color: var(--white);
}

.cv-section--accent {
    background: linear-gradient(135deg, #0A2540 0%, #0d3960 100%);
}

.cv-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.cv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 194, 255, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}

.cv-section-label--cta {
    background: rgba(255, 107, 0, 0.15);
    color: var(--cta);
}

.cv-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cv-section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-bottom: 0.7rem;
}

.cv-section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- NAVIGATION OVERRIDE ---- */
header {
    background: var(--primary) !important;
    box-shadow: 0 2px 20px rgba(10, 37, 64, 0.25) !important;
    position: sticky;
    top: 0;
    z-index: 900;
}

nav {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 0 1.5rem !important;
    height: 64px;
    gap: 0;
}

/* Logo — always left */
.logo {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo::before {
    content: '03d' !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    color: var(--accent, #00C2FF) !important;
    margin-right: 0.1rem;
}

/* Right group: nav links + CTA — all in one inline row */
.nav-links-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin-left: auto;
}

/* Nav links row */
.nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.15rem !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 0.4rem 0.7rem !important;
    border-radius: 6px !important;
    transition: color var(--transition), background var(--transition) !important;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Professional Call Now button — right of nav links */
.nav-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    background: var(--cta) !important;
    color: var(--white) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    text-decoration: none !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 7px !important;
    margin-left: 1.2rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.35) !important;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta-btn i {
    font-size: 0.85rem !important;
}

.nav-cta-btn:hover {
    background: var(--cta-hover) !important;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.5) !important;
    transform: translateY(-1px) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: 1rem;
    flex-shrink: 0;
    z-index: 99999 !important;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.hamburger.open {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger i {
    font-size: 1.4rem !important;
    color: #ffffff !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger.open i {
    color: var(--accent) !important;
    transform: rotate(90deg) !important;
}

/* ---- MOBILE NAV ---- */
@media (max-width: 1024px) {
    nav {
        padding: 0 1.2rem !important;
        height: 68px;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-links-group {
        position: absolute !important;
        top: 68px !important;
        left: 0 !important;
        right: 0 !important;
        background: #0d2d4e !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 1rem 1.2rem 1.2rem !important;
        gap: 0.2rem !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
        z-index: 999 !important;
        display: none !important;
        border-bottom: 2px solid rgba(0, 194, 255, 0.2) !important;
    }

    .nav-links-group.open {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.2rem !important;
        width: 100% !important;
    }

    .nav-links a {
        font-size: 1rem !important;
        padding: 0.7rem 0.8rem !important;
        border-radius: 8px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .nav-cta-btn {
        margin: 0.8rem 0 0 0 !important;
        justify-content: center !important;
        font-size: 1rem !important;
        padding: 0.8rem 1.5rem !important;
        width: 100% !important;
        border-radius: 9px !important;
    }
}

/* ---- HERO SECTION ---- */
.cv-hero {
    position: relative;
    background: linear-gradient(135deg, #061828 0%, #0A2540 55%, #0d3a6e 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
}

/* Animated dot grid background */
.cv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 194, 255, 0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 0;
}

/* Glow orb */
.cv-hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.18) 0%, transparent 70%);
    z-index: 0;
}

.cv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.cv-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.cv-hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.3);
    color: #7ee8ff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
    backdrop-filter: blur(8px);
}

.cv-hero-trust-badge i {
    color: var(--accent);
}

.cv-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.cv-hero h1 .accent-text {
    color: var(--accent);
    display: block;
}

.cv-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.cv-hero-sub strong {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA group */
.cv-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Shared CTA button base */
.cv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.cv-btn:hover {
    transform: translateY(-2px);
}

.cv-btn--call {
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    font-size: 1.05rem;
    padding: 1rem 2.2rem;
}

.cv-btn--call:hover {
    background: var(--cta-hover);
    box-shadow: 0 6px 28px rgba(255, 107, 0, 0.5);
    color: var(--white);
}

.cv-btn--whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.cv-btn--whatsapp:hover {
    background: #1da851;
    color: var(--white);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.cv-btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.cv-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.cv-btn--primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.35);
}

.cv-btn--primary:hover {
    background: #00aadd;
    box-shadow: 0 6px 28px rgba(0, 194, 255, 0.5);
    color: var(--primary);
}

.cv-btn--wa-smaller {
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
}

.cv-btn--link-style {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: none;
    text-decoration: underline;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.cv-btn--link-style:hover {
    color: var(--white);
    transform: translateY(-1px);
    background: transparent;
}

.cv-hero-urgency {
    color: #FFC107;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: -1.75rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cv-hero-urgency i {
    font-size: 1.15rem;
}

/* Hero visuals */
.cv-hero-visual {
    position: relative;
    width: 100%;
}

.cv-hero-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.4s ease;
}

.cv-hero-image-wrap:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.cv-hero-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.92);
}

.cv-hero-float-badge {
    position: absolute;
    bottom: 26px;
    right: -15px;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.8rem 1.3rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-lg);
}

.cv-hero-float-badge i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Hero trust row */
.cv-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.18);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cv-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.cv-hero-trust-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* ---- TRUST / STATS BAR ---- */
.cv-trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.cv-trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
}

.cv-trust-stat {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background var(--transition);
}

.cv-trust-stat:last-child {
    border-right: none;
}

.cv-trust-stat:hover {
    background: #f0f9ff;
}

.cv-trust-stat-num {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.cv-trust-stat-num span {
    color: var(--accent);
}

.cv-trust-stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cv-trust-stat i {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* ---- SERVICE CARDS ---- */
.cv-services {
    background: var(--bg);
}

.cv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cv-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.cv-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #0070b8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.cv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 194, 255, 0.25);
}

.cv-service-card:hover::before {
    transform: scaleX(1);
}

.cv-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(0, 194, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background var(--transition);
}

.cv-service-card:hover .cv-service-icon {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.3), rgba(0, 194, 255, 0.1));
}

.cv-service-icon i {
    font-size: 1.4rem;
    color: var(--accent);
}

.cv-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cv-service-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.2rem;
}

.cv-service-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--transition);
}

.cv-service-card:hover .cv-service-link {
    gap: 0.65rem;
}

/* ---- INLINE CTA STRIP ---- */
.cv-cta-strip {
    background: linear-gradient(135deg, var(--cta) 0%, #e55a00 100%);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.cv-cta-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cv-cta-strip-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.cv-cta-strip-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

.cv-cta-strip .cv-btn--white {
    background: var(--white);
    color: var(--cta);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cv-cta-strip .cv-btn--white:hover {
    background: #fff5f0;
    color: var(--cta-hover);
}

/* ---- WHY CHOOSE US ---- */
.cv-why {
    background: var(--white);
}

.cv-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cv-why-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: box-shadow var(--transition), transform var(--transition);
}

.cv-why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    background: var(--white);
}

.cv-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A2540, #0d3960);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cv-why-icon i {
    font-size: 1.2rem;
    color: var(--accent);
}

.cv-why-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.cv-why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ---- TESTIMONIALS REDESIGN ---- */
.cv-testimonials {
    background: var(--bg);
}

.cv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cv-testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.7rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.cv-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 18px;
    font-size: 4rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.35;
}

.cv-testimonial-stars {
    color: #FFC107;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
    letter-spacing: 1px;
}

.cv-testimonial-text {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.cv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cv-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cv-testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.cv-testimonial-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- LOCATION COVERAGE ---- */
.cv-locations {
    background: var(--primary);
}

.cv-locations .cv-section-header h2 {
    color: var(--white);
}

.cv-locations .cv-section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.cv-locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.cv-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    backdrop-filter: blur(4px);
}

.cv-location-chip i {
    color: var(--accent);
    font-size: 0.8rem;
}

.cv-location-chip:hover {
    background: rgba(0, 194, 255, 0.18);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- POWER CTA ---- */
.cv-power-cta {
    background: linear-gradient(135deg, #0A2540 0%, #061828 100%);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cv-power-cta::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
}

.cv-power-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cv-power-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cv-power-cta h2 em {
    color: var(--accent);
    font-style: normal;
}

.cv-power-cta p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cv-power-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cv-power-cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ---- FAQ SECTION ---- */
.cv-faq {
    background: var(--white);
}

.cv-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.cv-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.cv-faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 194, 255, 0.3);
}

.cv-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.cv-faq-q:hover {
    background: #f6faff;
}

.cv-faq-item.open .cv-faq-q {
    color: #0A2540;
    background: #f0f9ff;
}

.cv-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 194, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.cv-faq-item.open .cv-faq-icon {
    transform: rotate(180deg);
    background: var(--accent);
    color: var(--white);
}

.cv-faq-a {
    display: none;
    padding: 0 1.5rem 1.3rem;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

.cv-faq-item.open .cv-faq-a {
    display: block;
}

/* ---- CONTACT SECTION REDESIGN ---- */
.cv-contact {
    background: var(--bg);
    padding: 5rem 1.5rem;
}

.cv-contact-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.cv-contact-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.cv-contact-left p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cv-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cv-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow var(--transition), transform var(--transition);
}

.cv-contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.cv-contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cv-contact-item-icon--call {
    background: rgba(255, 107, 0, 0.12);
    color: var(--cta);
}

.cv-contact-item-icon--wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.cv-contact-item-icon--mail {
    background: rgba(10, 37, 64, 0.1);
    color: var(--primary);
}

.cv-contact-item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cv-contact-item-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.cv-contact-right {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.cv-contact-right h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cv-form-group {
    margin-bottom: 1.1rem;
}

.cv-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.cv-form-group input,
.cv-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: #fafbfc;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.cv-form-group input:focus,
.cv-form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.12);
    background: var(--white);
}

.cv-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.cv-form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--cta);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    font-family: 'Inter', Arial, sans-serif;
}

.cv-form-submit:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
}

/* ---- FOOTER REDESIGN ---- */
.cv-footer {
    background: #060f1a;
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 1.5rem 1.5rem;
}

.cv-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Make wrapper invisible to CSS Grid on desktop so 3-column layout works */
.cv-footer-links-row {
    display: contents;
}

.cv-footer-brand .logo {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.cv-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.cv-footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.cv-footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    transition: color var(--transition);
}

.cv-footer-col a:hover {
    color: var(--accent);
}

.cv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.cv-footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ---- MOBILE FOOTER ---- */
@media (max-width: 768px) {

    /* Base footer padding — extra bottom space for sticky CTA bar */
    .cv-footer {
        padding: 2rem 1rem 85px;
    }

    /* Stack brand + col1 + col2 in a column */
    .cv-footer-inner {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    /* ---- Brand block — centered ---- */
    .cv-footer-brand {
        text-align: center;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 1.2rem;
    }

    .cv-footer-brand .logo {
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .cv-footer-brand p {
        max-width: 100%;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.55);
        margin: 0 auto 0.8rem;
    }

    /* Social icon buttons — centered row */
    .cv-footer-social {
        justify-content: center;
        gap: 1.2rem;
    }

    .cv-footer-social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    /* ---- Link columns side by side on mobile ---- */
    .cv-footer-inner>.cv-footer-col:nth-child(2),
    .cv-footer-inner>.cv-footer-col:nth-child(3) {
        display: inline-block;
        width: 48%;
        vertical-align: top;
    }

    /* Two link columns in a flex row */
    .cv-footer-links-row {
        display: flex;
        gap: 1rem;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0;
    }

    .cv-footer-col {
        flex: 1;
    }

    .cv-footer-col h4 {
        font-size: 0.82rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 0.8rem;
    }

    .cv-footer-col a {
        font-size: 0.88rem;
        padding: 0.3rem 0;
        margin-bottom: 0.3rem;
        color: rgba(255, 255, 255, 0.65);
        border-radius: 4px;
    }

    /* ---- Footer CTA strip — mobile ---- */
    .cv-footer-cta-strip {
        border-radius: 14px;
        margin: 1.2rem 0;
        padding: 1.2rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cv-footer-cta-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    .cv-footer-cta-inner>div:first-child strong {
        font-size: 1rem;
    }

    .cv-footer-cta-inner>div:first-child span {
        font-size: 0.82rem;
    }

    .cv-footer-cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .cv-footer-cta-btns .cv-btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.85rem 1rem !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }

    /* ---- Bottom copyright bar — centered on mobile ---- */
    .cv-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1rem;
        gap: 0.25rem;
    }
}

/* ---- STICKY MOBILE CTA ---- */
.cv-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(6, 24, 40, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1rem;
    gap: 0.75rem;
}

.cv-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity var(--transition);
}

.cv-sticky-cta a i {
    font-size: 1.1rem;
}

.cv-sticky-cta a:hover {
    opacity: 0.9;
}

.cv-sticky-cta-call {
    background: var(--cta);
    color: var(--white) !important;
}

.cv-sticky-cta-wa {
    background: #25d366;
    color: var(--white) !important;
}

/* ---- FADE-IN ANIMATION ---- */
.cv-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.cv-fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 1024px) {
    .cv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cv-section {
        padding: 2.2rem 1rem;
    }

    .cv-trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .cv-trust-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cv-trust-stat:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .cv-trust-stat:last-child,
    .cv-trust-stat:nth-last-child(2) {
        border-bottom: none;
    }

    .cv-section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .cv-section-header h2 {
        font-size: 1.8rem;
    }

    .cv-section-header p {
        font-size: 0.95rem;
    }

    .cv-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cv-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cv-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cv-contact-inner {
        grid-template-columns: 1fr;
    }

    .cv-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cv-cta-strip-inner {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .cv-sticky-cta {
        display: flex;
        padding: 0.8rem 0.6rem;
        gap: 0.7rem;
    }

    .cv-sticky-cta a {
        padding: 0.8rem 0.2rem;
        font-size: 0.95rem;
    }

    .cv-sticky-cta a i {
        font-size: 1.25rem;
    }

    /* Push page up so sticky CTA doesn't overlap content */
    body {
        padding-bottom: 80px;
    }

    .cv-hero {
        min-height: auto;
        padding: 6.5rem 1rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cv-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cv-hero-image-wrap {
        transform: perspective(1000px) rotateY(0deg);
    }

    .cv-hero-float-badge {
        right: 20px;
        bottom: 20px;
    }

    .cv-hero-trust-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }

    .cv-hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .cv-hero-sub {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cv-hero-ctas {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-bottom: 2rem;
    }

    .cv-hero-ctas .cv-btn--link-style {
        grid-column: span 2;
        background: rgba(255, 255, 255, 0.08);
        text-decoration: none;
        padding: 0.8rem;
        border-radius: 9px;
    }

    .cv-btn--call {
        font-size: 0.85rem;
        padding: 0.8rem 0.5rem;
    }

    .cv-btn--whatsapp {
        font-size: 0.85rem;
        padding: 0.8rem 0.5rem;
    }

    .cv-hero-urgency {
        justify-content: center;
        margin-top: -1rem;
        margin-bottom: 2rem;
        font-size: 0.88rem;
    }

    .cv-hero-trust-row {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 1rem;
        justify-content: center;
    }

    .cv-hero-trust-item {
        font-size: 0.75rem;
    }

    .cv-power-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cv-trust-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .cv-trust-stat-num {
        font-size: 1.7rem;
    }

    .cv-hero h1 {
        font-size: 1.4rem;
    }

    .cv-hero-trust-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        text-align: left;
    }
}

/* ============================================
   ADDITIONS: INSTAGRAM + FOOTER CTA + BLOG
   ============================================ */

/* ---- INSTAGRAM BUTTON ---- */
.cv-btn--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.35);
}

.cv-btn--instagram:hover {
    filter: brightness(1.12);
    color: var(--white);
    box-shadow: 0 6px 28px rgba(131, 58, 180, 0.5);
}

/* ---- FOOTER SOCIAL ICON BUTTONS ---- */
.cv-footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.cv-footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition);
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
}

.cv-footer-social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Base styles override */

/* ---- FOOTER CTA STRIP ---- */
.cv-footer-cta-strip {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 1.5rem;
    margin-bottom: 2.5rem;
}

.cv-footer-cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.cv-footer-cta-inner>div:first-child strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cv-footer-cta-inner>div:first-child span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.cv-footer-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* ---- STICKY MOBILE CTA — 3 BUTTONS ---- */
/* Override the 2-button version for pages using component */
.cv-sticky-cta-ig {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0.5rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white) !important;
    transition: opacity var(--transition);
}

.cv-sticky-cta-ig:hover {
    opacity: 0.9;
}

/* ---- MINI HERO (Location & Static Pages) ---- */
.cv-page-hero {
    background: linear-gradient(135deg, #061828 0%, #0A2540 60%, #0d3a6e 100%);
    padding: 3.5rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cv-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

.cv-page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
}

.cv-page-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cv-page-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.65;
    margin-bottom: 1.6rem;
}

.cv-page-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ---- INLINE CTA BLOCK (blog articles + location pages) ---- */
.cv-inline-cta {
    background: linear-gradient(135deg, #0A2540 0%, #0d3960 100%) !important;
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--white) !important;
}

.cv-inline-cta * {
    /* All children in this dark container must default to white */
    color: inherit;
}

.cv-inline-cta-text h3,
.cv-inline-cta-text h3 * {
    color: #ffffff !important;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.cv-inline-cta-text p,
.cv-inline-cta-text p * {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem;
    margin: 0;
}

.cv-inline-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cv-inline-cta .cv-btn {
    font-size: 0.88rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
}

/* Dark section text overrides — prevent dist/styles.min.css from making text invisible */
.cv-section--dark,
.cv-section--dark h1,
.cv-section--dark h2,
.cv-section--dark h3,
.cv-section--dark h4 {
    color: #ffffff !important;
}

.cv-section--dark p,
.cv-section--dark span:not(.cv-section-label) {
    color: rgba(255, 255, 255, 0.72) !important;
}

/* cv-section-label inside dark sections should stay accent */
.cv-section--dark .cv-section-label {
    color: var(--accent) !important;
    background: rgba(0, 194, 255, 0.12) !important;
    border-color: rgba(0, 194, 255, 0.3) !important;
}

/* ---- BLOG PAGE REDESIGN ---- */
.cv-blog-hero {
    background: linear-gradient(135deg, #061828 0%, #0A2540 60%, #0d3a6e 100%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cv-blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
}

.cv-blog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
}

.cv-blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cv-blog-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.cv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.cv-blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.cv-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cv-blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.cv-blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cv-blog-card-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.cv-blog-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.cv-blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}

.cv-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cv-blog-card-read {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cv-blog-read-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition);
}

.cv-blog-card:hover .cv-blog-read-link {
    gap: 0.6rem;
}

/* Blog article & Location Page Base */
.cv-article-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
}

.cv-article-wrap h1,
.cv-article-wrap h2,
.cv-article-wrap h3 {
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.cv-article-wrap h2 {
    font-size: 1.65rem;
    border-bottom: 2px solid rgba(0, 194, 255, 0.15);
    padding-bottom: 0.6rem;
}

.cv-article-wrap p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Base UL/OL for regular blogs */
.cv-article-wrap:not(.loc-content) ul,
.cv-article-wrap:not(.loc-content) ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Premium Component styling for Location Pages (.loc-content) */
.loc-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.loc-content ul li {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: transform var(--transition), box-shadow var(--transition);
}

.loc-content ul li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 194, 255, 0.25);
}

.loc-content ul li strong,
.loc-content ul li b {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.4rem;
}

.cv-article-wrap img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

/* ---- RESPONSIVE EXTRAS ---- */
@media (max-width: 1024px) {
    .cv-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cv-blog-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
    }

    .cv-footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-footer-cta-btns {
        flex-direction: column;
    }

    .cv-page-hero-ctas {
        flex-direction: column;
    }

    .cv-inline-cta {
        flex-direction: column;
    }
}

/* ============================================
   MOBILE UX/CRO OPTIMIZATIONS (ADDED)
   ============================================ */
@media (max-width: 768px) {

    /* 1. Header & Navigation */
    nav {
        height: 72px !important;
    }

    .hamburger i {
        font-size: 1.8rem !important;
    }

    .nav-links-group {
        top: 72px !important;
    }

    header {
        position: sticky !important;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    /* 2. Hero Section */
    .cv-hero {
        padding: 4rem 1.2rem 3rem !important;
    }

    .cv-hero h1 {
        font-size: 1.95rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .cv-hero-sub {
        font-size: 1.05rem !important;
        line-height: 1.65 !important;
        margin-bottom: 2rem !important;
    }

    .cv-hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.85rem !important;
    }

    .cv-hero-ctas a,
    .cv-btn--call,
    .cv-btn--whatsapp,
    .cv-btn--link-style {
        font-size: 1.1rem !important;
        padding: 1.05rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .cv-hero-trust-row {
        gap: 1rem !important;
        padding: 1.2rem !important;
        border-radius: 12px !important;
    }

    .cv-hero-trust-item {
        font-size: 0.9rem !important;
        width: 45%;
    }

    /* 3. Stats Section */
    .cv-trust-stat-num {
        font-size: 2.5rem !important;
        margin-bottom: 0.3rem !important;
    }

    .cv-trust-stat-label {
        font-size: 0.85rem !important;
    }

    .cv-trust-stat {
        padding: 1.8rem 1rem !important;
    }

    /* 4. Services cards */
    .cv-services-grid {
        gap: 1.5rem !important;
    }

    .cv-service-card {
        padding: 2rem 1.5rem !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
        text-align: left !important;
    }

    .cv-service-card i {
        font-size: 2.5rem !important;
        margin-bottom: 1.2rem !important;
    }

    .cv-service-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .cv-service-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* 5. CTA sections */
    .cv-cta-strip {
        margin: 2rem 1rem !important;
        padding: 2.5rem 1.5rem !important;
    }

    .cv-power-cta-btns {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .cv-power-cta-btns .cv-btn {
        width: 100% !important;
        padding: 1.05rem !important;
        font-size: 1.1rem !important;
    }

    /* 6. Why Choose Us */
    .cv-why-grid {
        gap: 1.5rem !important;
    }

    .cv-why-item {
        padding: 1.8rem 1.5rem !important;
        align-items: flex-start !important;
    }

    .cv-why-item i {
        font-size: 2.2rem !important;
        width: 60px !important;
        height: 60px !important;
    }

    .cv-why-item p {
        font-size: 1rem !important;
        margin: 0 !important;
        line-height: 1.6 !important;
    }

    /* 7. Testimonials Carousel format */
    .cv-testimonials-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.2rem !important;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        margin-right: -1rem;
        /* allow bleeding edge */
        padding-right: 1.5rem;
    }

    .cv-testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 2rem 1.5rem !important;
    }

    .cv-testimonial-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* 8. Areas / Locations */
    .cv-areas-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .cv-area-btn {
        padding: 0.85rem 0.5rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* 9. FAQ */
    .cv-faq-list {
        gap: 1.2rem !important;
    }

    .cv-faq-question {
        padding: 1.4rem 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .cv-faq-answer {
        padding: 0 1.5rem 1.4rem !important;
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    /* 10. Contact Form */
    .cv-contact-form {
        gap: 1.5rem !important;
        padding: 2rem 1.5rem !important;
    }

    .cv-contact-form input,
    .cv-contact-form select,
    .cv-contact-form textarea {
        padding: 1.1rem 1.2rem !important;
        font-size: 1rem !important;
        border-width: 2px !important;
    }

    .cv-contact-form input:focus,
    .cv-contact-form select:focus,
    .cv-contact-form textarea:focus {
        border-color: var(--accent) !important;
        box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.15) !important;
    }

    .cv-contact-submit {
        width: 100% !important;
        padding: 1.15rem !important;
        font-size: 1.1rem !important;
    }

    /* 11. Footer */
    .cv-footer {
        padding: 3rem 1.5rem 85px !important;
    }

    .cv-footer-inner {
        gap: 2rem !important;
    }

    .cv-footer-brand {
        padding-bottom: 2rem !important;
        margin-bottom: 0 !important;
    }

    .cv-footer-social {
        gap: 1.5rem !important;
        margin-top: 1.2rem !important;
        justify-content: center !important;
    }

    .cv-footer-social-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        border-width: 2px !important;
    }

    .cv-footer-links-row {
        flex-direction: column !important;
        gap: 2.5rem !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .cv-footer-col {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .cv-footer-col h4 {
        font-size: 1.25rem !important;
        margin-bottom: 1.2rem !important;
        color: #fff !important;
    }

    .cv-footer-col ul {
        gap: 1rem !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .cv-footer-col ul a {
        font-size: 1.05rem !important;
    }

    .cv-footer-cta-strip {
        margin: 2rem 0 !important;
        padding: 1.5rem 1.2rem !important;
    }

    /* Scrollbar hide for mobile carousels */
    .cv-testimonials-grid::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hamburger i {
        font-size: 1.8rem;
        padding: 0.2rem;
    }

    nav {
        align-items: center !important;
    }
}

/* ============================================
   FAQ PAGE REDESIGN
   ============================================ */
.cv-faq-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(14, 28, 54, 0.95), rgba(7, 18, 36, 0.88)), url('assets/images/hero_bgi.jpg') center/cover no-repeat;
    padding: 6rem 1rem 4rem;
    text-align: center;
    color: var(--white);
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-faq-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cv-faq-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-transform: capitalize;
}

.cv-faq-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cv-faq-page-wrap {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.cv-faq-jump-nav {
    max-width: var(--max-w);
    margin: -6rem auto 3rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 80px;
    z-index: 900;
    transition: box-shadow var(--transition);
}

.cv-faq-jump-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.cv-faq-jump-nav ul::-webkit-scrollbar {
    height: 4px;
}

.cv-faq-jump-nav ul::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.cv-faq-jump-nav a {
    white-space: nowrap;
    text-decoration: none;
    background: #f1f3f6;
    color: var(--text);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.cv-faq-jump-nav a:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(10, 37, 64, 0.15);
}

.cv-faq-sections {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: 3.5rem;
}

.cv-faq-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--accent);
    scroll-margin-top: 140px;
}

.cv-faq-category h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* Base override for FAQ individual items */
.cv-faq-category .cv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cv-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fafbfe;
}

.cv-faq-item.active {
    background: #fff;
    border-color: rgba(0, 194, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.08);
}

.cv-faq-category .cv-faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 1.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
    min-height: 52px;
}

.cv-faq-category .cv-faq-question span {
    flex: 1;
    padding-right: 1.5rem;
    line-height: 1.4;
}

.cv-faq-icon {
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cv-faq-item:hover .cv-faq-question {
    color: var(--accent);
}

.cv-faq-item.active .cv-faq-icon {
    transform: rotate(180deg);
}

.cv-faq-item.active .cv-faq-question {
    color: var(--accent);
}

.cv-faq-category .cv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.cv-faq-item.active .cv-faq-answer {
    max-height: 800px;
}

.cv-faq-answer-inner {
    padding: 0 1.8rem 1.8rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* FAQ Mobile Fixes */
@media (max-width: 768px) {
    .cv-faq-hero {
        padding: 6rem 1rem 3rem;
        min-height: 40vh;
    }

    .cv-faq-hero h1 {
        font-size: 2rem;
    }

    .cv-faq-page-wrap {
        padding: 1rem 1rem 3rem;
    }

    .cv-faq-jump-nav {
        margin: -4rem auto 2rem;
        padding: 1.2rem;
        top: 72px;
        /* Sticky below mobile header */
    }

    .cv-faq-jump-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .cv-faq-sections {
        gap: 2rem;
    }

    .cv-faq-category {
        padding: 1.5rem;
    }

    .cv-faq-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1.4rem;
    }

    .cv-faq-category .cv-faq-question {
        padding: 1.3rem;
        font-size: 1.05rem;
        min-height: 48px;
    }

    .cv-faq-answer-inner {
        padding: 0 1.3rem 1.4rem;
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ============================================
   UI AND BLOG FIXES (DESKTOP + MOBILE)
   ============================================ */
/* 1. Blog Grid normalization */
.cv-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.cv-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Force equal heights */
}

.cv-blog-card-body {
    flex-grow: 1;
    /* Push CTA row to bottom naturally */
    display: flex;
    flex-direction: column;
}

.cv-blog-card-meta {
    margin-top: auto;
    /* Always sticks to the very bottom */
    padding-top: 1.5rem;
}

.cv-blog-card-img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

/* 2. Consistent Section Spacing System */
@media (max-width: 768px) {

    /* Reduce excessive mobile padding uniformly globally */
    .cv-section,
    .cv-services,
    .cv-why,
    .cv-testimonials,
    .cv-areas,
    .cv-contact,
    .cv-blog-page-wrap {
        padding: 3rem 1.2rem !important;
    }

    /* Reduce gaps between cards on mobile */
    .cv-blog-grid,
    .cv-services-grid,
    .cv-why-grid,
    .cv-testimonials-grid,
    .cv-areas-grid {
        gap: 1.25rem !important;
    }

    /* 3. Hero cleanup */
    .cv-hero {
        padding: 5rem 1rem 3rem !important;
    }

    /* 4. Contact/CTA padding normalization */
    .cv-cta-strip {
        padding: 2rem 1.2rem !important;
        margin: 1.5rem 1rem !important;
    }

    .cv-power-cta-btns .cv-btn {
        margin: 0 !important;
        /* Strip any competing margins */
        min-height: 48px;
        /* Minimum tap target */
        align-items: center;
        display: flex;
    }

    /* 5. Footer height reduction and layout rationalization */
    .cv-footer {
        padding: 2.5rem 1.2rem 85px !important;
        /* Room for sticky cta only */
    }

    .cv-footer-inner {
        gap: 1.5rem !important;
    }

    .cv-footer-links-row {
        gap: 1.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .cv-footer-brand {
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* We hide the duplicate mid-footer massive CTA block entirely on mobile 
       since the sticky bottom bar is already present and consuming screen space */
    .cv-footer-cta-strip {
        display: none !important;
    }
}

/* ============================================
   MOBILE HEADER HAMBURGER FIXES & CLEANUP
   ============================================ */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    /* Stronger Mobile Hamburger */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        transition: background 0.3s ease;
    }

    .hamburger:hover,
    .hamburger:active {
        background: rgba(255, 255, 255, 0.2);
    }

    .hamburger i {
        font-size: 1.8rem !important;
        color: #ffffff !important;
    }
}

/* ============================================
   TYPOGRAPHY AND BODY PADDING
   ============================================ */
body {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 85px !important;
    }
}
/* ===================== TESTIMONIAL SLIDER ===================== */
.cv-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cv-slider-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
    padding: 0.5rem 0;
}

.cv-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.cv-testi-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
}

.cv-slider-btn {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all var(--transition);
    z-index: 10;
}

.cv-slider-btn:hover {
    background: var(--cta);
    color: var(--white);
    border-color: var(--cta);
}

/* Floating UP/DOWN Arrows */
.cv-floating-arrows {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cv-floating-arrows.show {
    opacity: 1;
    pointer-events: auto;
}

.cv-arrow-btn {
    width: 42px;
    height: 42px;
    background: rgba(10, 37, 64, 0.85);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 1.1rem;
}

.cv-arrow-btn:hover {
    background: var(--cta);
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

@media (max-width: 1024px) {
    .cv-testi-slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
    .cv-testi-slide { flex: 0 0 calc(100%); }
    .cv-floating-arrows { bottom: 105px; right: 15px; }
    .cv-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        opacity: 0.9;
    }
    .cv-slider-prev { left: -5px; }
    .cv-slider-next { right: -5px; }
    .cv-slider-wrapper { gap: 0; }
    .cv-slider-track-container { padding: 0.5rem 25px; margin: 0 -20px; }
}


/* Fix Mobile Hamburger Icon using SPANs */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent);
}

/* Fix Hamburger Menu Bar Icon */
.hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 0 0 auto !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    flex-direction: row !important;
}

.hamburger i {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: transform 0.3s ease !important;
}

.hamburger.open i {
    color: var(--accent) !important;
    transform: rotate(90deg) !important;
}
