/* ============================================
   VARIABLES & BASE STYLES
   ============================================ */

:root {
    --primary-color: #1451b3;
    --secondary-color: #f3b849;
    --accent-color: #a0826d;
    --light-bg: #f5f5f0;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    height: 50px;
    width: auto;
    display: flex;
    align-items: center;
    object-fit: contain;
    background: transparent;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 50;
}

.fab {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fab:hover {
    background-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.fab span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 81, 179, 0.35); /* subtle primary-color overlay for readability */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-content .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.why-us,
.benefits-section,
.values-section,
.testimonials,
.impact-section {
    padding: 4rem 20px;
    background-color: var(--light-bg);
}

.why-us h2,
.benefits-section h2,
.values-section h2,
.testimonials h2,
.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(20, 81, 179, 0.25);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, rgba(243, 184, 73, 0.03) 100%);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card .feature-icon img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    filter: brightness(1.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--secondary-color);
}

.carousel-item {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    display: block;
}

/* ============================================
   SUBSCRIPTION SECTION
   ============================================ */

.subscribe {
    padding: 4rem 20px;
    background-color: white;
}

.subscribe h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border-color: var(--secondary-color);
    background-color: rgba(243, 184, 73, 0.05);
    transform: scale(1.05);
}

.plan-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
}

.price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 4rem 20px;
    background-color: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* ============================================
   SAMPLE SECTION
   ============================================ */

.sample-section {
    padding: 3rem 20px;
    background: linear-gradient(135deg, rgba(20, 81, 179, 0.05) 0%, rgba(243, 184, 73, 0.05) 100%);
}

.sample-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sample-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sample-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.sample-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #333;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 184, 73, 0.3);
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.journey {
    padding: 4rem 20px;
    background-color: white;
}

.journey h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.journey-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.journey-step {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    position: relative;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.journey-hour {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.hour-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.hour-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.journey-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.journey-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.journey-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 20px;
    background-color: white;
}

.content-section.alternate {
    background-color: var(--light-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.content-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-text h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.quality-list,
.vision-goals {
    list-style: none;
    margin: 1.5rem 0;
}

.quality-list li,
.vision-goals li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.quality-list li:before,
.vision-goals li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background-color: rgba(243, 184, 73, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 2px dashed var(--secondary-color);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   QUALITY & VALUES SECTION
   ============================================ */

.quality-section {
    padding: 4rem 20px;
    background-color: white;
}

.quality-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background-color: rgba(243, 184, 73, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 4rem 20px;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.1);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-block p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-block a:hover {
    color: var(--primary-color);
}

.small-text {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    font-weight: normal !important;
}

.social-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */

.service-area-section {
    padding: 4rem 20px;
    background-color: var(--light-bg);
}

.service-area-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-area-section > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-check {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.location-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.1);
}

.service-area-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.service-area-result.show {
    display: block;
}

.service-area-result.available {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.service-area-result.unavailable {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.cities-served {
    margin-top: 3rem;
}

.cities-served h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.city-badge {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-badge:hover {
    background: var(--secondary-color);
    color: white;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 4rem 20px;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Specific styling for accordion items */
.faq-accordion .faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    overflow: hidden;
    padding: 0; /* Reset padding for accordion */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Lighter shadow */
}

.faq-accordion .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    user-select: none; /* Prevent text selection on double click */
}

.faq-question-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex: 1;
    padding-right: 1rem;
}

.toggle-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
    display: block;
}

/* Active State */
.faq-accordion .faq-item.active {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(20, 81, 179, 0.1);
}

.faq-accordion .faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.faq-accordion .faq-item.active .faq-answer {
    max-height: 500px; /* large enough for content */
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-accordion .faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .floating-buttons {
        right: 15px;
        gap: 0.75rem;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-content .hero-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-us h2,
    .benefits-section h2,
    .values-section h2,
    .testimonials h2,
    .impact-section h2,
    .quality-section h2 {
        font-size: 2rem;
    }

    .features-carousel,
    .benefits-grid,
    .testimonial-grid,
    .values-grid,
    .impact-stats,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .subscription-plans {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .placeholder-image {
        width: 100%;
        height: 250px;
    }

    .sample-content h2 {
        font-size: 1.8rem;
    }

    .sample-content p {
        font-size: 1rem;
    }

    .sample-benefits {
        gap: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        width: 100%;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 2.5rem 15px;
        min-height: 350px;
        background-size: cover;
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-content .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .content-text h2,
    .quality-section h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .subscription-plans {
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .page-header {
        padding: 2rem 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}

/* ============================================
   REGISTRATION FORM STYLES
   ============================================ */

.registration-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.85) 0%, rgba(255, 249, 230, 0.85) 50%, rgba(240, 232, 244, 0.85) 100%),
                url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1200 600%22%3E%3Cdefs%3E%3ClinearGradient id=%22skyGrad%22 x1=%220%25%22 y1=%220%25%22 x2=%220%25%22 y2=%22100%25%22%3E%3Cstop offset=%220%25%22 style=%22stop-color:%2387ceeb;stop-opacity:0.3%22/%3E%3Cstop offset=%22100%25%22 style=%22stop-color:%2390ee90;stop-opacity:0.2%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width=%221200%22 height=%22600%22 fill=%22url(%23skyGrad)%22/%3E%3Cpath d=%22M0 300 Q300 250 600 300 T1200 300 L1200 600 L0 600 Z%22 fill=%22%23a8d76d%22 opacity=%220.15%22/%3E%3Cpath d=%22M0 320 Q250 280 500 320 T1000 320 L1200 450 L1200 600 L0 600 Z%22 fill=%22%2390be6d%22 opacity=%220.12%22/%3E%3Ccircle cx=%22200%22 cy=%22150%22 r=%2240%22 fill=%22%23ffeb99%22 opacity=%220.08%22/%3E%3Ccircle cx=%22150%22 cy=%22120%22 r=%2320%22 fill=%22%23ffffff%22 opacity=%220.1%22/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.registration-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(135, 206, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(144, 190, 109, 0.05) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   FLOATING LOGO ANIMATIONS - REMOVED
   ============================================ */

/* Background animations removed - using static farm field image instead */

@keyframes float-animation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

@keyframes drift-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

/* ============================================
   RESPONSIVE REGISTRATION FORM
   ============================================ */

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 1.5rem;
    }

    .registration-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .registration-form {
        gap: 1.25rem;
    }

    .registration-section {
        background-attachment: scroll;
    }
}

.registration-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
}

.registration-form .form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.registration-form .form-group label .required {
    color: var(--error-color);
    font-weight: bold;
}

.registration-form input,
.registration-form textarea,
.registration-form select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 81, 179, 0.1);
}

.registration-form textarea {
    resize: vertical;
    min-height: 100px;
}

.registration-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231451b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px;
    padding-right: 2.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #0e3a8f;
    box-shadow: 0 4px 12px rgba(20, 81, 179, 0.3);
    transform: translateY(-2px);
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.success-message p {
    margin: 0;
}

/* ============================================
   RESPONSIVE REGISTRATION FORM
   ============================================ */

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 1.5rem;
    }

    .registration-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .registration-form {
        gap: 1.25rem;
    }
}
