/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HERO BACKGROUND ================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(120deg, #0b5c3b 0%, #157a57 45%, #1f9c6f 100%);
    overflow: hidden;
    padding-top: 140px;
}

/* Primary decorative curved line */
.hero::before {
    content: "";
    position: absolute;
    left: -10%;
    top: 15%;
    width: 70%;
    height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

/* Secondary curved line */
.hero::after {
    content: "";
    position: absolute;
    left: -18%;
    top: 28%;
    width: 85%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

/* ================= HEADER & NAVBAR ================= */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: auto;
}

.navbar {
    width: 100%;
    pointer-events: auto;
}

.nav-container {
    max-width: 1250px;
    margin: auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    position: relative;
}

.site-header,
.navbar,
.nav-container {
    overflow: visible !important;
}

/* ================= LOGO ================= */
.logo img {
    height: 36px;
    width: auto;
}

/* ================= HAMBURGER BUTTON ================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10002;
    position: relative;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #0b5c3b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MENU (DESKTOP) ================= */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #0b5c3b;
}

.menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #0b5c3b;
    transition: width 0.25s ease;
}

.menu a:hover::before,
.menu a.active::before {
    width: 100%;
}

/* ================= DROPDOWN ================= */
.nav-item {
    position: relative;
}

.arrow {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: #ecfdf5;
    color: #0b5c3b;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= MOBILE MENU STYLES ================= */
@media (max-width: 992px) {
    .site-header {
        padding: 12px 15px;
        top: 0;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex !important;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #ffffff;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 30px;
        z-index: 10001;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        margin: 0;
        list-style: none;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu a {
        display: block;
        padding: 16px 10px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: none;
    }

    .menu a::before {
        display: none;
    }

    .dropdown {
        position: static;
        display: none;
        margin-top: 0;
        padding-left: 20px;
        box-shadow: none;
        border-radius: 0;
        background: #fafafa;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        width: 100%;
    }

    .dropdown li a {
        padding: 12px 10px;
        font-size: 14px;
    }

    .nav-item.active > .dropdown {
        display: block !important;
    }

    .nav-item:hover > .dropdown {
        display: none;
    }

    .nav-item > a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item.active > a .arrow {
        transform: rotate(180deg);
    }
}

/* Video styling */
.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.video-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-card:hover .play {
    opacity: 1;
}

.play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 64px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

/* ================= HERO CONTENT ================= */
.hero-inner {
    max-width: 1250px;
    margin: auto;
    padding: 60px 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: calc(100vh - 140px);
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
    max-width: 520px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    margin: 18px 0 28px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 26px;
    border-radius: 14px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn.white {
    background: #ffffff;
    color: #0b5c3b;
}

.btn.dark {
    background: #084a30;
    color: #ffffff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* Store box */
.store-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 10px;
}

.stores {
    display: flex;
    gap: 12px;
    margin: 10px 0 15px;
}

.stores img {
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stores img:hover {
    transform: translateY(-2px);
}

.features {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================= RIGHT MEDIA ================= */
.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 1100px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 40px 0;
    }

    .hero-text {
        max-width: 100%;
    }

    .buttons {
        justify-content: center;
    }

    .features {
        justify-content: center;
    }

    .video-card {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .video-card {
        max-width: 320px;
    }

    .hero::before,
    .hero::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .store-box {
        padding: 15px;
    }

    .stores {
        flex-direction: column;
        align-items: center;
    }

    .features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* ================= CHIT PLANS SECTION ================= */
.chit-section {
    background: #fafafa;
    padding: 60px 20px 80px;
    text-align: center;
}

/* STATS */
.stats-bar {
    max-width: 1250px;
    margin: 40px auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    color: #0b5c3b;
    font-size: 32px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* TITLE */
.section-title {
    margin: 0 0 40px;
    font-size: 36px;
    color: #0b5c3b;
    font-weight: 700;
    line-height: 1.3;
}

/* GRID */
.plans-grid {
    max-width: 1250px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.plan-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #0b5c3b;
}

.plan-card h4 {
    margin: 14px 0 6px;
    font-size: 18px;
    color: #1f2937;
    font-weight: 600;
}

.plan-card h4 span {
    font-weight: 400;
    color: #6b7280;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.plan-card p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 18px;
    line-height: 1.5;
    flex-grow: 1;
}

/* COIN STYLING */
.coin {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* BUTTONS IN PLANS */
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: 2px solid #0b5c3b;
    color: #0b5c3b;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.outline-btn:hover {
    background: #0b5c3b;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 92, 59, 0.35);
    transform: translateY(-1px);
}

/* CTA ROW */
.cta-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.solid-btn {
    background: #0b5c3b;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    border: 2px solid #0b5c3b;
}

.solid-btn:hover {
    background: #084a30;
    border-color: #084a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 59, 0.3);
}

/* ================= RESPONSIVE PLANS ================= */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        justify-content: flex-start;
        padding-left: 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .outline-btn,
    .solid-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .chit-section {
        padding: 40px 15px 60px;
    }

    .section-title {
        font-size: 24px;
    }

    .plan-card {
        padding: 25px 15px;
    }
}

/* ================= VIEW DETAILS MODAL ================= */
.assist-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.assist-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.assist-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 36px;
    max-width: 720px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.assist-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.assist-close:hover {
    color: #0b5c3b;
    background: #f1f1f1;
}

.assist-box h2 {
    color: #0b5c3b;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
}

.assist-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 26px 0 30px;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.assist-form input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
}

.assist-form input:focus {
    outline: none;
    border-color: #0b5c3b;
    box-shadow: 0 0 0 3px rgba(11, 92, 59, 0.1);
}

.assist-btn {
    border: 1.5px solid #0b5c3b;
    background: transparent;
    color: #0b5c3b;
    padding: 12px 34px;
    border-radius: 26px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
    margin-top: 10px;
}

.assist-btn:hover {
    background: #0b5c3b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 59, 0.3);
}

.error {
    font-size: 12px;
    color: #ef4444;
    display: none;
    margin-top: 5px;
    text-align: left;
    width: 100%;
}

.error-input {
    border: 1.5px solid #ef4444 !important;
    background-color: #fef2f2;
}

@media (max-width: 992px) {
    .assist-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .assist-box {
        padding: 30px 24px;
    }
    .assist-box h2 {
        font-size: 24px;
    }
    .assist-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .assist-modal {
        padding: 10px;
    }
    .assist-box {
        padding: 25px 20px;
    }
    .assist-btn {
        width: 100%;
        padding: 14px;
    }
}

/* ================= ABOUT US SECTION ================= */
.about-section {
    max-width: 1180px;
    margin: 70px auto;
    padding: 50px 60px;
    background: #eef8f4;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-content h2 {
    font-size: 32px;
    color: #0b3d2e;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 480px;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 28px;
    border-radius: 22px;
    border: 1.4px solid #0b5c3b;
    color: #0b5c3b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #0b5c3b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 59, 0.3);
}

.about-image-box {
    position: relative;
    padding: 14px;
    border-radius: 22px;
    border: 1.4px solid rgba(11, 92, 59, 0.45);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-box:hover {
    transform: translateY(-5px);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .about-section {
        margin: 60px 20px;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 34px;
        gap: 32px;
    }
    .about-content p {
        max-width: 100%;
        margin: 0 auto 25px;
    }
    .about-image-box {
        max-width: 380px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 24px;
        margin: 40px 15px;
    }
    .about-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 25px 20px;
        margin: 30px 10px;
    }
    .about-content h2 {
        font-size: 24px;
    }
    .about-content p {
        font-size: 14px;
    }
    .about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= WHY SECTION ================= */
.why-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0b5c3b;
    margin-bottom: 60px;
    position: relative;
    line-height: 1.3;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0b5c3b, #4caf50, #0b5c3b);
    border-radius: 4px;
}

.why-box {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 70px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(11, 92, 59, 0.1);
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    row-gap: 60px;
    position: relative;
}

.why-item {
    text-align: center;
    padding: 25px 20px;
    transition: all 0.4s ease;
    background: #f8fdfb;
    border-radius: 20px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b5c3b, #4caf50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(11, 92, 59, 0.3);
    border-color: rgba(11, 92, 59, 0.2);
    background: #ffffff;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item img {
    height: 70px;
    width: 70px;
    margin-bottom: 25px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(32%) saturate(924%) hue-rotate(108deg) brightness(92%) contrast(92%);
    transition: all 0.4s ease;
    object-fit: contain;
}

.why-item:hover img {
    transform: scale(1.15) rotate(5deg);
}

.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0b3d2e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.why-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .why-box {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .why-title {
        font-size: 36px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .why-box {
        padding: 40px 30px;
    }
    .why-item h4 {
        font-size: 18px;
    }
    .why-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 15px;
    }
    .why-title {
        font-size: 32px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-box {
        padding: 35px 25px;
    }
    .why-item {
        padding: 30px 25px;
    }
    .why-item img {
        height: 60px;
        width: 60px;
    }
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b5c3b;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: #0b5c3b;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    color: #0b5c3b;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    .testimonials-title {
        font-size: 32px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ================= APP SECTION ================= */
:root {
    --primary-green: #0b5c3b;
    --dark-bg-green: #0b5c3b;
    --text-dark: #333;
    --text-gray: #666;
    --white: #ffffff;
}

.app-section-new {
    padding: 60px 20px;
    background: var(--white);
}

.app-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-bg-green) 0%, #0d4d3c 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 60px;
    color: var(--white);
    overflow: hidden;
}

.app-left {
    flex: 1.2;
    padding-right: 40px;
}

.app-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.app-left h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.app-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.app-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.app-logo-icon {
    background: var(--white);
    padding: 8px;
    border-radius: 8px;
    width: 60px;
}

.app-logo-icon img {
    width: 100%;
}

.app-description {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 35px;
    font-size: 1rem;
}

.app-stores {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.app-stores img {
    height: 45px;
}

.app-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .app-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .app-highlight {
        justify-content: center;
    }
    .app-stores {
        justify-content: center;
    }
}

/* ================= FOOTER ================= */
.kcpl-footer {
    background: #eef8f4;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.green-text {
    color: var(--primary-green);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #0b5c3b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.mt-30 {
    margin-top: 30px;
}

.footer-bottom-strip {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .info-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .info-col {
        grid-column: span 1;
    }
    .footer-col {
        text-align: center;
    }
    .footer-logo-img {
        margin: 0 auto 20px;
    }
    .company-description {
        text-align: center;
    }
    .contact-info p {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-links {
        align-items: center;
    }
    .footer-links li a:hover {
        padding-left: 0;
    }
}

/* ================= POPUP OVERLAY ================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    padding: 40px 45px;
    border-radius: 16px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    font-family: "Inter", system-ui, sans-serif;
}

.popup-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #0b5c3b;
}

.popup-box h4 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #0b5c3b;
}

.popup-content p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 14px;
}

.popup-content hr {
    margin: 35px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.close-btn {
    position: sticky;
    top: 0;
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

.close-btn:hover {
    color: #000;
}

.popup-box::-webkit-scrollbar {
    width: 8px;
}

.popup-box::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .popup-box {
        padding: 25px 22px;
    }
    .popup-box h2 {
        font-size: 22px;
    }
}

/* ================= DESKTOP FIXES ================= */
@media (min-width: 993px) {
    .hero-text {
        text-align: left;
    }
    .hero-text h1 {
        text-align: left;
    }
    .buttons {
        justify-content: flex-start;
    }
    .store-box {
        text-align: left;
    }
    .features {
        justify-content: flex-start;
    }
    .about-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
    .about-content {
        text-align: left;
    }
    .about-content h2 {
        text-align: left;
    }
    .about-content p {
        text-align: left;
        max-width: 100%;
    }
    .about-image-box {
        max-width: 450px;
        margin-left: auto;
    }
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
    .footer-col {
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
    }
}

/* Legal Compliance Strip */
.legal-compliance-strip {
    background: #1a3c2c;
    color: #ffffff;
    padding: 15px 0;
    font-size: 13px;
    border-top: 2px solid #ffd700;
    border-bottom: 1px solid #2a5c3c;
}

.legal-compliance-strip .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.legal-compliance-strip p {
    margin: 5px 0;
    line-height: 1.4;
}

.legal-compliance-strip strong {
    color: #ffd700;
}

@media (max-width: 768px) {
    .legal-compliance-strip {
        font-size: 11px;
        padding: 10px 0;
    }
}