/* Yubuyan Bold Font for Headings */
@font-face {
    font-family: "YU Buyan Bold";
    src: url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.eot");
    src: url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/9a17525c2cffe7cde0f5bfb2986c9cf2.svg#YU Buyan Bold")format("svg");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #dff5e1;
    color: #1b1b1b;
    line-height: 1.5;
}

/* HEADINGS USE YUBUYAN BOLD FONT */
h1, h2, h3, h4, h5, h6 {
    font-family: "YU Buyan Bold", 'Inter', sans-serif;
    font-weight: 700;
}

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

@media (min-width: 1536px) {
    .container {
        max-width: 1448px;
    }
}

/* Header */
.header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.header-content {
    background-color: #f4f7f4;
    border-radius: 32px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
}

.nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2e7d32;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-phone:hover {
    background-color: #27692b;
}

.desktop-btn {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-btn {
        display: inline-flex;
    }
}

.menu-toggle {
    display: flex;
    background-color: #2e7d32;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: #f4f7f4;
    border-radius: 24px;
    padding: 2rem 1.25rem;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-menu .btn-phone {
    margin-top: 1rem;
    width: 200px;
    justify-content: center;
}

/* Section */
.section {
    margin-bottom: 100px;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1536px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-description {
    font-size: 1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (min-width: 1536px) {
    .section-description {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #27692b;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-accent {
    padding: 1rem 2rem;
    background-color: #ff8a00;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accent:hover {
    background-color: #e67a00;
}

/* Hero */
.hero-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 32px;
    overflow: hidden;
    background-color: white;
    height: 250px;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-image {
        height: 600px;
    }
}

@media (min-width: 1536px) {
    .hero-image {
        height: 700px;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 2rem 1.25rem;
    background-color: #f4f7f4;
    border-radius: 32px;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon img {
    max-width: 100%;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.2;
}

@media (min-width: 1536px) {
    .about-card p {
        font-size: 1.25rem;
    }
}

/* Opportunity */
.opportunity-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.opportunity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 1.5rem;
    background-color: #1b1b1b;
    color: white;
    border-radius: 20px;
    min-height: 340px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

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

@media (min-width: 640px) {
    .opportunity-card {
        border-radius: 32px;
        padding: 3.5rem;
    }
}

@media (min-width: 1536px) {
    .opportunity-card {
        min-height: 430px;
    }
}

.opportunity-card-content {
    position: relative;
    z-index: 10;
}

.opportunity-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .opportunity-card h3 {
        font-size: 3rem;
    }
}

@media (min-width: 1536px) {
    .opportunity-card h3 {
        font-size: 4.25rem;
    }
}

.opportunity-card ul {
    list-style: disc;
    list-style-position: inside;
    margin-top: 1rem;
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .opportunity-card ul {
        margin-top: 2rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 1536px) {
    .opportunity-card ul {
        margin-top: 2.5rem;
        font-size: 2rem;
    }
}

.opportunity-card li {
    margin-bottom: 0.5rem;
}

.opportunity-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.opportunity-cta {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

.opportunity-cta img {
    width: 20px;
    height: 20px;
}

.opportunity-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Partners Carousel */
.partners-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partners-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.partner-logo {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
    .partner-logo {
        flex: 0 0 50%;
    }
}

@media (min-width: 768px) {
    .partner-logo {
        flex: 0 0 33.333%;
    }
}

@media (min-width: 1024px) {
    .partner-logo {
        flex: 0 0 25%;
    }
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.carousel-btn {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background-color: #27692b;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2e7d32;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background-color: #2e7d32;
    transform: scale(1.2);
}

.partners-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* Weekly Performance */
.findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .findings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .findings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.findings-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background-color: #f4f7f4;
    padding: 2rem 1.25rem;
    border-radius: 24px;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (min-width: 640px) {
    .findings-card {
        border-radius: 32px;
    }
}

.findings-number {
    font-size: 2.5rem;
    line-height: 1.1;
}

@media (min-width: 1536px) {
    .findings-number {
        font-size: 3.25rem;
    }
}

.findings-divider {
    width: 130px;
    height: 1px;
    background-color: #2e7d32;
}

.findings-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.1;
}

@media (min-width: 1536px) {
    .findings-text {
        font-size: 1.875rem;
    }
}

/* CONTACT SECTION - FIXED */
.contacts-section {
    margin-top: 150px;
}

@media (min-width: 640px) {
    .contacts-section {
        margin-top: 230px;
    }
}

.section-head-contacts {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-contacts {
    font-family: "YU Buyan Bold", 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .section-title-contacts {
        font-size: 2.5rem;
    }
}

@media (min-width: 1536px) {
    .section-title-contacts {
        font-size: 3.5rem;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 5fr 7fr;
        gap: 3rem;
    }
}

@media (min-width: 1536px) {
    .contacts-grid {
        gap: 4rem;
    }
}

.contacts-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .contacts-left {
        gap: 3rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .contacts-left {
        gap: 4rem;
    }
}

.contacts-subtitle {
    font-family: "YU Buyan Bold", 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .contacts-subtitle {
        font-size: 1.5rem;
        max-width: 370px;
    }
}

@media (min-width: 1536px) {
    .contacts-subtitle {
        font-size: 1.875rem;
        max-width: 500px;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #1b1b1b;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-info-item:hover {
    color: #2e7d32;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2e7d32;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.contact-info-item:hover .contact-icon {
    background-color: #27692b;
}

.contact-form {
    background-color: rgba(46, 125, 50, 0.2);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2.5rem;
        border-radius: 32px;
    }
}

@media (min-width: 1536px) {
    .contact-form {
        padding: 3.75rem;
    }
}

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

@media (min-width: 640px) {
    .form-group {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1536px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #2e7d32;
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f4;
    color: #1b1b1b;
    resize: none;
}

@media (min-width: 640px) {
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 0.75rem 2rem;
        border-radius: 32px;
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 1.125rem;
    }
}

@media (min-width: 1536px) {
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 1.25rem;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(27, 27, 27, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #2e7d32;
    outline-offset: 0;
}

.file-group {
    position: relative;
}

#id_drivers_license {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80px;
    padding: 0.75rem 1rem;
    border: 2px dashed #2e7d32;
    border-radius: 20px;
    background-color: #f4f7f4;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    color: rgba(27, 27, 27, 0.5);
    text-align: center;
}

@media (min-width: 640px) {
    .file-upload-label {
        min-height: 120px;
        padding: 0.75rem 2rem;
        border-radius: 32px;
        font-size: 1.125rem;
    }
}

@media (min-width: 1536px) {
    .file-upload-label {
        font-size: 1.25rem;
    }
}

.file-upload-label:hover {
    border-color: #27692b;
    background-color: #e8f5e9;
}

.file-upload-label.has-file {
    color: #2e7d32;
    font-weight: 600;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-left: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.alert-success {
    background-color: #d4edda;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.alert-error {
    background-color: #f8d7da;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.btn-submit {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .btn-submit {
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 1536px) {
    .btn-submit {
        font-size: 1.5rem;
    }
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
}

@media (min-width: 640px) {
    .modal-content {
        padding: 2.5rem 2rem;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: #f0f0f0;
}

.modal-title {
    font-family: "YU Buyan Bold", 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

@media (min-width: 640px) {
    .modal-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.modal-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.modal-section-title:first-of-type {
    margin-top: 0;
}

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

@media (min-width: 640px) {
    .modal-form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-group-full {
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .modal-form-group-full {
        margin-bottom: 1rem;
    }
}

.modal-input,
.modal-select,
.modal-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1b1b1b;
}

@media (min-width: 640px) {
    .modal-input,
    .modal-select,
    .modal-textarea {
        padding: 0.875rem 1.25rem;
        border-radius: 24px;
    }
}

.modal-input::placeholder,
.modal-textarea::placeholder {
    color: rgba(27, 27, 27, 0.4);
}

.modal-input:focus,
.modal-select:focus,
.modal-textarea:focus {
    outline: 2px solid #2e7d32;
    outline-offset: 0;
    border-color: #2e7d32;
}

.modal-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231b1b1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* DATE INPUT WITH CALENDAR ICON */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .modal-input {
    padding-right: 3rem;
}

.calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.modal-error {
    display: block;
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}

.modal-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.modal-message.success {
    background-color: #d4edda;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.modal-message.error {
    background-color: #f8d7da;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.btn-modal-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .btn-modal-submit {
        padding: 1rem 2rem;
        border-radius: 24px;
        font-size: 1.25rem;
    }
}

.btn-modal-submit:hover:not(:disabled) {
    background-color: #27692b;
}

.btn-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* FLATPICKR CUSTOMIZATION */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.flatpickr-day.selected {
    background-color: #2e7d32;
    border-color: #2e7d32;
}

.flatpickr-day.selected:hover {
    background-color: #27692b;
    border-color: #27692b;
}

/* Footer */
.footer {
    margin-top: 150px;
    padding-bottom: 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.25rem;
    border-top: 1px solid #2e7d32;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: auto 1fr auto;
        align-items: start;
    }
}

.footer-logo {
    width: 150px;
}

.footer-logo img {
    width: 100%;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #2e7d32;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-cta p {
    line-height: 1.2;
    font-size: 1rem;
    max-width: 450px;
}

@media (min-width: 1536px) {
    .footer-cta p {
        font-size: 1.25rem;
    }
}

.footer-bottom {
    text-align: right;
}

.footer-bottom p {
    font-size: 0.875rem;
}