@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
}


:root {
    --bg-dark-green: #0f2a0f;
    --accent-green: #5a9e2f;
    --btn-green: #4f9d3e;
    --text-white: #ffffff;
    --text-grey: #cfcfcf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', sans-serif;
    color: white;
}


.container, .nav-container, .hero-content {
    padding: 0 40px; 
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}


.nav-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding-top: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    
    border: 2px solid #246101; 
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    border: 2px solid var(--bg-dark-green);
}

.logo {
    height: 25px;
    width: auto;
    margin-top: 5px;
}

.nav-center-pill {
    display: flex;
    align-items: center;
    background-color: #0f2a0f;
    padding: 10px 24px;
    padding-left: 0px;
    padding-right: 40px;
    border-radius: 50px;
    gap: 40px;
     border: 1px solid #0f2a0f;
     cursor: pointer;
     color: white;
     text-decoration: none !important;
}
.nav-center-pill:hover {
    background-color: #5a9e2f;
    color: white;
    border: 1px solid #5a9e2f;
     cursor: pointer;
}

.nav-center-pill a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
}

.btn-contact {
    background-color: var(--btn-green);
    color: white !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #3e7e31;
}

#contact-hero {
    padding: 140px 0 60px 0;
    text-align: center;
    background: white;
    
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

#contact-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

#contact-form-section {
    padding: 20px 0 0px 0;
    background: white;
    
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.schedule-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-card {
    background: #f0f9f0;
    border: 2px solid #c8e6c9;
    border-radius: 16px;
    padding: 48px;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 28px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: border-color 0.3s;
}

.form-group select {
    padding: 14px 48px 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--btn-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 12px;
}

.custom-select {
    position: relative;
}

.custom-select select option:disabled {
    color: #999;
}

.radio-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.radio-group > label {
    margin-bottom: 8px;
}

.radio-options {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 6px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--btn-green);
}

.radio-label span {
    font-weight: 400;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.checkbox-label-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--btn-green);
}

.duration-section {
    margin-top: 30px;
}

.subsection-title {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 500;
}

.submit-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding-bottom: 60px;
}

.submit-btn {
    background: var(--bg-dark-green);
    color: white;
    padding: 16px 60px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 42, 15, 0.3);
}

.confirmation-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.confirmation-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--btn-green);
}

#footer-cta {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    text-align: center;
    color: white;

    background-color: var(--bg-dark-green);

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),

    radial-gradient(circle at -10%-15%,
        rgba(90,158,47,0.75) 0%,
        rgba(90,158,47,0.45) 15%,
        rgba(90,158,47,0.18) 28%,
        transparent 48%
    ),

    radial-gradient(circle at 110% 115%,
        rgba(79,157,62,0.85) 0%,
        rgba(79,157,62,0.50) 18%,
        rgba(79,157,62,0.20) 32%,
        transparent 52%
    );

    background-size: 
        60px 60px,
        60px 60px,
        auto,
        auto;
}

#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

#footer-cta::after {
    top: 75%;
    left: 50%;
    background: radial-gradient(circle, #4f9d3e 0%, transparent 70%);
}


#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.cta-phone i {
    font-size: 16px;
}

#footer-cta h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 500;
}

.green-text {
    color: var(--accent-green);
    font-weight: 700;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    margin: 20px 0 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn-primary {
    background: white;
    color: var(--bg-dark-green);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.site-footer {
    width: 100%;
    background-color: #0E2600;
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-small {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--accent-green);
}

.email-link {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.footer-watermark-img {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    
    z-index: 1;
    pointer-events: none;
}

.modal-overlay {
    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);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 3px solid #3e7e31;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease-out;
    text-align: center;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-logo {
    height: 30px;
    margin-bottom: 10px;
}

.modal-header h3 {
    color: #555;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.modal-divider {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin-bottom: 30px;
}

.success-body h2 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.2;
}

.success-body p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.modal-btn {
    width: 100%;
    background-color: #387c0e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn:hover {
    background-color: #2b600b;
}

.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: #555;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.remember-me input {
    accent-color: #aeea00;
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #555;
    text-decoration: none;
    font-weight: 700;
}
.modal-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.modal-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    background-color: #f1ffe8;
    font-size: 16px;
    outline: none;
}


@media (max-width: 768px) {
    .container, .nav-container {
        padding: 0 20px;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }


    .nav-center-pill {
        display: flex; 
        position: static; 
        width: auto;
        background-color: #0f2a0f;
        flex-direction: row;
        padding: 6px 20px;
        border-radius: 50px;
        box-shadow: none;
        gap: 15px;
        align-items: center;
    }

    .nav-center-pill.active {
        display: flex;
    }

    #contact-hero {
        padding: 120px 0 40px 0;
    }

    #contact-hero h1 {
        font-size: 36px;
    }

    .form-card {
        padding: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 22px;
    }

    .form-section {
        margin-bottom: 50px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links {
        width: 100%;
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h4 {
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-column ul {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }
}