/* ==========================================================================
   Variables & Setup (Inspired by Image 1 & 3)
   ========================================================================== */
:root {
    /* Energox Green (Change to #E53935 for ChargeZone Red) */
    --primary: #10B981;
    --primary-hover: #059669;
    --primary-light: rgba(16, 185, 129, 0.1);

    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-dark: #111827;

    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Global Typography & Reusables
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.center-text {
    text-align: center;
}

.section-label {
    color: #10B981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 0.8rem;
    animation: slideDown 0.6s ease-out;
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-dark);
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Footer logo matching navbar */
.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fff;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo .logo-icon {
    font-size: 1.3rem;
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul a {
    font-weight: 500;
    font-size: 0.90rem;
    transition: var(--transition);
}

nav ul a:hover {
    color: var(--primary);
}

nav ul a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.60rem 1.70rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.35rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive Navigation */
@media (max-width: 992px) {
    nav {
        padding: 1rem 4%;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    nav ul li {
        padding: 0.5rem 0;
    }

    nav ul a {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 3%;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 2rem 3% 2rem;
    text-align: center;
    color: white;
    background-color: var(--bg-dark);
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) contrast(1.1);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(9, 12, 20, 0.72) 0%, rgba(17, 24, 39, 0.45) 100%);
}

.hero>*:not(.hero-image-bg):not(.hero-grid) {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: slideDown 0.7s ease-out;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.hero h1 em {
    /* color: #FFD700; */
    color: #0be779;
    font-style: normal;
    text-shadow: 0 2px 10px rgba(143, 230, 3, 0.623), 0 0 20px rgba(16, 185, 129, 0.5);
}

.hero-sub {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: #E5E7EB;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out;
    line-height: 1.7;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    animation: fadeInUp 1.4s ease-out;
}

@media (max-width: 768px) {
    .hero-actions {
        gap: 1rem;
        margin-bottom: 3.5rem;
    }
}

.btn-primary,
.btn-outline {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    border: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3),
        0 0 0 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.4),
        0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    border: 2.5px solid rgba(255, 255, 255, 0.95);
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgb(38, 156, 101);
    border-color: white;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(116, 116, 116, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {

    .btn-primary,
    .btn-outline {
        padding: 0.95rem 2.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .btn-primary,
    .btn-outline {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 3rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 1.6s ease-out;
    overflow-x: auto;
}

.stat {
    text-align: center;
    flex: 0 0 auto;
    min-width: 110px;
    padding: 0;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 0.25rem;
    animation: scaleIn 0.8s ease-out;
}

.stat-label {
    font-size: 0.65rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ==========================================================================
   Services Overview (Image 1 Style Overlapping Cards)
   ========================================================================== */
.services-overview {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0FFFE 100%);
}

.page-preview-list {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.25rem;
}

.page-preview-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-left: 5px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
}

.page-preview-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.page-preview-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.split-section-head {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.split-section-head .section-label {
    text-align: center;
}

.split-section-head h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.25;
    animation: fadeInUp 0.8s ease-out;
}

.split-section-head .section-desc {
    margin: 0 auto;
    text-align: center;
}

.page-spotlight {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.page-spotlight-alt {
    background: linear-gradient(135deg, #F0FFFE 0%, #F8FAFB 100%);
}

.page-spotlight-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.page-spotlight-alt .page-spotlight-text {
    order: 2;
}

.page-spotlight-alt .page-spotlight-media {
    order: 1;
}

.page-spotlight-text .section-label {
    text-align: left;
}

.page-spotlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out;
}

.page-spotlight-desc {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 640px;
    animation: fadeInUp 1s ease-out;
    font-weight: 500;
}

.page-spotlight-points {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.page-spotlight-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    width: fit-content;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1.5px solid rgba(30, 58, 138, 0.12);
    color: #0F172A;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-spotlight-points span:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: rgba(30, 58, 138, 0.2);
}

.page-spotlight-points i {
    color: #10B981;
    font-size: 1.1rem;
    min-width: 20px;
}

.page-spotlight-media img {
    width: 100%;
    display: block;
    min-height: 340px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
    animation: scaleIn 0.8s ease-out;
    transition: transform 0.4s ease;
}

.page-spotlight-media img:hover {
    transform: scale(1.02);
}

.home-page-intro .split-section-head,
.page-spotlight .split-section-head {
    max-width: 760px;
    padding: 0 0 0.75rem;
}

.home-page-intro .page-intro-text p,
.page-spotlight-text .page-spotlight-desc {
    text-align: left;
    margin-left: 0;
}

.page-intro {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
}

.page-intro-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.page-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.3);
    margin-bottom: 1.8rem;
    animation: scaleIn 0.6s ease-out;
}

.page-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.25;
    animation: fadeInUp 0.8s ease-out;
}

.page-intro-text p {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    font-weight: 500;
}

.page-intro-actions {
    margin-top: 2.5rem;
    animation: fadeInUp 1.2s ease-out;
}

.page-intro-media img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
    animation: scaleIn 0.8s ease-out;
}

.page-intro-media {
    position: relative;
}

.page-intro-media::after {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 2px solid rgba(16, 185, 129, 0.12);
    border-radius: 20px;
}

.page-hero {
    min-height: 280px;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background:
        linear-gradient(180deg, rgba(11, 22, 41, 0.92), rgba(11, 22, 41, 0.92)),
        url('https://images.unsplash.com/photo-1560958089-b8a1929cea89?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right top, rgba(255, 255, 255, 0.16), transparent 34%),
        radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.08), transparent 32%);
    pointer-events: none;
}

.page-hero-panel {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.page-hero .page-hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.15);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    animation: slideDown 0.7s ease-out;
}

.page-hero .page-hero-kicker i {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .page-intro-inner {
        grid-template-columns: 1fr;
    }

    .page-intro-text h2 {
        font-size: 2.2rem;
    }

    .split-section-head h2 {
        font-size: 2.4rem;
    }

    .page-intro-media::after {
        inset: 12px -12px -12px 12px;
    }

    .page-hero {
        min-height: 240px;
        padding: 4rem 5%;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .page-spotlight {
        padding: 3rem 4%;
    }

    .page-spotlight-text h2 {
        font-size: 1.65rem;
    }

    .split-section-head {
        margin-bottom: 2rem;
    }

    .split-section-head h2 {
        font-size: 1.95rem;
    }

    .page-spotlight-points span {
        width: 100%;
        border-radius: 18px;
    }

    .page-spotlight-media img {
        min-height: 240px;
        border-radius: 18px;
    }

    .page-intro {
        padding: 3rem 4% 2rem;
    }

    .page-intro-text h2 {
        font-size: 1.8rem;
    }

    .page-intro-text p {
        font-size: 0.98rem;
    }

    .page-intro-media::after {
        inset: 10px -10px -10px 10px;
        border-radius: 20px;
    }

    .page-intro-media img {
        border-radius: 20px;
    }

    .page-hero {
        min-height: 220px;
        padding: 3.25rem 4%;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 0.94rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-image-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    padding-bottom: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.service-image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-image-card:hover .image-wrapper img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: -40px auto 1.5rem;
    border: 5px solid white;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
    transition: all 0.35s ease-out;
}

.service-image-card:hover .service-icon-circle {
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.35);
}

.service-card-body h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.service-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0FFFE 100%);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    column-gap: 4.5rem;
    row-gap: 2rem;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
}

.about-graphic-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-about-img {
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    transition: all 0.4s ease;
    object-fit: cover;
    display: block;
}

.about-graphic-side:hover .main-about-img {
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
    transform: translateY(-5px);
}

.floating-mission-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: white;
    padding: 1.4rem 1.25rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    max-width: 280px;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.floating-mission-badge h5 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.floating-mission-badge p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-text-side {
    padding: 0.5rem 0;
}

.about-text-side .section-label {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text-side h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-text-side .section-desc {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
    font-size: 1.05rem;
}

.about-text {
    margin-bottom: 1.25rem;
    max-width: 620px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.15rem;
    font-size: 1rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.vision-box {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    padding: 2.5rem;
    border-left: 5px solid var(--primary);
    border-radius: 0 12px 12px 0;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 900px;
    justify-self: center;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-box:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
}

.vision-box h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.vision-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about {
        padding: 4rem 5%;
    }

    .about-content {
        column-gap: 2.4rem;
        row-gap: 1.4rem;
    }

    .about-text-side h2 {
        font-size: 2.2rem;
    }

    .about-graphic-side {
        position: relative;
        overflow: visible;
    }

    .floating-mission-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
        max-width: 56%;
        padding: 0.75rem 0.9rem;
        border-radius: 10px;
        font-size: 0.95rem;
        animation: none;
        z-index: 6;
        box-shadow: 0 10px 26px rgba(2, 6, 23, 0.38);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 4%;
    }

    .about-content {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }

    .about-graphic-side {
        order: 1;
    }

    .about-text-side {
        order: 2;
    }

    .main-about-img {
        border-radius: 12px;
        min-height: 280px;
        max-height: 360px;
    }

    .about-graphic-side {
        position: relative;
        overflow: visible;
    }

    .floating-mission-badge {
        /* place badge inside the image on small screens */
        position: absolute;
        top: 12px;
        right: 12px;
        margin: 0;
        max-width: 46%;
        width: auto;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        animation: none;
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
        z-index: 6;
    }

    .about-text-side h2 {
        font-size: 2rem;
    }

    .about-text-side .section-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 3%;
    }

    .about-content {
        row-gap: 1.1rem;
    }

    .about-text-side h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .vision-box {
        padding: 1.25rem;
        border-left: 4px solid var(--primary);
        border-radius: 12px;
        text-align: left;
    }

    .vision-box h3 {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Scroll Reveal Animations (Intersection Observer)
   ========================================================================== */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    animation: none !important;
    /* Override any eager on-load animations */
    opacity: 0;
}

.reveal-up {
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-left {
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-right {
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-scale {
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

@media (max-width: 768px) {
    .reveal-left {
        transform: translateY(24px);
    }

    .reveal-right {
        transform: translateY(24px);
    }
}

/* ==========================================================================
   Cinematic Banner Section
   ========================================================================== */
.cinematic-banner {
    position: relative;
    padding: 8rem 5%;
    text-align: center;
    color: white;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    z-index: 1;
}

.banner-text-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.banner-text-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.banner-text-content p {
    font-size: 1.1rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.play-indicator-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 2rem auto 0;
    cursor: pointer;
    transition: var(--transition);
}

.play-indicator-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.products h2 {
    text-align: center;
}

.category-heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.3px;
    animation: fadeInUp 0.8s ease-out;
}

.category-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    border-radius: 2px;
}

.category-heading span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.8s ease-out;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(255, 255, 255, 0.1) inset,
        -20px -20px 60px rgba(0, 0, 0, 0.2) inset,
        20px 20px 60px rgba(255, 255, 255, 0.05) inset;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: slideUp 0.8s ease-out;
}

.product-card:hover::before {
    animation: none;
}

.product-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 1px rgba(255, 255, 255, 0.1) inset,
        -20px -20px 60px rgba(0, 0, 0, 0.25) inset,
        20px 20px 60px rgba(255, 255, 255, 0.08) inset;
    transform: translateY(-12px);
    border-color: rgba(16, 185, 129, 0.3);
}

.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 10;
    animation: slideInLeft 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.product-badge::before {
    content: attr(data-label);
    position: absolute;
    width: 150%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg) translateY(-20px);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    top: 20px;
    left: -50px;
}

.product-badge::after {
    content: '';
    position: absolute;
    width: 12px;
    bottom: 0;
    left: 0;
    height: 12px;
    z-index: -1;
    box-shadow: 120px -120px;
}

.product-badge.popular::before {
    background: linear-gradient(45deg, #10B981 0%, #059669 51%, #10B981 100%);
}

.product-badge.popular::after {
    box-shadow: 120px -120px #059669;
}

.product-badge.premium::before {
    background: linear-gradient(45deg, #FF9F1C 0%, #F5A623 51%, #FF9F1C 100%);
}

.product-badge.premium::after {
    box-shadow: 120px -120px #E07700;
}

.product-badge.fast-charging::before {
    background: linear-gradient(45deg, #14B8A6 0%, #0F766E 51%, #14B8A6 100%);
}

.product-badge.fast-charging::after {
    box-shadow: 120px -120px #0F766E;
}

.product-badge.fast-charging::before,
.product-badge.ultra-fast::before {
    width: 170%;
    left: -58px;
    top: 24px;
    font-size: 0.62rem;
    letter-spacing: 1px;
}

.product-badge.ultra-fast::before {
    background: linear-gradient(45deg, #F97316 0%, #D97706 51%, #F97316 100%);
}

.product-badge.ultra-fast::after {
    box-shadow: 120px -120px #D97706;
}

.product-icon {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    color: #10B981;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: scaleIn 0.8s ease-out;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    transform: scale(1.2) rotateZ(-8deg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.6);
}

.product-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-desc {
    color: #B0BEC5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.spec-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease-out;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .spec-tag {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.6);
    color: #10B981;
}

.bullet-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.bullet-features li {
    color: #B0BEC5;
    font-size: 0.9rem;
    margin: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bullet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag small {
    font-size: 0.85rem;
    font-weight: 600;
    color: #B0BEC5;
    -webkit-text-fill-color: unset;
    background: none;
}

.btn-card {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease-out;
}

.btn-card:hover::before {
    left: 100%;
}

.btn-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(16, 185, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-card:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.team-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 50%, #F0FFFE 100%);
}

.center-text {
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-profile-card {
    background: white;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(16, 185, 129, 0.08);
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.team-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #059669);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.team-profile-card:hover::before {
    transform: scaleX(1);
}

.team-profile-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.avatar-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
    transition: all 0.35s ease-out;
    animation: scaleIn 0.8s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.avatar-icon {
    font-size: 3.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease-out;
}

.team-profile-card:hover .avatar-wrap {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.team-profile-card:hover .avatar-icon {
    transform: scale(1.15) rotateZ(10deg);
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.team-profile-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.team-profile-card h5 {
    color: #10B981;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.team-profile-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Franchise Section
   ========================================================================== */
.franchise {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #F8F9FA 0%, #F0F4F8 100%);
    position: relative;
    overflow: hidden;
}

.franchise::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.franchise-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.franchise-info h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 40px;
}

.steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    animation: slideDown 1.2s cubic-bezier(0.23, 1, 0.320, 1) both;
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
    position: relative;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

.step-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    flex-shrink: 0;
}

.step:hover .step-num {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.35);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.step:hover .step-title {
    color: var(--primary);
}

.franchise-graphics-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.320, 1) both;
    animation-delay: 0.3s;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.subsection-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.invest-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.invest-card {
    background: linear-gradient(135deg, #0F172A 0%, #0F172A 100%);
    padding: 2.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.9s cubic-bezier(0.23, 1, 0.320, 1) both;
    color: #E6EEF3;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.invest-card:nth-child(1) {
    animation-delay: 0.5s;
}

.invest-card:nth-child(2) {
    animation-delay: 0.7s;
}

.invest-card:hover::before {
    transform: scaleX(1);
}

.invest-card.featured-tier {
    background: linear-gradient(135deg, #0b1220 0%, #111827 100%);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}

.invest-card.featured-tier::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    right: 18px;
    background: linear-gradient(135deg, #374151, #1F2937);
    color: #F8FAFC;
    padding: 0.36rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.4);
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
}

.invest-card.featured-tier:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.25);
}

.invest-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E6EEF3;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s ease;
}

.invest-card.featured-tier .invest-type {
    color: white;
}

.invest-type::before {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: scaleIn 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
}

.invest-card.featured-tier .invest-type::before {
    background: white;
}

.invest-financials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invest-amt {
    font-size: 2rem;
    font-weight: 800;
    color: #F8FAFC;
    transition: transform 0.3s ease;
}

.invest-card.featured-tier .invest-amt {
    color: white;
}

.invest-card:hover .invest-amt {
    transform: scale(1.1);
}

.invest-desc {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-top: 0.5rem;
}

.invest-card.featured-tier .invest-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.page-contact .page-hero {
    min-height: 420px;
    margin-bottom: 0;
    background:
        linear-gradient(135deg, rgba(9, 18, 36, 0.94), rgba(14, 57, 92, 0.88)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-contact .page-hero::after {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.16), transparent 26%);
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.9rem;
}

.contact-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-hero {
    min-height: 420px;
    padding: 5rem 5%;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background:
        linear-gradient(180deg, rgba(10, 18, 36, 0.88), rgba(10, 18, 36, 0.88)),
        url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 5%;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.12), transparent 55%);
    pointer-events: none;
}

.contact-hero-panel {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
    margin-bottom: 1.8rem;
    animation: scaleIn 0.6s ease-out;
}

.contact-hero h1 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    line-height: 1.3;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 500;
}

.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    animation: slideUp 0.8s ease-out;
}

.contact-details {
    padding: 3rem 5% 5rem;
    background: #F9FAFB;
}

.contact {
    padding: 6rem 5% 7rem;
    background: var(--bg-light);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1380px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04), rgba(15, 23, 42, 0.02));
    padding: 2.8rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 116, 139, 0.12);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.company-details,
.form-card {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.8s ease-out;
    box-shadow:
        0 20px 60px rgba(197, 197, 197, 0.3),
        0 0 1px rgba(255, 255, 255, 0.1) inset,
        -20px -20px 60px rgba(0, 0, 0, 0.2) inset,
        20px 20px 60px rgba(255, 255, 255, 0.05) inset;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-details::before,
.form-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: slideUp 0.8s ease-out;
    pointer-events: none;
}

.company-details:hover,
.form-card:hover {
    box-shadow:
        0 30px 80px rgba(88, 88, 88, 0.4),
        0 0 1px rgba(255, 255, 255, 0.1) inset,
        -20px -20px 60px rgba(0, 0, 0, 0.25) inset,
        20px 20px 60px rgba(255, 255, 255, 0.08) inset;
    transform: translateY(-12px);
    border-color: rgba(16, 185, 129, 0.3);
}

.company-details:hover::before,
.form-card:hover::before {
    animation: none;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-block-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10B981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.info-block-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    letter-spacing: -0.3px;
}

.info-block-val {
    color: #E2E8F0;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-block-subval {
    color: #94A3B8;
    font-size: 0.92rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-block-val a,
.info-block-subval a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-block-val a:hover,
.info-block-subval a:hover {
    color: var(--primary);
}

.form-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.form-subtitle {
    color: #B0BEC5;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.form-card form {
    flex: 1;
    position: relative;
    z-index: 1;
}

.form-group label {
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: -0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem 1.1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.form-group select option {
    background: #1A202C;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    margin-top: 0.75rem;
    padding: 1.05rem 1.2rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

#formMessages {
    margin-top: 1rem;
}

#successMsg,
#errorMsg {
    display: none;
    margin-top: 0.9rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    text-align: left;
    font-weight: 500;
    line-height: 1.55;
    border-left: 4px solid;
}

#successMsg.show {
    display: block;
    background: #ECFDF5;
    color: #065F46;
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

#errorMsg.show,
#successMsg.error,
#errorMsg.error {
    display: block;
    background: #FEF2F2;
    color: #7F1D1D;
    border-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

@media (max-width: 768px) {
    .page-contact .page-hero {
        min-height: 360px;
    }

    .contact-highlights {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .contact-highlight {
        font-size: 0.82rem;
        padding: 0.65rem 0.9rem;
    }

    .contact-hero {
        min-height: 360px;
        padding: 4rem 5%;
        margin-bottom: 3rem;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 0.98rem;
    }

    .contact-details {
        padding: 3.5rem 4% 4.5rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        justify-items: center;
    }

    .company-details,
    .form-card {
        padding: 1.5rem;
        border-radius: 24px;
        width: 100%;
        max-width: 620px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .page-contact .page-hero {
        min-height: 320px;
        padding: 3.5rem 4%;
    }

    .page-contact .page-hero h1 {
        font-size: 1.9rem;
    }

    .page-contact .page-hero p {
        font-size: 0.95rem;
    }

    .contact-highlights {
        gap: 0.5rem;
    }

    .contact-highlight {
        width: 100%;
        justify-content: center;
    }

    .contact-hero {
        min-height: 320px;
        padding: 3.5rem 4%;
        margin-bottom: 2.5rem;
    }

    .contact-hero-icon {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }

    .contact-hero h1 {
        font-size: 1.9rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-wrap {
        padding: 0rem;
        gap: 1.25rem;
        justify-items: center;
    }

    .company-details,
    .form-card {
        padding: 1.25rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .info-card {
        padding: 1rem;
    }

    .info-block {
        gap: 0.8rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: #D1D5DB;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 5rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-desc {
    line-height: 1.7;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: #9CA3AF;
    max-width: 340px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
    color: #9CA3AF;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.footer-col ul li i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 1.05rem;
    min-width: 16px;
}

.footer-col ul li a {
    color: #9CA3AF;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* chevron markers for link lists */
.footer-col.footer-links ul li::before,
.footer-col.footer-account ul li::before {
    content: '\203A';
    display: inline-block;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover::before {
    transform: translateX(4px);
}

.footer-links ul li {
    align-items: center;
    gap: 0.6rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    border-color: var(--primary);
}

.footer-bottom {
    background: #090E17;
    /* Solid deeper slate to perfectly ground the footer */
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-legal {
    background: content-box;
    display: flex;
    gap: 0.5rem;
}

.footer-legal a {
    color: #9CA3AF;
    font-size: 0.95rem;
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    transition: var(--transition);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer-legal a:hover {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
}

@media (max-width: 1024px) {
    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer-inner {
        padding: 4rem 5% 3rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 5%;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    nav {
        padding: 1rem 5%;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero {
        padding: 4rem 5% 2rem;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-spotlight {
        padding: 4rem 5%;
    }

    .page-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-spotlight-alt .page-spotlight-text,
    .page-spotlight-alt .page-spotlight-media {
        order: initial;
    }

    .page-spotlight-text h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .franchise-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Media Queries */
@media (max-width: 768px) {
    .page-hero {
        min-height: 280px;
        padding: 4rem 5%;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .products {
        padding: 4rem 5%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .product-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .category-heading {
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }

    .btn-card {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }

    .services-overview {
        padding: 4rem 5%;
    }

    .services-grid {
        gap: 2rem;
    }

    .image-wrapper {
        height: 200px;
    }

    .team-section {
        padding: 4rem 5%;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .team-profile-card {
        padding: 2.2rem 1.8rem;
    }

    .avatar-wrap {
        width: 130px;
        height: 130px;
    }

    .franchise {
        padding: 4rem 5%;
    }

    .franchise-inner {
        gap: 3rem;
    }

    .franchise-info h2 {
        font-size: 2rem;
    }

    .steps {
        gap: 2rem;
    }

    .step-num {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .franchise-graphics-container {
        padding: 2.5rem;
    }

    .invest-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .invest-card {
        padding: 1.8rem;
    }

    .invest-type {
        font-size: 1.1rem;
    }

    .invest-amt {
        font-size: 1.75rem;
    }
}

/* Mobile Media Queries */
@media (max-width: 480px) {
    .products {
        padding: 3rem 4%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.8rem 1.2rem;
    }

    .product-icon {
        font-size: 2.8rem;
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.9rem;
    }

    .spec-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .category-heading {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .category-heading::after {
        width: 60px;
    }

    .btn-card {
        padding: 0.85rem 1.8rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .bullet-features {
        margin: 1rem 0;
    }

    .bullet-features li {
        font-size: 0.85rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .services-overview {
        padding: 3rem 4%;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card-body h4 {
        font-size: 1.2rem;
    }

    .service-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin: -35px auto 1.2rem;
    }

    .image-wrapper {
        height: 180px;
    }

    .team-section {
        padding: 3rem 4%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-profile-card {
        padding: 2rem 1.5rem;
    }

    .avatar-wrap {
        width: 120px;
        height: 120px;
    }

    .team-profile-card h4 {
        font-size: 1.2rem;
    }

    .franchise {
        padding: 3rem 4%;
    }

    .franchise-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps {
        gap: 1.5rem;
        padding-left: 30px;
    }

    .steps::before {
        left: 14px;
        top: 40px;
        bottom: 40px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .franchise-graphics-container {
        padding: 2rem;
    }

    .invest-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .invest-card {
        padding: 1.5rem;
    }

    .invest-type {
        font-size: 1.05rem;
    }

    .invest-amt {
        font-size: 1.5rem;
    }

    .subsection-title {
        font-size: 1rem;
    }
}

/* Franchise - extra polish */
.invest-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: #9CA3AF;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
}

.invest-card .card-icon i {
    width: 28px;
    height: 28px;
    display: inline-block;
    font-size: 20px;
    color: #F8FAFC;
}

.invest-card .card-footer {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
}

.btn-card.small {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.45);
}

.invest-card {
    display: flex;
    flex-direction: column;
}

.invest-card .invest-financials {
    margin-top: 1rem;
}

.invest-amt .currency {
    font-size: 0.9rem;
    vertical-align: top;
    margin-right: 4px;
    font-weight: 700;
    color: #D1D5DB;
}

/* Ribbon improvement for featured */
.invest-card.featured-tier::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 12px;
    right: 14px;
    background: linear-gradient(135deg, #374151, #1F2937);
    color: #F8FAFC;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
    z-index: 6;
}

@media (max-width: 768px) {
    .invest-card .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }

    .invest-card .card-footer {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .invest-card .card-footer {
        justify-content: flex-end;
    }

    .invest-card.featured-tier::after {
        right: 12px;
        top: -10px;
        padding: 0.3rem 0.7rem;
    }
}

/* contact */

/* Center the FAQ block and heading specifically for this section */
.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section .text-center {
    text-align: center;
}

.faq-section .section-title {
    max-width: 1100px;
}

.section.bg-light .faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e7eefc;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(11, 35, 79, 0.04);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    color: #062743;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-q {
    font-size: 1rem;
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: #eef6ff;
    color: #0b63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform .22s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 14px 20px;
    border-top: 1px solid #f0f6ff;
    background: #fbfdff;
    color: #304250;
    line-height: 1.6;
}

@media (max-width: 640px) {

    /* Map styles for responsive embed */
    .faq-section .map-wrap {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 18px;
    }

    .faq-section .map-placeholder {
        height: 420px;
        width: 100%;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(11, 35, 79, 0.06);
        background: #fff;
    }

    .faq-section .map-placeholder iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

    /* FAQ visual polish */
    .faq-section .faq-list {
        max-width: 920px;
        margin: 20px auto 36px;
    }

    .faq-item {
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .faq-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(11, 35, 79, 0.06);
    }

    .faq-item summary {
        padding: 16px 22px;
        font-size: 1.02rem;
        border-radius: 10px;
    }

    .faq-item summary:focus {
        outline: none;
    }

    .faq-item summary:hover {
        color: var(--primary);
    }

    .faq-icon {
        background: rgba(14, 165, 233, 0.06);
        color: var(--primary);
        min-width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 700;
        transition: transform .18s ease, background .18s ease;
    }

    details[open] .faq-icon {
        background: rgba(16, 185, 129, 0.12);
        transform: rotate(0deg);
    }

    .faq-icon::after {
        content: '+';
        display: inline-block;
        font-size: 18px;
        line-height: 1;
    }

    details[open] .faq-icon::after {
        content: '\2212';
        /* minus sign */
    }

    .faq-a {
        padding: 16px 22px;
        font-size: 0.98rem;
        color: #394957;
    }

    @media (max-width: 640px) {
        .faq-section .map-placeholder {
            height: 300px;
        }

        .faq-item summary {
            padding: 12px 14px;
        }

        .faq-a {
            padding: 12px 14px;
        }
    }

    .faq-item summary {
        padding: 14px;
    }

    .faq-a {
        padding: 12px 14px;
    }
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 8px 16px;
    border-radius: 26px;
    transition: background-color 0.2s ease, color 0.2s ease;

}

/* -------------------------------------------------------------------------
   FAQ & Map — global overrides (placed last to ensure consistent behavior)
   ------------------------------------------------------------------------- */
.faq-section .map-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 18px;
}

.faq-section .map-placeholder {
    height: 420px;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 35, 79, 0.06);
    background: #fff;
}

.faq-section .map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.faq-section .faq-list {
    max-width: 920px;
    margin: 20px auto 36px;
}

.faq-item {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 35, 79, 0.06);
}

.faq-item summary {
    padding: 16px 22px;
    font-size: 1.02rem;
    border-radius: 10px;
}

.faq-item summary:focus {
    outline: none;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-icon {
    background: rgba(14, 165, 233, 0.06);
    color: var(--primary);
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.faq-icon::after {
    content: '+';
    font-size: 18px;
}

details[open] .faq-icon::after {
    content: '\2212';
}

.faq-a {
    padding: 16px 22px;
    font-size: 0.98rem;
    color: #394957;
}

.faq-section .faq-header {
    margin-top: 34px;
}

@media (max-width: 640px) {
    .faq-section .map-placeholder {
        height: 300px;
    }

    .faq-item summary {
        padding: 12px 14px;
    }

    .faq-a {
        padding: 12px 14px;
    }
}

/* Floating action buttons (bottom-right fixed) */
.float-btns {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    z-index: 9999;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    box-sizing: border-box;
    max-width: 44px;
    /* icon-only by default */
    overflow: visible;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    transition: max-width 220ms ease, padding 220ms ease, box-shadow 180ms ease, transform 180ms ease;
    text-decoration: none;
}

.float-btn svg {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.float-btn__label {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: opacity 180ms ease, transform 180ms ease;
    white-space: nowrap;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    background: #111827f1;
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    pointer-events: none;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
}

.float-btn:hover .float-btn__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.float-btn--whatsapp {
    width: 65px;
    padding: 0;
    background: #ffffffb2;
    color: inherit;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.291);
    border: 1px solid rgba(37, 211, 101, 0.224);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.float-btn--whatsapp svg {
    width: 28px;
    height: 28px;
    margin: 0;
}

.float-btn--demo {
    background: #0f172a;
    color: #fff;
}

.float-btn--demo .float-btn__label {
    background: #111827;
}

.float-btn--whatsapp .float-btn__label {
    background: #111827;
}

.float-btn--whatsapp:hover {
    background: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .float-btns {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .float-btn__label {
        display: none;
    }

    .float-btn {
        width: 44px;
        max-width: 44px;
        padding: 0;
    }

    .float-btn--whatsapp {
        width: 56px;
    }

    .float-btn:hover {
        transform: none;
    }
}