/* landing.css */

/* ------------------------------------------- */
/* 1. Root Variables & Global Setup (Design Tokens) */
/* ------------------------------------------- */
:root {
    --bs-primary: #800000; /* Primary Accent: Deep Maroon/Burgundy */
    /* #DC143C */
    --bs-secondary: #ffc300; /* Secondary Accent: Rich Golden Yellow */
    --bs-gray-900: #212529;
    --bs-gray-600: #6c757d;
    --bs-white: #ffffff;

    /* Typography */
    --bs-body-font-family: "Inter", sans-serif;
    --bs-heading-font-family: "Inter", sans-serif;
    --bs-body-color: var(--bs-gray-900);
    --bs-body-bg: var(--bs-white);

    /* Spacing & Radius */
    --bs-border-radius: 0.5rem;
    --bs-card-border-radius: 0.75rem;
    --bs-section-padding: 5rem;
}

/* Global Body Styling (No change) */
body {
    font-family: var(--bs-body-font-family);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
}

/* ------------------------------------------- */
/* 2. Typography & Headings (No change) */
/* ------------------------------------------- */

/* All Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-heading-font-family);
    color: var(--bs-gray-900);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.display-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.section-header {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-gray-900);
    margin-bottom: 1.5rem;
}

.text-subtle {
    color: var(--bs-gray-600);
    font-weight: 400;
}

.text-theme-secondary {
    color: var(--bs-secondary);
}
/* ------------------------------------------- */
/* 3. Buttons (Primary Color Updated) */
/* ------------------------------------------- */

/* Primary CTA Button Style (Bootstrap Override) */
.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #a31830; /* Darker red hover state */
    --bs-btn-hover-border-color: #a31830;
    --bs-btn-active-bg: #821326;
    --bs-btn-border-radius: var(--bs-border-radius);
    font-weight: 600;
    /* padding: 0.75rem 1.5rem; */
}

/* Outline Secondary Button Style (Bootstrap Override) */
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-border-radius: var(--bs-border-radius);
    font-weight: 600;
    /* padding: 0.75rem 1.5rem; */
}
.theme-btn {
    border-radius: 100vmax;
}

.theme-btn:hover {
    background-color: #600000; /* Darker maroon on hover */
    color: var(--bs-white);
}

#menuCanvas {
    z-index: 2000;
}
/* Container styling */
.modern-mobile-menu {
    padding: 1.5rem 1.2rem;
    font-family: "Inter", sans-serif;
}

/* Menu links */
.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: #222 !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f1f1;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: block;
}

/* Hover feel */
.mobile-link:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* Remove UL dot (if any) */
.mobile-menu li {
    list-style: none;
}

/* Buttons zone */
.menu-actions {
    margin-top: 1.2rem !important;
}

/* Make Signup button pop */

/* ------------------------------------------- */
/* 4. Cards & Feature Boxes (Active State Updated) */
/* ------------------------------------------- */

/* Generic Card/Box style */
.app-card {
    padding: 1.5rem;
    border-radius: var(--bs-card-border-radius);
    background-color: var(--bs-white);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

/* Style specifically for the Feature Icons/Boxes */
.feature-box {
    text-align: center;
    height: 100%;
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Highlighted/Active Feature Box */
.feature-box.active {
    border-color: var(--bs-primary);
    /* Focus ring using the new primary color with transparency */
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}

.feature-box-icon {
    font-size: 2.25rem;
    color: var(--bs-primary); /* Icon color is primary red */
    margin-bottom: 0.75rem;
}

/* ------------------------------------------- */
/* 5. Utility Classes (Stat Color Updated) */
/* ------------------------------------------- */

/* Consistent padding for main sections (No change) */
.section-padding {
    padding-top: var(--bs-section-padding);
    padding-bottom: var(--bs-section-padding);
}

/* Stat/Trust Number formatting */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary); /* Stat numbers are primary red */
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--bs-gray-600);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* === NAVBAR + HERO: final tuned CSS === */

/* Use your existing :root variables for colors and radii */

/* ---------- Header / Navbar ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(6px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.86),
        rgba(255, 255, 255, 0.74)
    );
    border-bottom: 1px solid rgba(16, 24, 40, 0.04);
}

.navbar {
    padding: 0.6rem 0;
    align-items: center;
}

/* logo */
.gh-logo {
    height: 52px;
    width: auto;
    border-radius: 6px;
    display: block;
}
.brand-text {
    font-weight: 800;
    color: var(--bs-gray-900);
    letter-spacing: -0.02em;
}

/* Nav links */
.navbar .nav-link {
    color: var(--bs-gray-600);
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--bs-primary);
    background: rgba(128, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Actions */
.nav-actions .btn-outline-ghost {
    background: transparent;
    border: 1px solid rgba(16, 24, 40, 0.06);
    color: var(--bs-gray-800);
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 10px;
}

/* Toggler */
.navbar-toggler {
    border: 0;
    background: transparent;
    color: var(--bs-gray-900);
}

/* Offcanvas sizing + backdrop visibility */
.offcanvas {
    width: 320px !important;
    max-width: 85%;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.offcanvas-backdrop.show {
    opacity: 0.35;
}

/* ---------- HERO ---------- */
.hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: visible !important;
    background: #9307070f;

    /* background: linear-gradient(180deg, #fff 0%, rgb(247, 248, 249) 100%); */
}

/* container internals */
.hero-container {
    max-width: 80%;
    position: relative;
}

/* Left column (text) */
.text-col {
    padding: 0.5rem 1rem;
}

.eyebrow {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 0.85rem;
    color: var(--bs-gray-600);
    font-weight: 600;
}
.eyebrow .chip {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 195, 0, 0.09);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    color: var(--bs-secondary);
    font-weight: 700;
    font-size: 0.85rem;
}
.eyebrow .muted {
    color: var(--bs-gray-400);
    font-weight: 600;
}

/* Headline */
.hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.03;
    margin: 0.1rem 0 1rem;
    color: var(--bs-gray-900);
}

.hero-title .accent {
    color: var(--bs-primary);
    display: inline-block;
}

/* Subtext */
.hero-sub {
    color: var(--bs-gray-700);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    max-width: 44ch;
}

/* CTAs */
.hero-ctas .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.05rem;
    font-weight: 700;
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(16, 24, 40, 0.06);
    color: var(--bs-gray-900);
}

/* Pill buttons */
.btn-pill {
    border-radius: 100vmax;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

/* Trust row */
.trust-row {
    align-items: center;
}
.trust-item {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.02);
    padding: 0.45rem 0.75rem;
    border-radius: 0.75rem;
}
.trust-ico {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.trust-number {
    font-weight: 800;
    color: var(--bs-gray-900);
}
.trust-text {
    font-size: 0.85rem;
    color: var(--bs-gray-600);
}

/* Right column visuals: ensure visible overflow for floats */
.visual-col {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

/* stage */
.visual-stage {
    width: 100%;
    /* max-width: 520px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
}

/* hero illustration */
.hero-illustration {
    width: 100%;
    /* max-width: 420px; */
    /* border-radius: 14px; */
    /* box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08); */
    position: relative;
    z-index: 5;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* floating card */
.float-card {
    display: none;
    position: absolute;
    z-index: 10;
    right: 6%;
    top: -30%;
    width: 170px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    padding: 8px 12px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    transform: translateY(-6px);
}

.float-card .card-header {
    display: flex;
    gap: 6px;
    padding-bottom: 6px;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-green {
    background: #22c55e;
}
.dot-yellow {
    background: #f59e0b;
}
.dot-red {
    background: #ef4444;
}

/* floating badge */
.float-badge {
    position: absolute;
    z-index: 10;
    right: 8%;
    bottom: 12%;
    background: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    font-weight: 700;
    color: var(--bs-gray-900);
}

/* subtle wave */
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    width: 100%;
    height: 60px;
    z-index: 1;
}

/* Hover micro interactions */
.visual-stage:hover .hero-illustration {
    transform: translateY(-6px) rotate(-0.6deg);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-sub {
        max-width: 60ch;
    }
    .visual-stage {
        max-width: 360px;
    }
    .float-card {
        left: 5%;
        top: 2%;
        width: 150px;
    }
}

/* Mobile: hide decorations but keep main illustration */
@media (max-width: 575px) {
    .hero-section {
        padding: 2.5rem 0;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .trust-item {
        padding: 0.35rem 0.5rem;
    }
    .visual-col {
        margin-top: 1.25rem;
    }
    .float-card,
    .float-badge {
        display: none !important;
    }
    .hero-illustration {
        max-width: 300px;
    }
}

/* ----------------------Features Section CSS---------------------- */

.features-section {
    background: #f6f8fb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
}

/* Card */
.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    border: 1px solid #f1f3f5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    text-align: left;
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    animation: featureFadeIn 0.6s ease forwards;
}

/* Stagger animation */
.feature-card:nth-child(1) {
    animation-delay: 0.05s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.12s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.18s;
}
.feature-card:nth-child(4) {
    animation-delay: 0.25s;
}
.feature-card:nth-child(5) {
    animation-delay: 0.32s;
}
.feature-card:nth-child(6) {
    animation-delay: 0.38s;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(128, 0, 0, 0.15);
}

/* Active highlighted card */
.active-card {
    border: 2px solid #e6d9b5;
    background: #fffdf5;
}

/* Icons */
.feature-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--bs-primary);
}

/* Title */
.feature-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #222;
}

/* Subtitle */
.feature-sub {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35rem;
    color: #6b7280;
}

@keyframes featureFadeIn {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 2 per row or full width - your choice */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 18px 16px;
    }
}

/* Very small screens: 1 per row */
@media (max-width: 400px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* -----------------END Features Section CSS----------------- */

/* ----------------SHowcase Section=----------------- */

.showcase-section {
    background: #f9f0f0;
    overflow: hidden; /* Section level overflow prevent */
}

/* FLEX LAYOUT - Updated for better mobile */
.showcase-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Prevent ultra-wide on big screens */
    margin: 0 auto; /* Center if needed */
}

.showcase-copy {
    flex: 0 0 420px;
    padding: 6px 12px;
}

.showcase-visual {
    flex: 1;
    min-width: 0;
    position: relative; /* For bg-circle if absolute */
}

/* Mobile: Hide left, stack vertical */
@media (max-width: 992px) {
    .showcase-flex {
        flex-direction: column;
        gap: 20px; /* Reduced from 30px */
        padding: 0 10px; /* Extra padding for edges */
    }

    .showcase-copy {
        display: none !important;
    }
}

.slide-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Prevent slide-level overflow */
}

.mockup-stage {
    width: 100%;
    /* height: 360px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* KEY: Hide any image overflow */
    border-radius: 8px; /* Optional: Soft edges */
}

.bg-circle {
    /* Assuming it's absolute positioned circle - make responsive */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Scale with container */
    height: 80%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02); /* Or your style */
    z-index: -1;
}

/* KEY: Make images responsive - no fixed size! */
.mockup.monitor.responsive-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Fits without distortion, keeps aspect ratio */
    object-position: center;
    border-radius: 4px; /* Optional */
}

/* Smaller screens: Adjust stage height & image fit */
@media (max-width: 992px) {
    .mockup-stage {
        height: 280px; /* Reduced from 320px for tabs */
    }

    .bg-circle {
        width: 90%;
        height: 90%;
    }
}

@media (max-width: 576px) {
    .mockup-stage {
        width: 100%;
        max-width: 100%;
        /* height: 220px;  Reduced from 260px for phones */
    }

    .showcase-nav {
        gap: 10px; /* Buttons closer on small screen */
    }

    .btn {
        /* Buttons size adjust */
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Owl Carousel Wrapper Fix */
.showcase-carousel {
    overflow: hidden; /* Prevent carousel dots/nav overflow */
}

.owl-dots {
    margin-top: 10px; /* Dots positioning */
}

/* -------------END Showcase Section CSS------------- */

/* -------------About Trust Section CSS------------- */

.about-trust-section {
    background: #f6f8fb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* VISUAL SIDE */
.about-visual-stage {
    position: relative;
    width: 100%;
    padding: 20px;
}

.about-illustration {
    width: 100%;
    border-radius: 10px;

    z-index: 5;
    position: relative;
    display: block;
    margin: 0 auto;
}

/* dotted pattern */
.dot-pattern {
    position: absolute;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(#c7c7c7 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.25;
    filter: blur(0.5px);
}

.dot-left {
    top: -30px;
    left: -30px;
}

/* floating badge */
.visual-badge {
    position: absolute;
    bottom: -10px;
    left: 0;
    background: #fff;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #eee;
}

.about-subtitle {
    color: var(--bs-gray-700);
    font-size: 1.08rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.about-points p {
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--bs-gray-700);
}

/* bullet list */
.bullet-list {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.bullet-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--bs-gray-800);
}

.bullet-list li i {
    color: var(--bs-primary);
    font-size: 1.1rem;
}

.about-final {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    margin-bottom: 20px;
}

/* STATS */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-chip {
    background: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #e7ebef;
    text-align: center;
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--bs-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    font-weight: 700;
}

/* CTA ROW */
.about-cta-row {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual-stage {
        margin-bottom: 20px;
    }

    .stats-row {
        justify-content: center;
    }

    .about-cta-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* -----END About Trust Section CSS----- */

/* -------------Team Section CSS------------- */

.team-section {
    background: #ffffff;
}

/* GRID */
.team-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.team-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid #eef1f4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: 0.28s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* CIRCULAR MODERN AVATAR */
.team-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #f49090;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 14px;
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.25);
}

/* TEXT */
.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bs-gray-900);
}

.team-role {
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.team-bio {
    color: var(--bs-gray-700);
    font-size: 0.95rem;
    line-height: 1.45rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 22px;
    }
}

/* --------------END Team Section CSS------------- */

/* ----------------------Pricing Section CSS---------------------- */

.pricing-section {
    background: #9307070f;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* CARD */
.pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px 30px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(16, 24, 40, 0.12);
}

/* POPULAR */
.pricing-card.popular {
    border: 2px solid var(--bs-primary);
    transform: translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
}

/* PLAN INFO */
.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--bs-gray-600);
    margin-bottom: 18px;
}

/* PRICE */
.plan-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--bs-gray-900);
    margin-bottom: 22px;
}

.plan-price .currency {
    font-size: 1.3rem;
    vertical-align: super;
}

/* FEATURES */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    gap: 10px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--bs-gray-700);
}

.plan-features li i {
    color: var(--bs-primary);
    font-size: 1rem;
}

.plan-features li.disabled {
    color: #adb5bd;
}

.plan-features li.disabled i {
    color: #adb5bd;
}

/* BUTTON ALIGNMENT */
.pricing-card .btn {
    margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.popular {
        transform: none;
    }
}

/* ------------------------- Testimonials Styling ----------------------------*/
.testimonials-section {
    background: #f6f8fb;
}
/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    position: relative;
    min-height: 220px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

/* Quote Marks */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    position: relative;
    padding: 10px 0 10px 0;
    margin-bottom: 18px;
}

.testimonial-text:before {
    content: "“";
    font-size: 42px;
    line-height: 0;
    color: var(--bs-primary);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0.3;
}

.testimonial-text:after {
    content: "”";
    font-size: 42px;
    line-height: 0;
    color: var(--bs-primary);
    position: absolute;
    bottom: -10px;
    right: -5px;
    opacity: 0.3;
}

/* Avatar beside name */
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.initials-avatar {
    width: 48px;
    height: 48px;
    background: #f49090;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-name {
    font-weight: 600;
    font-size: 16px;
    color: #111;
}

.meta-location {
    font-size: 13px;
    color: #777;
}

/* Carousel Nav */
.testimonial-nav .btn {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
label.required::after,
span.required::after {
    content: "*";
    color: red;
    margin-left: 2px;
}
/* Layout */
.contact-modern {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Left Side */
.contact-sub {
    color: #666;
    margin-bottom: 24px;
    font-size: 15px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
}
.contact-info .info-item p {
    font-size: 14px !important;
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(128, 0, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800000;
    font-size: 20px;
}

/* Glass Form Card */
.contact-form-container {
    display: flex;
    justify-content: center;
}

.form-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    padding: 28px 26px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Form Inputs */
.modern-form .form-row {
    margin-bottom: 14px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 14px;
    transition: 0.25s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: #800000;
    background: #fff;
    outline: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================= */
/* DARK FOOTER SECTION       */

.footer-section {
    background: #111218;
    padding: 60px 0 30px;
    color: #d7d7d7;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Logo */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.45rem;
    color: #bcbcbc;
    max-width: 260px;
}

/* Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #c7c7c7;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--bs-secondary);
}

/* Social Icons */
.footer-social {
    margin-top: 14px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1b1c22;
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
    background: var(--bs-primary);
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 16px;
    text-align: center;
}

.footer-bottom-text {
    font-size: 0.9rem;
    color: #9a9a9a;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text {
        margin: 0 auto;
    }
    .footer-social {
        justify-content: center;
    }
}
