/* RESET FIX (IMPORTANT) */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* FONT */
body {
    font-family: 'Poppins', sans-serif;

}

/* ================= GLOBAL FIX ================= */
body {
    overflow-x: hidden;
}

.container {
    width: 100%;
}

/* ================= HEADER ================= */
.header-wrapper {
    width: 100%;
    z-index: 999;
}

/* ================= TOPBAR ================= */
.topbar {
    background: #1F2937;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
}

.topbar i {
    color: #14B8A6;
    margin-right: 6px;
}

/* ================= NAVBAR ================= */
.main-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* SCROLL EFFECT */
.header-wrapper.scrolled .main-navbar {
    background: #fff;
}

/* NAV WRAPPER */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* LOGO */
.logo img {
    height: 60px;
    width: 200px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* ================= MENU ================= */
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
    /* 🔥 THIS FIXES IT */
}


/* LINKS */
.nav-menu a {
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

/* HOVER EFFECT */
.nav-menu a:hover {
    color: #2563eb;
}

/* ACTIVE LINK (PREMIUM UNDERLINE) */
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 10px;
}

/* ================= DROPDOWN MENU FIX ================= */
.nav-menu .dropdown {
    position: relative;
}
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px;
    display: none;
    min-width: 200px;
}
.nav-menu .dropdown:hover .dropdown-menu {
    display: block; /* Show on hover in desktop */
}
.nav-menu .dropdown-item {
    margin-top: 10px;
    font-weight: 500 !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    color: black !important;
    display: block;
}
.nav-menu .dropdown-item::after {
    display: none !important; /* Hide the underline */
}
.nav-menu .dropdown-item:hover {
    background: #f3f4f6 !important;
    color: #2563eb !important;
}

/* ================= BUTTON ================= */
.nav-btn {
    background: #2563eb !important;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

/* ================= MOBILE ================= */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {

    body {
        padding-top: 80px;
    }

    /* HIDE TOPBAR */
    .topbar {
        display: none;
    }

    /* CENTER HEADER */
    .header-wrapper {
        display: flex;
        justify-content: center;
    }

    /* NAVBAR STYLE */
    .main-navbar {
        width: 92%;
        margin: 10px auto;
        padding: 12px 15px;
        border-radius: 16px;
        background: #fff;
    }

    /* WRAPPER FIX */
    .nav-wrapper {
        width: 100%;
        padding: 0;
    }

    /* LOGO */
    .logo img {
        height: 60px;
    }

    /* SHOW TOGGLE */
    .menu-toggle {
        display: block;
        font-size: 24px;
    }

    /* HIDE BUTTON */
    .nav-btn {
        display: none;
    }

    /* MOBILE MENU */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-120%);
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu a {
        font-size: 18px;
        text-align: center;
        padding: 12px 0;
    }
}

/* ================= HERO SECTION ================= */

.hero-section {
    padding: 170px 0;
    position: relative;
    overflow: hidden;
  

    /* ✅ YOUR NEW BACKGROUND IMAGE */
    background: url("../images/hero-bg-img.webp") no-repeat center center/cover;
}

/* LIGHT OVERLAY (for readability) */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* CONTENT */
.hero-content {
    max-width: 540px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: #eef2ff;
    color: #14B8A6;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* HEADING */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* COLORS */
.highlight-green {
    color: #14B8A6;
}

.highlight-blue {
    color: #2563eb;
}

/* TEXT */
.hero-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 30px;
}

/* BUTTON GROUP */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #2563eb !important;
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px) !important;
}

/* SECONDARY BUTTON */
.btn-secondary {
    border: 1px solid #2563eb !important;
    background: #eef2ff !important;
    color: #2563eb !important;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #e0e7ff;
}

/* ================= TRUST UI ================= */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.hero-trust p {
    font-size: 14px;
    margin: 0;
    color: #374151;
}


.hero-image img {
    width: 100% !important;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-direction: column;
    }

    .hero-image {
        margin-top: 40px;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
    background: #f3f4f6;
    padding: 30px 0;
}

/* BOX */
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ICON */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ICON COLORS */
.icon.blue {
    background: #e0edff;
    color: #2563eb;
}

.icon.green {
    background: #e6f9f6;
    color: #10b981;
}

.icon.teal {
    background: #e0f7f5;
    color: #14b8a6;
}

/* TEXT */
.feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
}

.feature-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
    padding: 40px 0;
    background: #f9fafb;
}

/* OUTER CONTAINER (important for same UI) */
.feature-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    background: #f1f5f9;
    /* soft grey bg */
    padding: 25px 30px;
    border-radius: 16px;
}

/* EACH ITEM */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

/* ICON BOX */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* ICON COLORS (matched to image) */
.feature-icon.blue {
    background: #e7efff;
    color: #2563eb;
}

.feature-icon.green {
    background: #e6f9f6;
    color: #10b981;
}

.feature-icon.teal {
    background: #e0f7f5;
    color: #14b8a6;
}

/* TEXT */
.feature-text h6 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .feature-wrapper {
        flex-direction: column;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* WRAPPER */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: center;
    gap: 40px;

    background: #eef2f7;
    padding: 40px;
    border-radius: 18px;
}

/* TAG */
.about-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    display: inline-block;
    margin-bottom: 10px;
}

/* HEADINGS */
.about-left h3,
.about-right h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: #10b981;
    font-size: 18px;
}

/* IMAGE */
.about-img {
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-img img {
    width: 100%;
    border-radius: 12px;
}

/* RIGHT TEXT */
.about-right p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    background: #2563eb !important;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #1d4ed8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-center {
        order: -1;
    }

    .about-list li {
        justify-content: center;
    }
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* TITLE */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

/* CARD */
.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ICON */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

/* ICON COLORS */
.service-icon.blue {
    background: #2563eb;
    color: #fff;
}

.service-icon.green {
    background: #10b981;
    color: #fff;
}

.service-icon.purple {
    background: #7c3aed;
    color: #fff;
}

/* TEXT */
.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LINK */
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more i {
    transition: 0.3s;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* BUTTON */
.explore-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #1d4ed8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .service-card {
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 20px;
    }
}

/* ================= PROCESS SECTION ================= */
.process-section {
    padding: 80px 0;
    background: #f9fafb;
}

.process-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 60px;
}

/* WRAPPER */
.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    text-align: center;
}

/* CENTER LINE (MAIN FIX) */
.process-line {
    position: absolute;
    top: 22px;
    /* aligns with circle center */
    left: 8%;
    width: 84%;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

/* STEP */
.process-step {
    position: relative;
    z-index: 2;
}

/* CIRCLE */
.step-circle {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* COLORS */
.step-circle.blue {
    background: #e7efff;
    color: #2563eb;
}

.step-circle.green {
    background: #e6f9f6;
    color: #10b981;
}

.step-circle.orange {
    background: #fff3e6;
    color: #f97316;
}

.step-circle.purple {
    background: #f3e8ff;
    color: #7c3aed;
}

/* TEXT */
.process-step h6 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: #6b7280;
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-line {
        display: none;
    }
}

/* ================= TRUSTED SECTION ================= */
.trusted-section {
    padding: 50px 0;
    background: #f9fafb;
}

/* TITLE */
.trusted-title {
    font-size: 30px;
    font-weight: 700;
    color: black;
    margin-bottom: 30px;
}

/* SWIPER */
.trustedSwiper {
    padding: 10px 0;
}

/* LOGOS */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 120px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}

.swiper-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}


/* ================= LEAD SECTION ================= */
.lead-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* WRAPPER */
.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;

    background: #eef2f7;
    padding: 40px;
    border-radius: 18px;
}

/* LEFT */
.lead-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
    display: inline-block;
}

.lead-left h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

/* LIST */
.lead-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.lead-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: #374151;
}

.lead-list i {
    color: #10b981;
    font-size: 18px;
}

/* WHATSAPP */
.whatsapp-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6b7280;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f9f6;
    color: #10b981;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #10b981;
}

/* FORM */
.lead-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
}

/* INPUTS */
.lead-form label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: #374151;
}

/* INPUT + SELECT SAME STYLE */
.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background-color: #fff;
    appearance: none; /* REMOVE DEFAULT STYLE */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* FOCUS EFFECT */
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    background: #2563eb !important;
    color: #fff !important;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1d4ed8 !important;
}

/* NOTE */
.form-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .lead-wrapper {
        grid-template-columns: 1fr;
    }

    .lead-left {
        text-align: center;
    }

    .lead-list li {
        justify-content: center;
    }
}


/* ================= CTA SECTION ================= */
.cta-section {
    padding: 20px 0;
    background: #f9fafb;
}

/* WRAPPER */
.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 40px 50px;
    border-radius: 18px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* RIGHT DOT PATTERN */
.cta-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
}

/* LEFT */
.cta-left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-left p {
    font-size: 14px;
    color: #cbd5f5;
    max-width: 420px;
}

/* RIGHT */
.cta-right {
    text-align: right;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #e0e7ff;
}

/* TRUST */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 13px;
    color: #e5e7eb;
}

/* AVATARS */
.cta-avatars {
    display: flex;
}

.cta-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    margin-left: -10px;
}

.cta-avatars img:first-child {
    margin-left: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        text-align: center;
    }

    .cta-trust {
        justify-content: center;
    }
}

/* ================= FOOTER ================= */
.footer-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #cbd5e1;
    padding: 60px 0 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* WRAPPER */
.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* HEADINGS */
.footer-col h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* CONTACT ICONS */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #2563eb;
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* BOTTOM LINKS */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ================= FLOATING BUTTONS ================= */

.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* BASE BUTTON */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    text-decoration: none;
    border: none;
    cursor: pointer;

    transition: 0.3s ease;
}

/* WHATSAPP */
.float-btn.whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* SCROLL TOP */
.float-btn.scroll-top {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
    display: none;
}

/* HOVER */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

/* PULSE EFFECT */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp {
    animation: pulse 2s infinite;
}

/* MODAL BASE */
.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
}

/* ACTIVE */
.custom-modal.active {
    display: block;
}

/* OVERLAY */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* BOX */
.modal-box {
    position: relative;
    max-width: 700px;
    width: 90%;
    margin: 60px auto;

    background: #fff;
    border-radius: 20px;
    padding: 30px;

    z-index: 2;
    animation: popup 0.3s ease;
}

.modal-box h3 {
    font-weight: bold;
}

/* ANIMATION */
@keyframes popup {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CLOSE */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* FORM */
.modal-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
}

/* TEXTAREA */
textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #14B8A6, #0F766E);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

/* TEXT */
.response-text {
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
    color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* ================= 404 PAGE ================= */

.notfound-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
    text-align: center;
}

.notfound-section h1 {
    font-size: 120px;
    font-weight: 800;
    color: #14B8A6;
}

.notfound-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.notfound-section p {
    color: #cbd5f5;
    margin-bottom: 25px;
}

.notfound-buttons a {
    display: inline-block;
    margin: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #14B8A6;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #14B8A6;
    color: #14B8A6;
}