/* ===== GLOBAL STYLES ===== */
/* ===== SCROLL ANIMATIONS ===== */
.section-header,
.course-card,
.about-text,
.contact-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

:root {
    /* Primærfarger */
    --green-primary: #229D50;
    --green-light: #8CCEA4;

    /* Aksentfarger */
    --coral: #F5726C;
    --brown-dark: #513231;

    /* Nøytral */
    --beige-light: #F9E2D7;

    /* Apple-inspirert premium hierarki med opacities */
    --primary-green-10: rgba(34, 157, 80, 0.1);
    --primary-green-25: rgba(34, 157, 80, 0.25);
    --primary-green-50: rgba(34, 157, 80, 0.5);
    --primary-green-75: rgba(34, 157, 80, 0.75);

    --text-primary: #513231;
    --text-secondary: rgba(81, 50, 49, 0.7);
    --text-light: #ffffff;

    --bg-primary: #F9E2D7;
    --bg-secondary: rgba(249, 226, 215, 0.3);
    --bg-accent: rgba(34, 157, 80, 0.05);

    /* Skygger */
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --shadow-green: rgba(34, 157, 80, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-weight: 400;
}

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

section {
    padding: 80px 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--text-light);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--green-primary);
    border-bottom-color: var(--green-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, #1a7a3e 100%);
    color: var(--text-light);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-green);
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-green-75);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--shadow-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--green-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-icon {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-icon-img {
    height: 120px;
    width: auto;
    opacity: 0.9;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.credentials, .mission {
    margin-top: 30px;
}

.credentials h4, .mission h4 {
    font-size: 1.4rem;
    color: var(--green-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.credentials li i {
    color: var(--green-primary);
    font-size: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--bg-primary);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--green-primary);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--green-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    font-weight: 400;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* ===== COURSES SECTION ===== */
.courses {
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        #ffffff 100%
    );
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
    border-radius: 18px;
    padding: 40px 28px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--primary-green-10);
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.course-icon {
    font-size: 3.5rem;
    color: var(--green-primary);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.course-duration {
    color: var(--green-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.course-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

.course-includes {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.course-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.course-includes li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-primary);
    margin: 20px 0;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--bg-accent) 100%
    );
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calendar-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-container {
    background-color: var(--bg-accent);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--green-primary);
    font-weight: 700;
}

.calendar-nav {
    background-color: var(--green-primary);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 700;
}

.calendar-nav:hover {
    background-color: #1a7a3e;
    transform: scale(1.1);
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--text-light);
    border: 2px solid transparent;
    font-size: 0.9rem;
    padding: 8px;
}

.calendar-day:hover:not(.disabled):not(.booked) {
    border-color: var(--coral);
    transform: scale(1.05);
    background-color: rgba(245, 114, 108, 0.1);
}

.calendar-day.selected {
    background-color: var(--green-primary);
    color: var(--text-light);
}

.calendar-day.available {
    cursor: pointer;
}

.calendar-day.booked {
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.calendar-day.disabled {
    background-color: transparent;
    color: #ccc;
    cursor: default;
}

.calendar-day.header {
    font-weight: 700;
    color: var(--green-primary);
    background-color: transparent;
    cursor: default;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.legend-dot.available {
    background-color: var(--text-light);
    border: 2px solid var(--green-primary);
}

.legend-dot.selected {
    background-color: var(--green-primary);
}

.legend-dot.booked {
    background-color: #ddd;
}

/* ===== COURSE INFO SECTION ===== */
.course-info-container {
    background-color: var(--green-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.course-info-container h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.course-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--text-light);
    border-radius: 12px;
    border-left: 4px solid var(--green-primary);
    transition: all 0.3s;
}

.course-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.course-info-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    background-color: var(--green-primary);
    color: var(--text-light);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.course-info-details {
    flex: 1;
}

.course-info-details h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.course-info-time,
.course-info-location,
.course-info-spots {
    font-size: 0.9rem;
    color: #666;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-info-time i,
.course-info-location i,
.course-info-spots i {
    color: var(--green-primary);
    width: 14px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.course-booking-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: var(--green-primary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px var(--shadow-green);
    border: none;
}

.course-booking-link:hover {
    background: var(--primary-green-75);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--shadow-green);
}

/* ===== FORMS ===== */
.booking-form-container {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.booking-form h3 {
    font-size: 1.8rem;
    color: var(--green-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #ffffff;
    font-family: inherit;
    color: var(--text-primary);
    font-weight: 400;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: var(--text-secondary);
}

.payment-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid var(--green-primary);
}

.payment-info h4 {
    color: var(--green-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.accepted-payments {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: var(--text-primary);
    margin-top: 15px;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 400;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--beige-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--green-primary);
    min-width: 40px;
}

.contact-item h4 {
    color: var(--green-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--green-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--green-light);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
    opacity: 0.9;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--green-light);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .course-info-container {
        order: 2;
    }

    .calendar-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--text-light);
        box-shadow: 0 5px 10px var(--shadow);
        padding: 20px;
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .calendar {
        gap: 5px;
    }

    .calendar-day {
        font-size: 0.9rem;
    }

    .course-info-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .course-info-date {
        align-self: center;
        min-width: auto;
        width: 60px;
    }

    .course-booking-link {
        align-self: center;
    }

    .calendar-section {
        gap: 15px;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

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

.modal-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-course-meta span i {
    color: var(--green-primary);
    margin-right: 4px;
}

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

.modal-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--primary-green-25);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.modal-success {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--green-primary);
}

.modal-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-success p {
    font-size: 1.1rem;
    color: var(--text-primary);
}
