﻿        :root {
            --primary: #9B1728;
            --primary-dark: #7a1220;
            --primary-light: #c41e3a;
            --primary-xlight: #fdf2f4;
            --primary-glow: rgba(155, 23, 40, 0.15);
            --accent: #e60023;
            --gold: #c9a84c;
            --green: #25d366;
            --bg-page: #fafafa;
            --bg-white: #ffffff;
            --bg-dark: #0d0d14;
            --bg-dark-2: #1a1a2e;
            --text-dark: #1a1a2e;
            --text-body: #3d3d4e;
            --text-muted: #6b6b80;
            --text-light: #9898a8;
            --border-soft: #eaeaef;
            --border-primary: rgba(155, 23, 40, 0.15);
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 18px 55px rgba(0, 0, 0, 0.13);
            --shadow-primary: 0 8px 30px rgba(155, 23, 40, 0.25);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --ff-body: "Cairo", sans-serif;
            --ff-display: "Tajawal", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ff-body);
            color: var(--text-body);
            background: var(--bg-page);
            line-height: 1.9;
            direction: rtl;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* ============ HERO ============ */
        .about-hero {
            min-height: 65vh;
            display: flex;
            align-items: center;
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .about-hero .glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .about-hero .glow-1 {
            top: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(155, 23, 40, 0.2), transparent 70%);
        }

        .about-hero .glow-2 {
            bottom: -200px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(155, 23, 40, 0.12), transparent 70%);
        }

        .about-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            /* background: linear-gradient(to bottom, transparent, var(--bg-page)); */
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            color: #fff;
            padding: 7px 20px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ade80;
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .6;
                transform: scale(1.3)
            }
        }

        .hero-text-col h1 {
            font-family: var(--ff-display);
            font-size: clamp(2rem, 5vw, 3.3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .hero-text-col h1 .hl {
            color: #fbbf24;
        }

        .hero-text-col h1 .brand {
            color: #ef4444;
            font-style: italic;
        }

        .hero-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.95;
            margin-bottom: 36px;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 28px;
            border-radius: 50px;
            font-family: var(--ff-body);
            font-size: 0.93rem;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 55%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: right 0.55s ease;
        }

        .btn:hover::after {
            right: 110%;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(155, 23, 40, 0.4);
        }

        .btn-outline-white {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .btn-wa {
            background: var(--green);
            color: #fff;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
        }

        .btn-wa:hover {
            background: #1db954;
            transform: translateY(-3px);
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .trust-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.13);
            padding: 9px 16px;
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.84rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .trust-pill:hover {
            background: rgba(155, 23, 40, 0.35);
            border-color: rgba(155, 23, 40, 0.5);
            transform: translateY(-2px);
        }

        .trust-pill i {
            color: #fbbf24;
        }

        /* Hero Visual Column */
        .hero-visual-col {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-card-glass {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(14px);
            border-radius: var(--radius-lg);
            padding: 30px;
        }

        .hero-card-glass h3 {
            font-family: var(--ff-display);
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-card-glass h3 i {
            color: var(--accent);
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hero-feat {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-feat i {
            color: var(--accent);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .hero-mini-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .hero-mini-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
        }

        .hero-mini-card i {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .hero-mini-card strong {
            display: block;
            font-family: var(--ff-display);
            font-size: 1.3rem;
            color: #fff;
            font-weight: 900;
        }

        .hero-mini-card span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .hero-float-badge {
            position: absolute;
            top: -14px;
            left: -14px;
            background: var(--gold);
            color: var(--bg-dark);
            font-family: var(--ff-display);
            font-size: 0.78rem;
            font-weight: 800;
            padding: 10px 18px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        /* ============ BREADCRUMB ============ */
        .breadcrumb-bar {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-soft);
            padding: 14px 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.86rem;
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .sep {
            color: var(--text-light);
        }

        .breadcrumb .current {
            color: var(--primary);
            font-weight: 700;
        }
        /* ============ SECTION UTILITIES ============ */
        .section-pad {
            padding: 90px 0;
        }

        .sec-header {
            margin-bottom: 50px;
        }

        .sec-header.center {
            text-align: center;
        }

        .sec-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-xlight);
            color: var(--primary);
            border: 1px solid var(--border-primary);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .sec-label::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
        }

        .sec-title {
            font-family: var(--ff-display);
            font-size: clamp(1.7rem, 3.5vw, 2.6rem);
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .sec-title span {
            color: var(--primary);
        }

        .sec-desc {
            font-size: 1.02rem;
            color: var(--text-muted);
            max-width: 640px;
            line-height: 1.9;
        }

        .sec-header.center .sec-desc {
            margin: 0 auto;
        }

        .divider-line {
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
            margin: 14px 0 20px;
        }

        .center .divider-line {
            margin: 14px auto 20px;
        }

        /* ============ STORY SECTION ============ */
        .story-section {
            background: var(--bg-white);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-visual {
            position: relative;
        }

        .story-img-wrap {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .story-img-wrap img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .story-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
        }

        .story-overlay h4 {
            font-family: var(--ff-display);
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .story-overlay p {
            font-size: 0.82rem;
            opacity: 0.8;
        }

        .story-year-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: #fff;
            padding: 10px 18px;
            border-radius: var(--radius-md);
            font-family: var(--ff-display);
            font-weight: 900;
            font-size: 1rem;
            box-shadow: var(--shadow-primary);
        }

        .story-text h2 {
            font-family: var(--ff-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.35;
        }

        .story-text h2 span {
            color: var(--primary);
        }

        .story-text p {
            font-size: 1rem;
            line-height: 2;
            margin-bottom: 16px;
        }

        .story-text p:last-of-type {
            margin-bottom: 0;
        }

        .story-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .story-hl {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-xlight);
            border: 1px solid var(--border-primary);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* ============ WHO WE ARE ============ */
        .who-section {
            background: var(--bg-page);
        }

        .who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .who-text p {
            font-size: 1rem;
            line-height: 2;
            margin-bottom: 16px;
        }

        .who-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .who-card {
            background: var(--bg-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: var(--transition);
        }

        .who-card:hover {
            border-color: var(--border-primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .who-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--primary-xlight);
            border: 1px solid var(--border-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 14px;
            transition: var(--transition);
        }

        .who-card:hover .who-card-icon {
            background: var(--primary);
            color: #fff;
        }

        .who-card h4 {
            font-family: var(--ff-display);
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .who-card p {
            font-size: 0.86rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* ============ SERVICES ============ */
        .services-section {
            background: var(--bg-white);
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .svc-item {
            background: var(--bg-page);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 30px 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .svc-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .svc-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-6px);
        }

        .svc-item:hover::before {
            transform: scaleX(1);
        }

        .svc-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--primary-xlight);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            margin: 0 auto 16px;
            transition: var(--transition);
            border: 1px solid var(--border-primary);
        }

        .svc-item:hover .svc-icon {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: scale(1.08);
        }

        .svc-item h4 {
            font-family: var(--ff-display);
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .svc-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============ WHY US ============ */
        .why-section {
            background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .why-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
        }

        .why-section .sec-title {
            color: #fff;
        }

        .why-section .sec-desc {
            color: rgba(255, 255, 255, 0.6);
        }

        .why-section .divider-line {
            background: var(--accent);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: var(--transition);
        }

        .why-card:hover {
            background: rgba(155, 23, 40, 0.15);
            border-color: rgba(155, 23, 40, 0.4);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        .why-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(155, 23, 40, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .why-card:hover .why-card-icon {
            background: var(--primary);
            color: #fff;
            transform: scale(1.08);
        }

        .why-card h4 {
            font-family: var(--ff-display);
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.85;
        }

        /* ============ VALUES ============ */
        .values-section {
            background: var(--bg-page);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .value-card {
            background: var(--bg-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            gap: 18px;
            transition: var(--transition);
        }

        .value-card:hover {
            border-color: var(--border-primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .value-num {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--ff-display);
            font-weight: 900;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .value-card h4 {
            font-family: var(--ff-display);
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .value-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.85;
        }

        /* ============ VISION & MISSION ============ */
        .vm-section {
            background: var(--bg-white);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .vm-card {
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }

        .vm-card.vision {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
        }

        .vm-card.mission {
            background: var(--bg-page);
            border: 2px solid var(--border-primary);
            color: var(--text-body);
        }

        .vm-card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0.3;
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .vm-card h3 {
            font-family: var(--ff-display);
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 16px;
            position: relative;
        }

        .vm-card p {
            font-size: 1rem;
            line-height: 2;
            position: relative;
        }

        .vm-card.vision p {
            color: rgba(255, 255, 255, 0.85);
        }

        /* ============ COVERAGE ============ */
        .coverage-section {
            background: var(--bg-page);
        }

        .coverage-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        .coverage-text h2 {
            font-family: var(--ff-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.35;
        }

        .coverage-text h2 span {
            color: var(--primary);
        }

        .coverage-text p {
            font-size: 1rem;
            line-height: 2;
            margin-bottom: 16px;
        }

        .coverage-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .cov-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-white);
            border: 1px solid var(--border-soft);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-body);
            transition: var(--transition);
        }

        .cov-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-xlight);
        }

        .cov-tag i {
            color: var(--primary);
            font-size: 0.9rem;
        }

        .coverage-visual {
            background: linear-gradient(135deg, var(--primary-xlight), #fff);
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            border: 1px solid var(--border-primary);
        }

        .coverage-visual i {
            font-size: 5rem;
            color: #fff;
            margin-bottom: 16px;
            opacity: 0.6;
        }

        .coverage-visual h4 {
            font-family: var(--ff-display);
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .coverage-visual p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ============ CLOSING ============ */
        .closing-section {
            background: var(--bg-white);
            padding: 100px 0;
            text-align: center;
        }

        .closing-section .closing-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-xlight);
            border: 2px solid var(--border-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--primary);
            margin: 0 auto 24px;
        }

        .closing-section h2 {
            font-family: var(--ff-display);
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .closing-section h2 span {
            color: var(--primary);
        }

        .closing-section .closing-text {
            max-width: 750px;
            margin: 0 auto 36px;
            font-size: 1.08rem;
            line-height: 2.1;
            color: var(--text-body);
        }

        .closing-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============ CTA ============ */
        .cta-strip {
            background: var(--primary);
            padding: 60px 0;
            text-align: center;
        }

        .cta-strip h2 {
            font-family: var(--ff-display);
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 12px;
        }

        .cta-strip p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1rem;
            margin-bottom: 28px;
        }

        .cta-strip .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
        }

        .btn-wa-border {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-wa-border:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-3px);
        }

        /* ============ FOOTER ============ */
        /* Ensure footer columns are visible on the About page even if the global
           animation script isn't loaded here. This overrides the default
           fade-in which sets opacity:0 until JS adds .footer-visible. */
        .site-footer .footer-col {
            opacity: 1 !important;
            transform: none !important;
        }

        /* ============ FLOATING ============ */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            z-index: 999;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.45);
            animation: waPulse 2s ease-in-out infinite;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.12);
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.45)
            }

            50% {
                box-shadow: 0 5px 40px rgba(37, 211, 102, 0.65)
            }
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            cursor: pointer;
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
        }

        /* ============ REVEAL ============ */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============ MOBILE NAV ============ */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--bg-white);
            z-index: 2000;
            transition: right 0.4s ease;
            padding: 80px 24px 24px;
            box-shadow: var(--shadow-lg);
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav a {
            display: block;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-body);
            border-bottom: 1px solid var(--border-soft);
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        /* ============ RESPONSIVE ============ */
        @media(max-width:1024px) {

            .hero-inner,
            .story-grid,
            .who-grid,
            .vm-grid,
            .coverage-content {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-box:nth-child(2)::after {
                display: none;
            }
        }

        @media(max-width:768px) {

            .nav-links,
            .header-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .about-hero {
                padding: 140px 0 70px;
                min-height: auto;
            }

            .hero-text-col h1 {
                font-size: 1.7rem;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .hero-mini-row {
                grid-template-columns: 1fr 1fr;
            }

            .stats-inner {
                grid-template-columns: 1fr 1fr;
            }

            .stat-num {
                font-size: 1.8rem;
            }

            .closing-section h2 {
                font-size: 1.6rem;
            }

            .svc-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:480px) {
            .svc-grid {
                grid-template-columns: 1fr;
            }

            .who-cards {
                grid-template-columns: 1fr;
            }
        }
