@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

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

:root {
    --light-mint: #E8F1F7;
    --light-sage: #C4D6EA;
    --pastel-green: #2E5AA7;
    --soft-cream: #bbdcf5b6;
    --natural-green: #1C3B6A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--natural-green);
    background-color: var(--light-mint);
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
a{
    color: #1C3B6A;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--pastel-green);
    text-decoration: none;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

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

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

.nav-menu a:hover {
    color: var(--pastel-green);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--natural-green);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.mobile-toggle i {
    pointer-events: none;
}

.hero {
    background: linear-gradient(135deg, var(--soft-cream), var(--light-mint));
    border-radius: 50%;
    padding: 4rem 5%;
    text-align: center;
}
.hero>img{
    width: 400px;
    object-fit: cover;
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--natural-green);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--pastel-green);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--pastel-green);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}
.contact-container a{
    color: #1C3B6A;
    font-weight: 500;
    text-decoration: dotted;
}
.btn:hover {
    background-color: var(--natural-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 90, 167, 0.3);
}

.btn-secondary {
   color: white;
    border: 2px solid var(--pastel-green);
    margin-top: 7px;
}

.btn-secondary:hover {
    transform: translateX(2px);
    background-color: var(--pastel-green);
    color: white;
}

section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--natural-green);
}

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

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    gap: 4px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card a{
    text-align: center;
    margin-top: 4px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--pastel-green);
}

.card-icon i {
    font-size: 1.8rem;
}

.card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--natural-green);
}

.card p {
    text-align: center;
    color: #555;
}

.features {
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--pastel-green);
}

.cta-section {
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    color: white;
    text-align: center;
    border-radius: 90px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
}
.contact-info>p{
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--pastel-green);
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--natural-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}
footer a{
    color: #E8F1F7;
}

footer {
    background-color: var(--natural-green);
    color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--soft-cream);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--soft-cream);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
}

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

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--natural-green);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

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

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.policy-content h1 {
    color: var(--natural-green);
    margin-bottom: 1rem;
}

.policy-content h2 {
    color: var(--pastel-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #555;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.thank-you-container {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    
    margin: 0 auto;
    padding: 6rem 2rem;
}


.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--pastel-green);
}

.success-icon i {
    font-size: 2.5rem;
}
@media (max-width: 808px){
    .nav-menu{
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .mobile-toggle {
        display: inline-flex;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .privacy-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-content {
        margin: 20% 5%;
        padding: 1.5rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 400px){
     .hero img{
        width: 180px;
    }
}
@media (max-width: 480px) {
    .hero img{
        width: 300px;
    }
    .contact-form {
    background-color: white;
    padding: 0.7rem;
    border-radius: 15px;
}
    .logo>span{
        display: none;
    }
    nav {
        padding: 1rem 3%;
    }

    section {
        padding: 3rem 3%;
    }

    .hero {
        padding: 3rem 3%;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .card {
        padding: 1.5rem;
    }
}
