:root {
    --terracotta: #E64A19;
    --leaf-green: #8BC34A;
    --soft-purple: #BA68C8;
    --dark-text: #2C3E50;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    hyphens: auto;
}

header {
    background: linear-gradient(135deg, var(--leaf-green), var(--soft-purple));
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.1);
}

.burger-menu {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    z-index: 1001;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--terracotta), var(--soft-purple));
    transition: right 0.3s ease;
    padding: 4rem 2rem 2rem;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    margin-bottom: 1.5rem;
}

.nav-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-menu ul li a:hover {
    background: rgba(255,255,255,0.2);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

.desktop-nav {
    display: none;
}

.hero {
    background: linear-gradient(135deg, var(--leaf-green), var(--soft-purple));
    padding: 4rem 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--terracotta);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,74,25,0.4);
}

.section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-text);
    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(--terracotta), var(--leaf-green), var(--soft-purple));
    border-radius: 2px;
}

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--leaf-green), var(--soft-purple));
    margin: 2rem 0;
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--dark-text);
    line-height: 1.8;
}

.features {
    background: var(--light-bg);
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--leaf-green);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.review {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--soft-purple);
}

.review-author {
    font-weight: 600;
    color: var(--terracotta);
    margin-top: 1rem;
}

footer {
    background: linear-gradient(135deg, var(--dark-text), #34495e);
    color: var(--white);
    padding: 3rem 1rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--leaf-green);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--leaf-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--leaf-green);
}

form 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.3rem;
}

.checkbox-group label {
    font-weight: normal;
}

.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.thankyou-content {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-content i {
    font-size: 5rem;
    color: var(--leaf-green);
    margin-bottom: 2rem;
}

.thankyou-content h1 {
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.policy-content h1 {
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: var(--leaf-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .burger-menu {
        display: none;
    }

    .overlay {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
    }

    .desktop-nav {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .desktop-nav li {
        margin: 0;
    }

    .desktop-nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
        display: block;
    }

    .desktop-nav a:hover {
        color: var(--terracotta);
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 4rem 2rem;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 6rem 2rem;
    }
}

