/* ===================== INNER PAGE HERO - ENHANCED ===================== */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
    padding: 110px 0 150px;
}

/* ── Background ── */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.30;
    filter: grayscale(20%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.88) 45%,
            rgba(10, 22, 40, 0.55) 100%);
}

/* Green ambient glow (right side) */
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* ── Content Layout ── */
.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 45px;
    width: 100%;
}

.hero-left {
    flex: 1.05;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    min-width: 0;
}

.hero-right {
    flex: 0.95;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    min-width: 0;
}

/* ── Entrance Animations (staggered) ── */
.hero-left > * {
    animation: heroFadeUp 0.7s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-left > *:nth-child(5) { animation-delay: 0.45s; }
.hero-left > *:nth-child(6) { animation-delay: 0.55s; }

.hero-right {
    animation: heroFadeIn 0.9s ease 0.35s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   HERO RIGHT — MAP CARD (NEW)
=========================================================== */

.hero-map-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: heroMapFloat 6s ease-in-out 1s infinite;
    will-change: transform;
}

/* Soft green glow behind map */
.hero-map-wrap::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 8%;
    right: 8%;
    bottom: 12%;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

/* Decorative dotted grid (top-right corner) */
.hero-map-wrap::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -20px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.6px);
    background-size: 16px 16px;
    z-index: 0;
    pointer-events: none;
}

/* The map image itself */
.hero-map-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.50);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-map-wrap:hover .hero-map-img {
    transform: scale(1.025);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.60);
}

/* Glass badge on map */
.hero-map-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    background: rgba(10, 22, 40, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    pointer-events: none;
}

.hero-map-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes heroMapFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ============================================================
   BREADCRUMB
=========================================================== */

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-light);
}

.page-hero-breadcrumb .sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.page-hero-breadcrumb .current {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============================================================
   TITLE / SUBTITLE
=========================================================== */

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.page-hero-title span {
    color: var(--accent-light);
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================================
   FEATURE BULLETS
=========================================================== */

.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 32px;
    margin-top: 4px;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}

.page-hero-feature::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: rgba(22, 163, 74, 0.20);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ============================================================
   BUTTONS
=========================================================== */

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--green-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.60);
}

/* ============================================================
   MINI STATS
=========================================================== */

.page-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.page-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.page-hero-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ============================================================
   BOTTOM DIVIDER
=========================================================== */

.page-hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.page-hero-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 90px;
}

/* ============================================================
   RESPONSIVE
=========================================================== */

@media (max-width: 1100px) {
    .page-hero-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }

    .hero-map-wrap {
        max-width: 520px;
        /* margin: 0 auto; */
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 440px;
        padding: 90px 0 120px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .page-hero-features {
        gap: 12px 24px;
    }

    .page-hero-stats {
        gap: 24px;
    }

    /* Stop floating on mobile (cleaner) */
    .hero-map-wrap {
        animation: none;
    }

    .hero-map-badge {
        font-size: 0.65rem;
        padding: 7px 13px;
        bottom: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 400px;
        padding: 80px 0 100px;
    }

    .page-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-white {
        width: 100%;
    }
}

/* Accessibility: stop all motion for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
    .hero-left > *,
    .hero-right,
    .hero-map-wrap,
    .hero-map-badge-dot {
        animation: none !important;
    }
}


/* ============================================================
   AFTER SALES SUPPORT SECTION
   ============================================================ */

.after-sales-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(22, 93, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.after-sales-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.after-sales-glow-1 {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -90px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.12), transparent 70%);
}

.after-sales-glow-2 {
    width: 280px;
    height: 280px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(83, 137, 255, 0.10), transparent 70%);
}

.after-sales-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.after-sales-left .about-lead {
    margin-bottom: 26px;
}

/* Small support points */
.after-sales-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.after-sales-points div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    padding: 10px 15px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.after-sales-points i {
    color: var(--accent);
}

/* Country Chips */
.country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.country-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.country-grid div:hover {
    transform: translateY(-3px);
    border-color: var(--accent-border);
    box-shadow: 0 14px 34px rgba(22, 93, 255, 0.09);
}

.country-grid span {
    font-size: 20px;
}

/* Right Cards */
.after-sales-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.support-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(22, 93, 255, 0) 0%,
            rgba(22, 93, 255, 0.04) 50%,
            rgba(22, 93, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-border);
    box-shadow: 0 24px 56px rgba(22, 93, 255, 0.10);
}

.support-card:hover::before {
    opacity: 1;
}

.support-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.support-card-top span {
    font-size: 34px;
    font-weight: 900;
    color: rgba(22, 93, 255, 0.08);
    letter-spacing: -0.04em;
}

.support-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.support-card:hover .support-icon {
    background: linear-gradient(135deg, var(--accent), #5389ff);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(22, 93, 255, 0.26);
    transform: scale(1.05);
}

.support-card h3 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.support-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1100px) {
    .after-sales-shell {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 768px) {
    .after-sales-section {
        padding: 78px 0;
    }

    .country-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 24px;
        border-radius: 20px;
    }

    .support-card-top span {
        font-size: 28px;
    }

    .support-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
    }
}


/* ============================================================
   WHY CUSTOMERS CHOOSE US — ABOUT PAGE
   ============================================================ */

.why-about-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.why-about-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.why-about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.why-about-glow-1 {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(22, 93, 255, 0.10), transparent 70%);
}

.why-about-glow-2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -90px;
    background: radial-gradient(circle, rgba(83, 137, 255, 0.08), transparent 70%);
}

.why-about-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.7;
}

.why-about-section .container {
    position: relative;
    z-index: 1;
}

.why-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 28px;
    min-height: 270px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
}

.why-about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(22, 93, 255, 0) 0%,
            rgba(22, 93, 255, 0.045) 50%,
            rgba(22, 93, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-about-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 4px;
    height: 54px;
    background: linear-gradient(180deg, var(--accent), #5389ff);
    border-radius: 0 999px 999px 0;
    opacity: 0.85;
}

.why-about-card:hover {
    transform: translateY(-7px);
    border-color: var(--accent-border);
    box-shadow: 0 26px 60px rgba(22, 93, 255, 0.11);
}

.why-about-card:hover::before {
    opacity: 1;
}

.why-about-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.why-about-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.why-about-card:hover .why-about-icon {
    background: linear-gradient(135deg, var(--accent), #5389ff);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(22, 93, 255, 0.26);
}

.why-about-num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(22, 93, 255, 0.10);
    line-height: 1;
    letter-spacing: -0.05em;
}

.why-about-card h3 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.why-about-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-soft);
}

/* Bottom CTA strip */
.why-about-bottom {
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-left: 5px solid var(--accent);
    border-radius: 24px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
}

.why-about-bottom strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.why-about-bottom span {
    font-size: 14px;
    color: var(--text-soft);
}

.why-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), #5389ff);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(22, 93, 255, 0.24);
    transition: all 0.3s ease;
}

.why-about-btn span {
    color: #ffffff;
}

.why-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(22, 93, 255, 0.34);
    color: #ffffff;
}

.why-about-btn i {
    transition: transform 0.3s ease;
}

.why-about-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
    .why-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-about-section {
        padding: 78px 0;
    }

    .why-about-grid {
        grid-template-columns: 1fr;
    }

    .why-about-card {
        min-height: auto;
        padding: 26px;
        border-radius: 22px;
    }

    .why-about-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .why-about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== PARTNERSHIP COMMITMENT SECTION ===================== */

.partnership-commit-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 50%, #0f172a 100%);
    overflow: hidden;
}

.partnership-commit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Background Glows */
.partnership-commit-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.partnership-commit-glow-1 {
    width: 400px;
    height: 400px;
    background: #22c55e;
    top: -100px;
    left: -100px;
    animation: partnership-float 6s ease-in-out infinite;
}

.partnership-commit-glow-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    right: -100px;
    animation: partnership-float 8s ease-in-out infinite reverse;
}

@keyframes partnership-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

/* Main Wrapper */
.partnership-commit-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== IMAGE SECTION ===== */

.partnership-commit-img-box {
    perspective: 1000px;
}

.partnership-commit-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(34, 197, 94, 0.15),
        0 0 80px rgba(59, 130, 246, 0.1);
    transform-style: preserve-3d;
    animation: partnership-img-float 3s ease-in-out infinite;
}

@keyframes partnership-img-float {

    0%,
    100% {
        transform: translateY(0px) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg);
    }
}

.partnership-commit-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.partnership-commit-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    mix-blend-mode: overlay;
}

.partnership-commit-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: partnership-badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes partnership-badge-pop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.partnership-commit-badge i {
    color: #fbbf24;
    font-size: 18px;
}

/* ===== CONTENT SECTION ===== */

.partnership-commit-content-box {
    color: #fff;
}

.partnership-commit-header {
    margin-bottom: 40px;
}

.partnership-commit-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 15px;
    background: rgba(34, 197, 94, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.partnership-commit-label:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.6);
}

.partnership-commit-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.partnership-commit-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-commit-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 40px;
}

/* ===== FEATURES SECTION ===== */

.partnership-commit-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.partnership-commit-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partnership-commit-feature-item:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.partnership-commit-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 12px;
    flex-shrink: 0;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.partnership-commit-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.partnership-commit-feature-text p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* ===== STATISTICS SECTION ===== */

.partnership-commit-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 35px 0;
    margin-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-commit-stat {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.partnership-commit-stat:hover .partnership-commit-stat-number {
    transform: scale(1.1);
}

.partnership-commit-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.partnership-commit-stat-label {
    font-size: 13px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */

.partnership-commit-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.partnership-commit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.partnership-commit-btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    flex: 1;
}

.partnership-commit-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.45);
}

.partnership-commit-btn-primary:active {
    transform: translateY(-2px);
}

.partnership-commit-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.partnership-commit-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.partnership-commit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    justify-content: center;
}

.partnership-commit-note i {
    color: #22c55e;
    font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .partnership-commit-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partnership-commit-heading {
        font-size: 36px;
    }

    .partnership-commit-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .partnership-commit-section {
        padding: 60px 0;
    }

    .partnership-commit-wrapper {
        gap: 40px;
    }

    .partnership-commit-heading {
        font-size: 28px;
    }

    .partnership-commit-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .partnership-commit-features {
        gap: 15px;
    }

    .partnership-commit-feature-item {
        padding: 18px;
    }

    .partnership-commit-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }

    .partnership-commit-stat-number {
        font-size: 28px;
    }

    .partnership-commit-actions {
        flex-direction: column;
    }

    .partnership-commit-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .partnership-commit-img-container {
        border-radius: 16px;
    }

    .partnership-commit-img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .partnership-commit-section {
        padding: 40px 0;
    }

    .partnership-commit-wrapper {
        gap: 30px;
    }

    .partnership-commit-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .partnership-commit-desc {
        font-size: 14px;
    }

    .partnership-commit-label {
        font-size: 11px;
        padding: 8px 14px;
    }

    .partnership-commit-feature-item {
        padding: 16px;
        gap: 14px;
    }

    .partnership-commit-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .partnership-commit-feature-text h4 {
        font-size: 15px;
    }

    .partnership-commit-feature-text p {
        font-size: 12px;
    }

    .partnership-commit-stat-number {
        font-size: 24px;
    }

    .partnership-commit-stat-label {
        font-size: 11px;
    }

    .partnership-commit-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .partnership-commit-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
        font-size: 12px;
    }

    .partnership-commit-img {
        height: 280px;
    }
}

/* ===== ACCESSIBILITY ===== */

.partnership-commit-btn:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.partnership-commit-feature-item:focus-within {
    outline: 2px solid rgba(34, 197, 94, 0.5);
}




/* ===================== TESTIMONIAL SECTION ===================== */

.solar-testimonial-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 50%, #0f172a 100%);
    overflow: hidden;
}

.solar-testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Background Glows */
.solar-testimonial-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.solar-testimonial-glow-1 {
    width: 400px;
    height: 400px;
    background: #22c55e;
    top: -100px;
    right: -50px;
    animation: solar-testimonial-float 7s ease-in-out infinite;
}

.solar-testimonial-glow-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    left: -100px;
    animation: solar-testimonial-float 9s ease-in-out infinite reverse;
}

@keyframes solar-testimonial-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

/* ===== HEADER ===== */

.solar-testimonial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.solar-testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 15px;
    background: rgba(34, 197, 94, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.solar-testimonial-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.solar-testimonial-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solar-testimonial-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
}

/* ===== GRID & CARDS ===== */

.solar-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solar-testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.solar-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.05);
}

/* Quote Icon */
.solar-testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.solar-testimonial-card:hover .solar-testimonial-quote-icon {
    color: rgba(34, 197, 94, 0.15);
    transform: scale(1.1);
}

/* Stars */
.solar-testimonial-stars {
    display: flex;
    gap: 5px;
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Text */
.solar-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 25px;
    flex-grow: 1;
    z-index: 1;
}

/* Divider */
.solar-testimonial-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* Author */
.solar-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.solar-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #22c55e, #3b82f6) border-box;
    /* -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); */
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    flex-shrink: 0;
}

.solar-testimonial-author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.solar-testimonial-author-info span {
    font-size: 13px;
    color: #9ca3af;
}

/* ===== FOOTER RATING ===== */

.solar-testimonial-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.solar-testimonial-footer-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 10px;
}

.solar-testimonial-footer h4 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.solar-testimonial-footer p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.solar-testimonial-footer strong {
    color: #22c55e;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .solar-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solar-testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .solar-testimonial-section {
        padding: 60px 0;
    }

    .solar-testimonial-header {
        margin-bottom: 40px;
    }

    .solar-testimonial-title {
        font-size: 28px;
    }

    .solar-testimonial-desc {
        font-size: 15px;
    }

    .solar-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solar-testimonial-card:last-child {
        grid-column: span 1;
    }

    .solar-testimonial-footer {
        margin-top: 40px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .solar-testimonial-section {
        padding: 40px 0;
    }

    .solar-testimonial-title {
        font-size: 24px;
    }

    .solar-testimonial-card {
        padding: 25px 20px;
    }

    .solar-testimonial-text {
        font-size: 14px;
    }

    .solar-testimonial-footer h4 {
        font-size: 20px;
    }
}