/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #007a3d;
    --dark-green: #005a2d;
    --light-bg: #F5FFF9;
    --text-dark: #2C3E50;
    --text-light: #4A5C6D;
    --white: #FFF;
    --accent-red: #FF6B6B;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* Thank You Page Fix */
.thankyou-page {
  min-height: 80vh;
  background: var(--light-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

.thankyou-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.thankyou-card {
  background: #fff;
  width: 100%;
  max-width: 900px;
  padding: 50px 40px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.thankyou-card h1 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.thankyou-card p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.thankyou-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0 40px;
}

.thankyou-box {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .thankyou-card {
    padding: 30px 20px;
  }
}

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

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.cta-button {
    background: #007a3d;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.nav .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,122,61,0.3);
}

/* Form Popup */
.zoho-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

.zoho-popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    margin: 5vh auto;
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.zoho-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s;
}

.zoho-close:hover,
.zoho-close:focus {
    background: #e0e0e0;
    color: #333;
    outline: 2px solid var(--primary-green);
}

.custom-form-container {
    padding: 2.5rem;
}

.custom-form-container h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.required {
    color: var(--accent-red);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0,122,61,0.1);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 80px;
    padding: 0.9rem;
    border: 1px solid #DDD;
    border-radius: 8px;
}

.submit-button {
    width: 100%;
    background: #007a3d;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover,
.submit-button:focus {
    background: var(--dark-green);
    transform: translateY(-2px);
    outline: 2px solid var(--dark-green);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F8F5 100%);
    padding: 4rem 5% 6rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary-green);
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.check-list li::before {
    content: '✔';
    background: var(--primary-green);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.discount-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.zoho-form-block {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.zoho-form-block .custom-form-container {
    padding: 0;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: -3rem auto 4rem;
    padding: 0 5%;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.journey-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,122,61,0.3);
}

.journey-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.journey-icon,
.journey-icon1 {
    font-size: 2.5rem;
}

/* Results */
.bb-results {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.bb-results__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-green);
}

.bb-results__slider {
    position: relative;
    overflow: hidden;
}

.bb-results__track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.bb-results__card {
    min-width: 300px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.bb-results__card:hover {
    transform: translateY(-8px);
}

.bb-results__card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.bb-results__card h3 {
    padding: 15px 20px 5px;
    color: var(--primary-green);
}

.bb-results__card p {
    padding: 0 20px 20px;
    color: #666;
}

.bb-results__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 32px;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.bb-results__nav:hover,
.bb-results__nav:focus {
    background: var(--primary-green);
    color: #fff;
    outline: 2px solid var(--dark-green);
}

.bb-results__nav--prev { left: -20px; }
.bb-results__nav--next { right: -20px; }

/* Why Choose */
.why-choose {
    background: var(--light-bg);
    padding: 5rem 5%;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.imgpcr {
    width: 100%;
    border-radius: 12px;
}

/* Comparison */
.bb-why {
    background: #f5fffb;
    padding: 80px 20px;
}

.bb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.bb-left img {
    width: 200px;
    margin-bottom: 30px;
}

.bb-left h2 {
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 16px;
    color: #1f2937;
}

.bb-left p {
    color: #6b7280;
    max-width: 360px;
}

.bb-table-wrap {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 0 0 1px #d1fae5;
    overflow: hidden;
}

.bb-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    color: #374151;
}

.bb-table th,
.bb-table td {
    padding: 35px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    font-size: 15px;
}

.bb-table th {
    background: #fff;
    font-weight: 600;
    color: #1f2937;
}

.bb-col {
    background: #ecfdf5;
    font-weight: 600;
}

.bb-table tr:last-child td {
    border-bottom: none;
}

.bb-head-logo {
    width: 120px;
    height: 36px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #d1fae5;
}

.bb-head-logo img {
    width: 85%;
}

.bb-mobile-cards {
    display: none;
}

.bb-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.bb-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.bb-row:last-child {
    border-bottom: none;
}

.bb-label {
    color: #6b7280;
}

.bb-value {
    font-weight: 600;
    text-align: right;
}

/* Journey Section */
.journey-section {
    background: #fff;
    padding: 5rem 5%;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
}

.img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box img {
    max-width: 100%;
    height: auto;
}

/* Target */
.target-section {
    background: var(--light-bg);
    padding: 5rem 5%;
}

.target-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fitelo-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
}

.fitelo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fitelo-tile {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.fitelo-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.fitelo-tile img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits */
.what-you-get {
    background: #fff;
    padding: 5rem 5%;
}

.success-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-list {
    max-width: 800px;
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✔';
    background: var(--primary-green);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.image-placeholder-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* FAQ */
.faq-section {
    background: var(--light-bg);
    padding: 5rem 5%;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    margin: 0;
}

.faq-question:hover,
.faq-question:focus {
    background: var(--light-bg);
    outline: 2px solid var(--primary-green);
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: #fff;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding: 3rem 5% 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.address-detail {
    display: inline-block;
    margin-left: 1.9rem;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus {
    opacity: 1;
    text-decoration: underline;
    outline: 2px solid #fff;
}

.footer-bottom {
    background: var(--dark-green);
    padding: 1.5rem 17%;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.copyright,
.certification {
    opacity: 0.9;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #fff;
    font-size: 1.8rem;
}

.floating-btn:hover,
.floating-btn:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    outline: 2px solid #fff;
}

.phone-btn {
    background: #4169E1;
}

.whatsapp-btn {
    background: #25D366;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container,
    .features,
    .content-grid,
    .bb-container,
    .fitelo-grid,
    .footer-container {
        grid-template-columns: 1fr !important;
    }

    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }

    .header { padding: 0.5rem 4%; }
    .logo img { height: 35px; }
    .nav .cta-button { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .hero-container { gap: 30px; }
    .features { margin-top: 20px; }
    .content-grid { gap: 30px; }

    .bb-results { padding: 20px 0; }
    .bb-results__slider { padding: 0 20px; }
    .bb-results__track {
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .bb-results__track::-webkit-scrollbar { display: none; }
    .bb-results__card { min-width: 85%; scroll-snap-align: start; }
    .bb-results__nav { display: none; }

    .bb-container { gap: 30px; }
    .bb-left { text-align: center; }
    .bb-left h2 { font-size: 28px; }
    .bb-table, .bb-table thead { display: none; }
    .bb-table-wrap { background: transparent; box-shadow: none; }
    .bb-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .bb-card {
        background: #fff;
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .fitelo-grid { gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 20px; }
    .floating-buttons { right: 15px; bottom: 15px; }
    .floating-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .zoho-popup-content { width: 95%; }
    .custom-form-container { padding: 2rem 1.5rem; }
}
