:root {
    --primary-bg: #2D1B4E;
    --light-sage: #F0F4FF;
    --pastel-green: #14B8A6;
    --soft-cream: #C4B5FD;
    --natural-green: #F8FAFC;
    --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 27, 78, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 27, 78, 0.16);
    --shadow-xl: 0 12px 48px rgba(45, 27, 78, 0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #1E1B3A;
    background-color: var(--light-sage);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

header {
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(45, 27, 78, 0.95) 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pastel-green), transparent);
    opacity: 0.5;
}
a{
    color: #1E1B3A;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    transition: all var(--transition-base);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.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;
border-radius: 20px;

}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-cream);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--soft-cream);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform var(--transition-fast);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.hero {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--primary-bg) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 16s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 10% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(40px);
    animation: pulseGlow 10s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

.hero-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.hero-orbits .orbit {
    position: absolute;
    border-radius: 45% 55% 50% 50%;
    border: 1px solid rgba(255,255,255,0.25);
    width: var(--orbit-size, 240px);
    height: var(--orbit-size, 240px);
    top: var(--orbit-top, 10%);
    left: var(--orbit-left, 10%);
    animation: organicOrbit var(--orbit-duration, 18s) linear infinite;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
    transform-origin: center;
    backdrop-filter: blur(1px);
}

.hero-orbits .orbit::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    top: 10%;
    right: 18%;
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes organicOrbit {
    0% {
        transform: rotate(0deg) scale(1);
        border-radius: 45% 55% 50% 50%;
    }
    25% {
        transform: rotate(90deg) scale(1.05);
        border-radius: 43% 57% 48% 52%;
    }
    50% {
        transform: rotate(180deg) scale(0.97);
        border-radius: 50% 50% 53% 47%;
    }
    75% {
        transform: rotate(270deg) scale(1.02);
        border-radius: 48% 52% 45% 55%;
    }
    100% {
        transform: rotate(360deg) scale(1);
        border-radius: 45% 55% 50% 50%;
    }
}

@keyframes gradientShift {
    0% {
        transform: scale(1) translate(-5%, -5%);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1) translate(5%, 5%);
        opacity: 0.6;
    }
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--pastel-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-light {
    background: var(--soft-cream);
    color: var(--primary-bg);
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-bg);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--pastel-green), var(--primary-bg));
    border-radius: 2px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
gap: 10px;
    align-items: center;
    background: var(--natural-green);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 184, 166, 0.08);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pastel-green), var(--primary-bg));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    color: var(--primary-bg);
    font-size: 1.4rem;
    font-weight: 700;
}

.card p {
    line-height: 1.8;
    color: #4A5568;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.card:hover img {
    transform: scale(1.05);
}

.features {
    background: linear-gradient(180deg, var(--soft-cream) 0%, rgba(196, 181, 253, 0.5) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pastel-green), transparent);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform var(--transition-base);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    color: var(--primary-bg);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #5A6478;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--pastel-green) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--natural-green);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-cream);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-green);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.checkbox-group:hover {
    box-shadow: var(--shadow-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--pastel-green);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.checkbox-group a:hover {
    color: var(--primary-bg);
}

.map-container {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--natural-green);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(45, 27, 78, 0.95) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pastel-green), transparent);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

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

.footer-section a {
    color: var(--soft-cream);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

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

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

.privacy-links a {
    color: var(--soft-cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
}

.privacy-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--soft-cream);
    transition: width var(--transition-base);
}

.privacy-links a:hover {
    color: white;
}

.privacy-links a:hover::after {
    width: 100%;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--natural-green);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 550px;
    margin: 0 1rem;
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255,255,255,0.2);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--primary-bg);
    font-size: 1.8rem;
}

.modal-content p {
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-bg);
    transition: all var(--transition-fast);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--soft-cream);
    transform: rotate(90deg);
}

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

.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(20, 184, 166, 0.08);
    transition: all var(--transition-base);
}

.content-section:hover {
    box-shadow: var(--shadow-md);
}

.content-section h2 {
    color: var(--primary-bg);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--pastel-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.content-section h4 {
    color: var(--primary-bg);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4A5568;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.success-message {
    text-align: center;
    padding: 5rem 2rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--pastel-green);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.3));
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 820px){
.nav-menu{
    gap: 1rem;
}
}

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

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        background: rgba(45, 27, 78, 0.95);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .hero {
        padding: 4rem 0;
    }

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

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

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

    .cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .privacy-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .content-section{
        padding: 1.5rem;
    }
    .logo span{
        display: none;
    }
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

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

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

    section {
        padding: 3rem 0;
    }

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

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .card {
        padding: 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2rem;
    }
}

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

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

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

    .card {
        padding: 1.5rem;
    }

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