* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose-gold: #B76E79;
    --white: #FFFFFF;
    --soft-grey: #F5F5F5;
    --dark-grey: #333333;
    --text-grey: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
    hyphens: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(183, 110, 121, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.2);
    padding: 20px 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--rose-gold);
}

.burger-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--rose-gold);
    cursor: pointer;
    padding: 5px;
}

.hero {
    background: linear-gradient(135deg, var(--rose-gold) 0%, rgba(183, 110, 121, 0.8) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-zone-1.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: shimmer 3s infinite;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--rose-gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--white);
    margin-bottom: 16px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--rose-gold);
}

section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--rose-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--soft-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.2);
    border-color: var(--rose-gold);
}

.service-card img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--rose-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.photo-zone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.photo-zone-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.photo-zone-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-zone-item:hover img {
    transform: scale(1.1);
}

.why-choose {
    background: var(--soft-grey);
}

.features-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.features-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--white);
    border-left: 4px solid var(--rose-gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✓';
    color: var(--rose-gold);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}

.process-timeline {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.process-step {
    background: var(--soft-grey);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    border-left: 4px solid var(--rose-gold);
}

.process-step h3 {
    color: var(--rose-gold);
    margin-bottom: 10px;
}

.process-step .step-number {
    position: absolute;
    left: -15px;
    top: 25px;
    background: var(--rose-gold);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--soft-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--rose-gold);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-grey);
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--rose-gold);
}

footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--rose-gold);
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-grey);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--soft-grey);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.thankyou-page {
    text-align: center;
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thankyou-page h1 {
    color: var(--rose-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thankyou-page p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
}

.thankyou-page .container {
    text-align: center;
}

.thankyou-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.thankyou-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: block;
}

.thankyou-page .btn-secondary {
    background: var(--rose-gold);
    color: var(--white);
    border: 2px solid var(--rose-gold);
}

.thankyou-page .btn-secondary:hover {
    background: var(--white);
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}

.thankyou-page .btn {
    background: var(--rose-gold);
    color: var(--white);
    border: 2px solid var(--rose-gold);
}

.thankyou-page .btn:hover {
    background: var(--white);
    color: var(--rose-gold);
    border-color: var(--rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
}

.policy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.policy-page h1 {
    color: var(--rose-gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.policy-page h2 {
    color: var(--rose-gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-grey);
}

.policy-page ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-grey);
}

.policy-page li {
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-balloon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.floating-balloon:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-balloon:nth-child(2) { left: 80%; top: 30%; animation-delay: 1s; }
.floating-balloon:nth-child(3) { left: 50%; top: 60%; animation-delay: 2s; }

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav-menu li {
        margin: 0 0 0 20px;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .thankyou-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-zone-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 120px 20px;
    }
}
