:root {
    /* Modern Professional Palette */
    --primary: #2e7d32;
    /* Deep Fern Green */
    --primary-light: #4caf50;
    /* Vibrant Green */
    --primary-soft: #e8f5e9;
    /* Very light green bg */
    --secondary: #1f2937;
    /* Dark Slate / Navyish */
    --accent: #ffd166;
    /* Warm Yellow for trust/highlights */

    --white: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;

    --text-main: #1f2937;
    --text-muted: #6b7280;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--secondary);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-surface {
    background-color: var(--surface);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}
/* logo*/
.header-part .logo {
    width: 200px;
    height: 60px;
}
.header-part .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* logo*/

/* avatar */
.avatar-group {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid white;
    margin: -10px;
    overflow: hidden;
}
.avatar-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* avatar */

/* counting up */
.trust-banner {
    background: #f9fafb;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #16a34a; /* green */
}

.trust-item p {
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
}

/* counting up end*/

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-soft);
    color: var(--primary-light);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
    background-color: #236327;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background-color: var(--primary-soft);
}

/* Header */
.header-part {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
}

.nav-link:hover {
    color: #16a34a;
}

/* Button */

/* Hamburger */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0f172a;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked ~ .nav-menu {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding-top: 80px;

    background: radial-gradient(
        circle at top right,
        var(--primary-soft) 0%,
        transparent 40%
    );
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #5c9a1b;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image-container {
    position: relative;
}

/* CSS Illustration for Hero */
.hero-card-visual {
}
.hero-card-visual img {
    width: 100%;
    height: auto;
}

.hero-card-visual:hover {
    transform: scale(1.02);
}

.abstract-blob {
    position: absolute;
    background: var(--primary-light);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* testimonial */

.testimonial-section {
    padding: 60px 20px;
    background: #f9fafb;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonial-swiper {
    margin-top: 2rem;
}
.testimonial-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}
.testimonial-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
}
.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 14px;
    color: #888;
}
.testimonial-section .testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    text-align: center;
}
.testimonial-section .testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* testimonial */
/* scrollto top */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light); /* your green */
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.35);
    transition: all 0.3s ease;
    z-index: 9999;
}

#scrollTopBtn:hover {
    background: #236327;
    transform: translateY(-5px);
}

/* Mobile adjustment */
@media (max-width: 640px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* scrollto top */

/* faq */
.info-accordion {
    position: relative;
    overflow: hidden;
}
.info-accordion h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}
.info-accordion p {
    font-size: 1.125rem;
    color: var(--text-muted);
}
.info-accordion .accordion {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin: 12px 0 40px;
}

.accordion-item {
    border-radius: 12px;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #4b5563;
    line-height: 1.6;
}

/* faq */

/* Stats / Trust Banner */
.trust-banner {
    background: var(--primary-soft);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.trust-icon i {
    color: var(--primary-light);
    font-size: 28px;
}
.trust-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.trust-header h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--primary-light);
}

.trust-header p {
    margin-top: 12px;
    font-size: 16px;
    color: #475569;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--primary-light);
    font-weight: 500;
}

/* Plans Section (Cards) */
.plans-section {
    background-color: var(--surface);
    overflow: hidden;
    position: relative;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.plan-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-light);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--surface);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 1rem 0;
}

.plan-price sub {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    bottom: 0.5em;
}

.plan-features {
    padding: 2rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-main);
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.plan-footer {
    padding: 0 2rem 2.5rem;
}

.btn-full {
    width: 100%;
}

/* Contact Section split layout */
#contact {
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-arrow i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-arrow:hover i {
    transform: translateX(4px);
}

.contact-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at bottom right,
        rgba(46, 125, 50, 0.4),
        transparent
    );
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    padding: 4rem;
}

@media screen and (max-width: 768px) {
    .contact-form-box {
        padding: 1rem;
    }
    .contact-info {
        padding: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: all 0.2s;
    background: var(--surface);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Footer */
footer {
    background: var(--surface);
    padding-top: 5rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
    color: var(--text-muted);
}
.footer-item-additional {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-item-additional ul {
    display: flex;
    gap: 1rem;
}
.footer-item-additional li {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-size: 0.9rem;
    position: relative;
}

.footer-item-additional li:hover {
    color: var(--primary-light);
}
.footer-item-additional li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 19px;
    background-color: var(--text-muted);
    top: 4px;
    right: -10px;
}
.footer-item-additional li:last-child::after {
    display: none;
}
.footer_part {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--white);
    padding-top: 0 !important;
}

.footer-brand .logo {
    display: block; /* 🔑 IMPORTANT */
    width: 200px;
    height: 60px;
}

.footer-brand .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* better than cover for logos */
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-grid,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .nav-menu {
        display: none;
    }

    /* Hidden for simplicity */
}

/* privacy & policy */
.policy-section {
    padding-top: 20px;
}
.policy-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}
.policy-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
    padding-top: 15px;
}
.policy-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
}
/* privacy & policy */

/* terms and condition */
.terms-section {
    padding-top: 20px;
}
.terms-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}
.terms-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
    padding-top: 15px;
}
.terms-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
}
/* terms and condition */

/* desclaimer */
.disclaimer-section {
    padding-top: 20px;
}
.disclaimer-section h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
}
.disclaimer-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 300;
    padding-top: 15px;
}
.disclaimer-section p {
    font-size: 1.125rem;
    color: var(--text-muted);
}
