/* ═══════════════════════════════════════════════
   SLS Safe Company - Shared Styles
   Bootstrap 5 + Custom Theme
   ═══════════════════════════════════════════════ */

:root {
    --navy: #115c6b;
    --navy-mid: #096c80;
    --navy-light: #0088a4
    --slate: #2a3f5f;
    --gold: #c9953c;
    --gold-light: #e0b85c;
    --gold-pale: #f5e6c4;
    --cream: #faf8f4;
    --text-dark: #1a1a2e;
    --text-body: #3d3d56;
    --text-muted: #6b7280;
    --border-light: #e5e5e5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-body);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}
.top-bar a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}
.top-bar a:hover { color: #fff; }
.top-bar .bi { font-size: 0.9rem; }

/* ─── Navbar ─── */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 0.8rem 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy) !important;
    letter-spacing: -0.02em;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.dropdown-menu {
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-radius: 0.5rem;
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: 0.35rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.dropdown-item:hover { background: var(--cream); color: var(--gold); }
.btn-quote {
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 0.4rem;
    font-size: 0.9rem;
    transition: all 0.25s;
}
.btn-quote:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201,149,60,0.35);
}

/* ─── Page Header / Hero Banner ─── */
.page-hero {
    background: linear-gradient(135deg, #063d4a 0%, #1a6786 50%, #2a3f5f 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3.5rem;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201,149,60,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,149,60,0.05) 0%, transparent 50%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.page-hero .breadcrumb {
    margin-bottom: 0.75rem;
}
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.page-hero .breadcrumb-item a:hover { color: var(--gold-light); }
.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.page-hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}
.page-hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 620px;
}

/* ─── Sections ─── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ─── Content Prose ─── */
.prose {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-body);
}
.prose p { margin-bottom: 1.25rem; }
.prose h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.prose h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.prose ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}
.prose li {
    margin-bottom: 0.4rem;
    padding-left: 0.25rem;
}

/* ─── Feature Cards ─── */
.feature-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    background: var(--cream);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-size: 1.4rem;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon {
    background: var(--gold);
    color: #fff;
}
.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ─── Service List ─── */
.service-list {
    list-style: none;
    padding: 0;
}
.service-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}
.service-list li:last-child { border-bottom: none; }
.service-list .bi {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ─── Sidebar Contact Card ─── */
.contact-card {
    background: var(--navy);
    border-radius: 0.75rem;
    padding: 2rem;
    color: #fff;
}
.contact-card h3 {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
}
.contact-card-item .bi {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}
.contact-card-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-card-item a:hover { color: var(--gold-light); }

/* ─── Stat Bar ─── */
.stat-bar {
    background: var(--cream);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, #063d4a 0%, #1a6786 50%, #2a3f5f 100%);
    border-radius: 1rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,149,60,0.1) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

/* ─── Buttons ─── */
.btn-primary-gold {
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 0.45rem;
    font-size: 1rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary-gold:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,149,60,0.35);
}
.btn-outline-light-custom {
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.85rem 2rem;
    border-radius: 0.45rem;
    font-size: 1rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}
.site-footer h5 {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}
.footer-contact-item .bi { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; }
.footer-contact-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 3rem;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}
.footer-brand span { color: var(--gold); }

/* ─── Form Styles ─── */
.form-control, .form-select {
    border: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.45rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,149,60,0.15);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

/* ─── Location Card ─── */
.location-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 2rem;
    height: auto;
    transition: all 0.3s;
}
.location-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.location-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* ─── Utilities ─── */
.bg-cream { background: var(--cream); }
.text-gold { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .page-hero { padding: 3rem 0 2.5rem; }
    .section { padding: 3.5rem 0; }
    .cta-banner { padding: 2.5rem; }
}
@media (max-width: 575px) {
    .cta-banner { padding: 2rem 1.5rem; }
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}




 
        h2,
        h3,
        h4,
        .display-font {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
        }

        /* ─── Top Bar ─── */
       


  



        .nav-link:hover {
            color: var(--gold) !important;
        }


   

      

        /* ─── Hero ─── */
        .hero {
            background:linear-gradient(135deg, #063d4a 0%, #1a6786 50%, #2a3f5f 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 0 5rem;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(201, 149, 60, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 149, 60, 0.05) 0%, transparent 50%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.4;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 149, 60, 0.12);
            border: 1px solid rgba(201, 149, 60, 0.25);
            color: var(--gold-light);
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out both;
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .hero h1 em {
            color: var(--gold-light);
            font-style: normal;
        }

        .hero-sub {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.15rem;
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .btn-hero-primary {
            background: var(--gold);
            color: #fff;
            font-weight: 600;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 0.45rem;
            font-size: 1rem;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-hero-primary:hover {
            background: var(--gold-light);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 149, 60, 0.35);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.85rem 2rem;
            border-radius: 0.45rem;
            font-size: 1rem;
            transition: all 0.25s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.35);
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--gold-light);
            line-height: 1;
        }

        .hero-stat-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.82rem;
            margin-top: 0.35rem;
            letter-spacing: 0.03em;
        }

        /* Hero right side image area */
        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .hero-image-frame {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 1.5rem;
            position: relative;
        }

        .hero-image-frame img {
            width: 100%;
            border-radius: 0.6rem;
            display: block;
        }

        .hero-trust-badge {
            position: absolute;
            bottom: -1rem;
            right: -1rem;
            background: #fff;
            padding: 0.8rem 1.2rem;
            border-radius: 0.7rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .hero-trust-badge .bi {
            color: var(--gold);
            font-size: 1.3rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── Services Section ─── */
      

 

        .service-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 0.75rem;
            padding: 2rem;
            transition: all 0.35s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: block;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-icon {
            width: 3.2rem;
            height: 3.2rem;
            background: var(--cream);
            border-radius: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: var(--gold);
            font-size: 1.4rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--gold);
            color: #fff;
        }

        .service-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.65;
            margin-bottom: 1rem;
        }

        .service-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.2s;
        }

        .service-card:hover .service-link {
            gap: 0.6rem;
        }

        /* ─── Why SLS ─── */
        .why-section {
            background: var(--cream);
            position: relative;
        }

        .why-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .why-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .why-label {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.4rem;
        }

        .why-desc {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* ─── Clients ─── */
        .clients-section {
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 3rem 0;
        }

        .clients-label {
            color: var(--text-muted);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .client-name {
            font-weight: 700;
            color: var(--navy);
            font-size: 0.88rem;
            padding: 0.6rem 1.2rem;
            background: var(--cream);
            border-radius: 100px;
            white-space: nowrap;
        }

        /* ─── Process Section ─── */
        .process-step {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }

        .step-number {
            width: 3rem;
            height: 3rem;
            background: var(--navy);
            color: var(--gold-light);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .process-step h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .step-connector {
            position: absolute;
            top: 2.7rem;
            right: -1.5rem;
            color: var(--border-light);
            font-size: 1.2rem;
        }

        /* ─── CTA Banner ─── */
    

        /* ─── Approved Agents ─── */
        .approved-section {
            background: var(--cream);
        }

        .brand-badge {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 0.6rem;
            padding: 1.2rem 2rem;
            font-weight: 700;
            color: var(--navy);
            font-size: 1rem;
            text-align: center;
            transition: all 0.3s;
        }

        .brand-badge:hover {
            border-color: var(--gold);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }


        /* ─── Responsive ─── */
        @media (max-width: 991px) {
            .hero {
                padding: 4rem 0 3rem;
                min-height: auto;
            }

            .hero-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
            }

            .hero-visual {
                margin-top: 3rem;
            }

            .step-connector {
                display: none;
            }

            .cta-banner {
                padding: 2.5rem;
            }
        }

        @media (max-width: 575px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-stats {
                gap: 1.2rem;
            }

            .hero-stat-num {
                font-size: 1.6rem;
            }

            .cta-banner {
                padding: 2rem 1.5rem;
            }
        }


.cookie_box{color:#000;padding:1em;text-align:left;border-radius:10px;position:fixed;width:18rem;background-color:rgb(255 255 255 / .871);bottom:8px;left:8px;z-index:9999;overflow:hidden}.fade-up{opacity:0;transform:translateY(30px);transition:opacity 0.8s ease,transform 0.8s ease}.fade-up.visible{opacity:1;transform:translateY(0)}

/* ===== FLOATING CONTACT WIDGET ===== */
    .fc-widget {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* --- Menu items container --- */
    .fc-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        margin-bottom: 14px;
        background-color:rgb(196 196 196 / 63%);
        border-top-left-radius:80px; 
        border-bottom-left-radius: 50px;
        -webkit-backdrop-filter: blur(5px);
                backdrop-filter: blur(5px);
    }

    /* --- Individual action row --- */
    .fc-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none !important;
        cursor: pointer;
        opacity: 0;
        transform: translateY(12px) scale(0.9);
        animation: fc-fadeIn 0.25s ease forwards;
    }

    .fc-item:nth-child(1) { animation-delay: 0.03s; }
    .fc-item:nth-child(2) { animation-delay: 0.07s; }
    .fc-item:nth-child(3) { animation-delay: 0.11s; }
    .fc-item:nth-child(4) { animation-delay: 0.15s; }

    @keyframes fc-fadeIn {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* --- Text label pill --- */
    .fc-label {
        background:rgb(53 53 53 / 92%);
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        padding: 10px 16px;
        border-radius: 8px;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.2s;
    }

    .fc-item:hover .fc-label {
        background: rgba(14, 132, 147, 0.95);
    }

    /* --- Icon circle --- */
    .fc-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s, box-shadow 0.2s;
        flex-shrink: 0;
    }

    .fc-item:hover .fc-icon {
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .fc-icon--phone    { background: #0e8493; }
    .fc-icon--whatsapp  { background: #25d366; }
    .fc-icon--message   { background: #3b82f6; }
    .fc-icon--enquiry   { background: #f97316; }

    /* --- Close label (appears above toggle when open) --- */
    .fc-close-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 6px;
        letter-spacing: 0.3px;
        text-align: right;
        padding-right: 4px;
    }

    /* --- Main toggle button --- */
    .fc-toggle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(14, 132, 147, 0.35);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        align-self: flex-end;
        outline: none;
    }

    .fc-toggle--default {
        background: linear-gradient(135deg, #0e8493 0%, #09719d 100%);
    }

    .fc-toggle--default:hover {
        transform: scale(1.06);
        box-shadow: 0 6px 20px rgba(14, 132, 147, 0.45);
    }

    .fc-toggle--close {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
    }

    .fc-toggle--close:hover {
        transform: scale(1.06);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    }

    /* Subtle pulse on default state to draw attention */
    .fc-toggle--default::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(14, 132, 147, 0.3);
        animation: fc-pulse 2.5s ease-in-out infinite;
    }

    @keyframes fc-pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.15); opacity: 0; }
    }

    /* Kill pulse when menu is open */
    .fc-toggle--close::after {
        display: none;
    }

    /* --- Responsive --- */
    @media (max-width: 575px) {
        .fc-widget {
            bottom: 16px;
            right: 16px;
        }

        .fc-icon {
            width: 60px;
            height: 60px;
            font-size: 1.05rem;
        }

        .fc-toggle {
            width: 52px;
            height: 52px;
            font-size: 1.2rem;
        }

        .fc-label {
            font-size: 1rem;
            padding: 10px 13px;
        }
    }

    .dropdown-menu.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 480px;
}
.dropdown-menu.two-col .dropdown-header,
.dropdown-menu.two-col .dropdown-divider {
    grid-column: 1 / -1; /* span full width */
}



