    

        :root {
            --next-navy: #0a1628;
            --next-blue: #1a56db;
            --next-blue-light: #3b82f6;
            --next-gold: #f59e0b;
            --next-gold-light: #fbbf24;
            --next-white: #ffffff;
            --next-gray-50: #f9fafb;
            --next-gray-100: #f3f4f6;
            --next-gray-200: #e5e7eb;
            --next-gray-300: #d1d5db;
            --next-gray-600: #4b5563;
            --next-gray-700: #374151;
            --next-gray-800: #1f2937;
            --next-gray-900: #111827;
            --next-gradient: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--next-gray-800);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
        .fw-800 { font-weight: 800; }
        .fw-900 { font-weight: 900; }

      
/* ========== NAVBAR ========== */
.navbar {
    padding: 0.5rem 0;
    background: var(--next-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all var(--transition);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ========== LOGO / BRAND ========== */
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--next-navy) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.navbar-brand .brand-logo-img {
    height: 87px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.navbar-brand .brand-logo-fallback {
    height: 36px;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.navbar-brand .brand-logo-fallback i {
    font-size: 1.8rem;
    color: var(--next-gold);
}

.navbar-brand .brand-text {
    display: flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
}

.navbar-brand .brand-dot {
    color: var(--next-gold);
}

/* ========== NAV LINKS ========== */
.nav-link {
    font-weight: 500;
    color: var(--next-gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--next-blue) !important;
}

/* ========== HEADER PHONE ========== */
.header-phone {
    font-weight: 700;
    color: var(--next-navy);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-phone:hover { color: var(--next-blue); }
.header-phone i { color: var(--next-blue); }

/* ========== BUTTONS ========== */
.btn-quote {
    background: var(--next-gold);
    color: var(--next-navy);
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-quote:hover {
    background: var(--next-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--next-navy);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .navbar-brand .brand-logo-img,
    .navbar-brand .brand-logo-fallback {
        height: 30px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .header-phone {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    .btn-quote {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
        gap: 0.5rem;
    }
    
    .navbar-brand .brand-logo-img,
    .navbar-brand .brand-logo-fallback {
        height: 26px;
    }
}
/* ========== NAV LINKS ========== */
.nav-link {
    font-weight: 500;
    color: var(--next-gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--next-blue) !important;
}

/* ========== HEADER PHONE ========== */
.header-phone {
    font-weight: 700;
    color: var(--next-navy);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-phone:hover { color: var(--next-blue); }
.header-phone i { color: var(--next-blue); }

/* ========== BUTTONS ========== */
.btn-quote {
    background: var(--next-gold);
    color: var(--next-navy);
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-quote:hover {
    background: var(--next-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--next-navy);
}

/* ========== RESPONSIVE NAVBAR ========== */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .navbar-brand .brand-logo-wrapper {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .header-phone {
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .btn-quote {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .navbar-brand .brand-logo-wrapper {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
}

.navbar-brand .brand-logo-img {
    height: 65px !important;
    width: 90px;
    display: flex;
    object-fit: inherit;
    object-position: center;
    flex-shrink: 0;
}
        .header-phone {
            font-weight: 700;
            color: var(--next-navy);
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .header-phone:hover { color: var(--next-blue); }
        .header-phone i { color: var(--next-blue); }

        .btn-quote {
            background: var(--next-gold);
            color: var(--next-navy);
            font-weight: 700;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            border: none;
            transition: all var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .btn-quote:hover {
            background: var(--next-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            color: var(--next-navy);
        }
        .btn-primary-custom {
            background: var(--next-blue);
            color: white;
            font-weight: 600;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            border: none;
            transition: all var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.5rem;
        }
        .btn-primary-custom:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
            color: white;
        }
        .btn-outline-custom {
            background: transparent;
            color: white;
            font-weight: 600;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            border: 2px solid white;
            transition: all var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.5rem;
        }
        .btn-outline-custom:hover {
            background: white;
            color: var(--next-navy);
            transform: translateY(-2px);
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
            font-weight: 600;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            border: none;
            transition: all var(--transition);
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.5rem;
        }
        .btn-whatsapp:hover {
            background: #1ebe57;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* ========== HERO ========== */
        .hero-section {
            background: var(--next-gradient);
            padding: 7rem 0 5rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            letter-spacing: -1px;
            line-height: 1.1;
            position: relative;
            z-index: 1;
        }
        .hero-title .highlight {
            color: var(--next-gold);
            position: relative;
            display: inline-block;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.85);
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        /* Hero Buttons Container */
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-buttons .btn {
            text-align: center;
            justify-content: center;
        }
        
        /* Stats Row - perfectly aligned */
        .hero-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
            position: relative;
            z-index: 1;
        }
        .stat-item {
            text-align: center;
            padding: 1rem 0.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            transition: all var(--transition);
        }
        .stat-item:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(245,158,11,0.3);
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--next-gold);
            line-height: 1;
            margin-bottom: 0.4rem;
        }
        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
            font-weight: 500;
            line-height: 1.3;
        }
        
        .hero-image-wrapper {
            position: relative;
            z-index: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
        }
        .hero-image-wrapper img {
            width: 100%;
            min-height: 400px;
            object-fit: cover;
            display: block;
        }

        /* ========== SECTIONS ========== */
        .section-padding { padding: 6rem 0; }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--next-navy);
            letter-spacing: -0.5px;
        }
        .section-subtitle {
            color: var(--next-gray-600);
            font-size: 1.15rem;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all var(--transition);
            border: 1px solid var(--next-gray-200);
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: var(--next-blue-light);
        }
        .service-icon {
            width: 80px; height: 80px;
            background: var(--next-gradient);
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.2rem;
            color: white;
        }
        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--next-navy);
            margin-bottom: 0.75rem;
        }
        .service-card p {
            color: var(--next-gray-600);
            font-size: 0.95rem;
            margin-bottom: 0;
        }


/* =========================================================
   ULTRA MODERN ABOUT SECTION
========================================================= */

.modern-about-section {
    position: relative;
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
    z-index: 1;
}

/* =========================
   BACKGROUND SHAPES
========================= */

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, 0.10);
    top: -120px;
    right: -120px;
}

.shape-2 {
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, 0.08);
    bottom: -100px;
    left: -100px;
}

/* =========================
   CONTAINER
========================= */

.modern-about-section .container {
    max-width: 1280px;
}

/* =========================
   IMAGE
========================= */

.modern-about-image-wrapper {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 680px;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.10),
        0 8px 20px rgba(15, 23, 42, 0.05);
}

/* overlay */
.modern-about-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15,23,42,0.55),
            rgba(15,23,42,0.05)
        );
}

/* image */
.modern-about-image {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    transition: transform .7s ease;
    display: block;
}

.modern-about-image-wrapper:hover .modern-about-image {
    transform: scale(1.05);
}

/* =========================
   FLOATING CARD
========================= */

.modern-about-floating-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 24px;

    padding: 18px 22px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.floating-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(212,175,55,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c89b2d;
    font-size: 1.4rem;
}

.modern-about-floating-card h5 {
    margin-bottom: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.modern-about-floating-card p {
    margin: 0;
    font-size: .92rem;
    color: #64748b;
}

/* =========================
   EXPERIENCE BADGE
========================= */

.experience-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 3;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: rgba(15,23,42,0.82);

    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);
}

.experience-badge strong {
    font-size: 2rem;
    line-height: 1;
    color: var(--next-gold);
}

.experience-badge span {
    font-size: .78rem;
    margin-top: 5px;
    text-align: center;
    line-height: 1.4;
}

/* =========================
   CONTENT
========================= */

.modern-about-content {
    max-width: 620px;
}

/* badge */
.modern-about-badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(212,175,55,0.12);

    color: var(--next-gold);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

/* title */
.modern-about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 26px;
}

.modern-about-title span {
    display: block;
    color: var(--next-gold);
}

/* text */
.modern-about-text {
    font-size: 1.06rem;
    line-height: 2;
    color: #64748b;
    margin-bottom: 2rem;
}

/* =========================
   FEATURES
========================= */

/* about  */

/* =========================================
   MODERN ABOUT SECTION
========================================= */

.modern-about-section {
    position: relative;
    background: #f8fafc;
    padding: 120px 0;
    overflow: hidden;
}

/* background shapes */
.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(212,175,55,0.12);
    top: -80px;
    left: -80px;
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(59,130,246,0.10);
    bottom: -80px;
    right: -80px;
}

.modern-about-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   IMAGE SIDE
========================================= */

.modern-about-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 620px;

    box-shadow:
        0 25px 60px rgba(15,23,42,0.12);
}

.modern-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 620px;
    transition: transform .5s ease;
}

.modern-about-image-wrapper:hover .modern-about-image {
    transform: scale(1.05);
}

/* floating card */
.modern-about-floating-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px;

    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.floating-icon {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--next-gold),
            #f0c14b
        );

    color: #111827;
    font-size: 1.4rem;
}

/* =========================================
   CONTENT
========================================= */

.modern-about-badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(212,175,55,0.12);

    color: #b8860b;

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

.modern-about-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;

    color: #0f172a;

    margin-bottom: 24px;
}

.modern-about-title span {
    display: block;
    color: var(--next-gold);
}

.modern-about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

/* =========================================
   FEATURE CARDS
========================================= */

.modern-about-features {
    display: grid;
    gap: 20px;
    margin-top: 35px;
}

.modern-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 24px;

    background: rgba(255,255,255,0.85);

    border: 1px solid rgba(15,23,42,0.05);

    border-radius: 24px;

    transition: all .3s ease;

    box-shadow:
        0 10px 30px rgba(15,23,42,0.04);
}

.modern-feature-card:hover {
    transform: translateY(-6px);
}

.modern-feature-icon {
    width: 62px;
    height: 62px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    color: #fff;
    font-size: 1.3rem;

    flex-shrink: 0;
}

.modern-feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modern-feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* =========================================
   INFO CARDS
========================================= */

.about-modern-info-card {
    height: 100%;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255,255,255,0.88);

    border: 1px solid rgba(15,23,42,0.06);

    box-shadow:
        0 20px 40px rgba(15,23,42,0.05);

    transition: all .3s ease;
}

.about-modern-info-card:hover {
    transform: translateY(-8px);
}

.info-card-icon {
    width: 72px;
    height: 72px;

    border-radius: 22px;

    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--next-gold),
            #f0c14b
        );

    color: #111827;
    font-size: 1.5rem;
}

.about-modern-info-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-modern-info-card p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* =========================================
   BUTTONS
========================================= */

.modern-about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* primary */
.modern-btn-primary {
    height: 58px;
    padding: 0 32px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--next-gold),
            #f0c14b
        );

    color: #111827;

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(212,175,55,0.25);

    transition: all .3s ease;
}

.modern-btn-primary:hover {
    transform: translateY(-3px);
    color: #111827;
}

/* outline */
.modern-btn-outline {
    height: 58px;
    padding: 0 32px;

    border-radius: 50px;

    border: 1px solid rgba(15,23,42,0.08);

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(8px);

    color: #0f172a;

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    transition: all .3s ease;
}

.modern-btn-outline:hover {
    background: #0f172a;
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .modern-about-image-wrapper {
        min-height: 520px;
    }

    .modern-about-image {
        min-height: 520px;
    }

    .modern-about-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {

    .modern-about-section {
        padding: 80px 0;
    }

    .modern-about-image-wrapper {
        min-height: 380px;
        border-radius: 26px;
    }

    .modern-about-image {
        min-height: 380px;
    }

    .modern-about-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 16px;
    }

    .modern-about-title {
        font-size: 2.3rem;
    }

    .about-modern-info-card {
        padding: 28px;
    }

    .about-modern-info-card h3 {
        font-size: 1.6rem;
    }

    .modern-about-actions {
        flex-direction: column;
    }

    .modern-btn-primary,
    .modern-btn-outline {
        width: 100%;
        justify-content: center;
    }
}
/* about  */
        
        /* Difference Section */
        .difference-section {
            background: var(--next-gray-50);
        }
        .difference-card {
            text-align: center;
            padding: 2rem;
        }
        .difference-icon {
            width: 70px; height: 70px;
            background: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--next-blue);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid var(--next-gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all var(--transition);
        }
        .testimonial-card:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
            border-color: var(--next-gold);
        }
        .testimonial-stars {
            color: var(--next-gold);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .testimonial-text {
            color: var(--next-gray-700);
            font-size: 0.95rem;
            flex-grow: 1;
            line-height: 1.7;
        }
        .testimonial-author {
            font-weight: 700;
            color: var(--next-navy);
            margin-top: 1rem;
        }
        .testimonial-date {
            color: var(--next-gray-600);
            font-size: 0.85rem;
        }
        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            font-weight: 600;
            color: var(--next-gray-700);
            margin-bottom: 0.5rem;
        }

        /* Reviews Horizontal Scroll - Mobile Only */
.reviews-scroll-wrapper {
    position: relative;
}

@media (max-width: 991px) {
    .reviews-scroll-wrapper .row {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
        padding-bottom: 1rem;
    }
    
    .reviews-scroll-wrapper .row::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .reviews-scroll-wrapper .col-10 {
        min-width: 300px;
        max-width: 320px;
    }
}

@media (min-width: 992px) {
    .reviews-scroll-wrapper .row {
        flex-wrap: wrap !important;
        overflow: visible !important;
    }
}

        /* Locations Grid */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.75rem;
        }
        .location-item {
            background: white;
            border: 1px solid var(--next-gray-200);
            border-radius: 10px;
            padding: 0.85rem 1rem;
            text-align: center;
            font-weight: 500;
            color: var(--next-gray-700);
            transition: all 0.2s;
            font-size: 0.9rem;
            cursor: default;
        }
        .location-item:hover {
            border-color: var(--next-blue);
            color: var(--next-blue);
            box-shadow: 0 4px 12px rgba(26,86,219,0.1);
            transform: translateY(-2px);
        }
        .location-item.featured {
            background: var(--next-gradient);
            color: white;
            border-color: transparent;
            font-weight: 600;
        }

        /* FAQ Accordion */
        .accordion-item {
            border: 1px solid var(--next-gray-200) !important;
        }
        .accordion-button {
            font-weight: 600;
        }
        .accordion-button:not(.collapsed) {
            background: var(--next-gradient);
            color: white;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--next-blue);
        }

        /* CTA Section */
        .cta-section {
            background: var(--next-gradient);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta-section h2 {
            color: white;
            font-weight: 800;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer {
            background: var(--next-navy);
            color: rgba(255,255,255,0.7);
            padding: 4rem 0 2rem;
        }
        .footer h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.95rem;
        }
        .footer a:hover { color: var(--next-gold); }
        .footer .contact-info p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .footer .contact-info i {
            color: var(--next-gold);
            margin-right: 0.5rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            margin: 0 0.5rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .hero-section { padding: 5rem 0 3rem; }
            .section-title { font-size: 2.2rem; }
            .hero-stats-row {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }
            .stat-number { font-size: 1.8rem; }
            .stat-label { font-size: 0.78rem; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                margin-top: 1rem;
            }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 2rem; }
            .hero-subtitle { font-size: 1rem; }
            .section-title { font-size: 1.8rem; }
            .hero-stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .stat-number { font-size: 1.8rem; }
            .stat-label { font-size: 0.8rem; }
            .section-padding { padding: 3rem 0; }
            .location-grid { grid-template-columns: repeat(2, 1fr); }
            .navbar-brand { font-size: 1.3rem; }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .hero-title { font-size: 1.7rem; }
            .hero-stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .stat-item { padding: 0.75rem 0.5rem; }
            .stat-number { font-size: 1.6rem; }
            .stat-label { font-size: 0.75rem; }
            .location-grid { grid-template-columns: 1fr 1fr; }
        }
		
		.rounded-pill {
				border-radius: var(--bs-border-radius-pill)
			50rem
			 !important;
				margin-top: 8px;
		}