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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Color Variables */
:root {
    --primary-green: #214e3f;
    --light-brown: #98653C;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--primary-green);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-brown);
}

.cta-nav {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--light-brown);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

/* CTA Button */
.cta-button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--light-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 78, 63, 0.3);
}

/* Survey Section */
.survey-section {
    padding: 80px 20px;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.survey-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.survey-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.survey-section .cta-button {
    background: var(--white);
    color: var(--primary-green);
}

.survey-section .cta-button:hover {
    background: var(--light-brown);
    color: var(--white);
}

/* Stakes Section */
.stakes-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.stakes-content {
    max-width: 800px;
    margin: 0 auto;
}

.stakes-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.stakes-list {
    list-style: none;
    margin: 2rem 0;
}

.stakes-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-gray);
}

.stakes-list li::before {
    content: "•";
    color: var(--light-brown);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.stakes-conclusion {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 2rem 0;
    text-align: center;
}

/* Value Section */
.value-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.value-hero-image {
    margin-bottom: 3rem;
    text-align: center;
}

.value-hero-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
}

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

.value-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-point h3 {
    color: var(--light-brown);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value-point p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.value-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.value-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.understand-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.understand-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.understand-section p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.understand-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.pricing-calculator {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.calculator-step {
    margin-bottom: 2rem;
}

.calculator-step h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.toggle-group {
    display: flex;
    gap: 1rem;
}

.toggle-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-green);
    background: var(--white);
    color: var(--primary-green);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.toggle-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

.calculator-step select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.calculator-step select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.pricing-result {
    margin-top: 2rem;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
}

.result-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-brown);
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.result-details {
    margin-bottom: 2rem;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item strong {
    color: var(--primary-green);
}

.detail-item span {
    color: var(--medium-gray);
}
.reset-button {
    background-color: #f8f9fa;
    color: #214e3f;
    border: 2px solid #214e3f;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

/* Scheduling Form */
.scheduling-form {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.scheduling-form h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 600px;
}

.confirmation-message h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin: 0;
}
.plan-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Quote Form */
.quote-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote-form h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.quote-form > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.survey-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.survey-form input,
.survey-form select,
.survey-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.survey-form input:focus,
.survey-form select:focus,
.survey-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.survey-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

/* Success Section */
.success-section {
    padding: 80px 20px;
    background: var(--primary-green);
    color: var(--white);
}

.success-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.success-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.success-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.success-point {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.success-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.success-point p {
    opacity: 0.9;
    line-height: 1.6;
}

.success-section .cta-button {
    background: var(--white);
    color: var(--primary-green);
    display: block;
    margin: 0 auto;
}

.success-section .cta-button:hover {
    background: var(--light-brown);
    color: var(--white);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.review p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.reviewer {
    color: var(--primary-green);
    font-weight: 600;
}

.reviews-section .cta-button {
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    color: var(--medium-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .value-content {
        grid-template-columns: 1fr;
    }
    
    .value-hero-image {
        margin-bottom: 2rem;
    }
    
    .value-hero-image img {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-points {
        grid-template-columns: 1fr;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
    }
    
    .toggle-group {
        flex-direction: column;
    }
    
    .pricing-calculator {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Base Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.menu-toggle .hamburger {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px; /* adjust based on your nav height */
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.footer a {
  color: #ffffff !important;       /* Explicit white so links are visible */
  text-decoration: none !important; /* Remove underline forcibly */
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #98653C !important;
}

