/* Italy Wedding Dreams - Romantic Weddings Website Styles */
/* Ніжна весільна тематика з романтичними кольорами */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&family=Poppins:wght@400;600;700;800&display=swap');

/* CSS Variables - Wedding Theme */
:root {
    /* Primary Colors - Romantic & Soft */
    --primary-rose: #D4A574;
    --primary-pink: #F8B195;
    --primary-cream: #F4E1D2;
    --accent-blush: #E8B4B8;
    --accent-gold: #F2D5D8;

    /* Wedding Colors */
    --wedding-gold: #D4AF37;
    --wedding-silver: #C0C0C0;
    --wedding-champagne: #F7E7CE;
    --wedding-ivory: #FFFFF0;

    /* Gradients for Romantic Feel */
    --gradient-wedding: linear-gradient(135deg, #D4A574 0%, #F8B195 50%, #E8B4B8 100%);
    --gradient-rose: linear-gradient(135deg, #F4E1D2 0%, #E8B4B8 50%, #F2D5D8 100%);
    --gradient-romance: linear-gradient(135deg, #F8B195 0%, #F4E1D2 100%);
    --gradient-blush: linear-gradient(135deg, #E8B4B8 0%, #F2D5D8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(212, 167, 116, 0.7) 0%, rgba(248, 177, 149, 0.6) 50%, rgba(232, 180, 184, 0.5) 100%);

    /* Backgrounds */
    --bg-light: #FEF7F0;
    --bg-white: #FFFFFF;
    --bg-cream: #FEFAE0;
    --bg-dark: #8B4513;
    --bg-darker: #654321;

    /* Text */
    --text-dark: #654321;
    --text-medium: #8B4513;
    --text-light: #A0522D;
    --text-white: #FFFFFF;
    --text-gray: #6C757D;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(212, 167, 116, 0.1);
    --shadow-medium: 0 8px 30px rgba(212, 167, 116, 0.2);
    --shadow-heavy: 0 12px 40px rgba(212, 167, 116, 0.3);
    --shadow-wedding: 0 8px 25px rgba(232, 180, 184, 0.4);

    /* Border Radius */
    --radius-sm: 15px;
    --radius-md: 25px;
    --radius-lg: 35px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizes */
    --navbar-height: 85px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wedding {
    background: var(--gradient-wedding);
    color: white;
}

.btn-wedding:hover {
    background: var(--gradient-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-wedding);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-rose);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 167, 116, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-rose);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-accent {
    color: var(--primary-pink);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-wedding);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-wedding);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    margin-left: 1rem;
}

.cta-nav:hover {
    background: var(--gradient-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-wedding);
}

.cta-nav::after {
    display: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-blush);
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn small {
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn.active {
    background: var(--gradient-wedding);
    color: white;
    border-color: var(--primary-rose);
}

.lang-btn:hover {
    border-color: var(--primary-rose);
    background: rgba(232, 180, 184, 0.1);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-medium);
    margin: 3px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .language-switcher {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 20px 1.5rem 2rem 1.5rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat {
        padding: 1rem;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Wedding Venues Section Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .section-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .venue-filters {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .venue-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
    }

    .venues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .venue-image {
        height: 180px;
    }

    .venue-content {
        padding: 1.5rem;
    }

    .venue-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .venue-location {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .venue-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .venue-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .feature {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .venue-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .price-info {
        text-align: center;
    }

    .venue-highlight-image img {
        height: 150px;
    }

    /* Destinations Section Mobile */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destination-card {
        text-align: center;
    }

    .destination-image {
        height: 200px;
    }

    .destination-content {
        padding: 1.5rem;
    }

    /* Planning Section Mobile */
    .planning-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .planning-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .progress-container {
        margin: 1.5rem 0;
    }

    .certifications {
        margin-top: 2rem;
    }

    .cert-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .cert-badge {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Section Badge Mobile */
    .section-badge {
        background: var(--primary-rose);
        color: white;
        transition: var(--transition);
    }

    .section-badge:hover {
        background: var(--gradient-romance);
        color: var(--text-dark);
    }

    /* Hero Buttons Mobile */
    .hero-buttons .btn {
        background: var(--primary-rose);
        color: white;
        transition: var(--transition);
    }

    .hero-buttons .btn:hover {
        background: var(--gradient-romance);
        color: var(--text-dark);
    }

    /* Testimonials Section Mobile */
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .testimonial-rating {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .author-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        text-align: center;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Booking Form Mobile */
    .booking-section {
        padding: 3rem 1.5rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .form-grid input,
    .form-grid select {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .booking-form textarea {
        grid-column: 1;
        min-height: 100px;
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: -2;
}

.wedding-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wedding-particles::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: rgba(242, 213, 216, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.wedding-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 15px;
    height: 15px;
    background: rgba(232, 180, 184, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 120px 2rem 0 2rem;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(2.5rem, 5vw, 4rem);
    white-space: nowrap;
    word-wrap: break-word;
    hyphens: auto;
}

.highlight-wedding {
    background: var(--gradient-romance);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pink-subtitle {
    color: var(--primary-pink);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(248, 177, 149, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(242, 213, 216, 0.4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow-down {
    color: white;
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: var(--gradient-romance);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Wedding Venues Section */
.wedding-venues {
    background: var(--bg-light);
}

.venue-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.venue-filter {
    background: white;
    color: var(--text-medium);
    border: 2px solid var(--accent-blush);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.venue-filter:hover,
.venue-filter.active {
    background: var(--gradient-wedding);
    color: white;
    border-color: var(--primary-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.venue-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-blush);
}

.venue-card.featured {
    border: 2px solid var(--primary-rose);
    position: relative;
}

.venue-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-romance);
    color: white;
}

.venue-card:hover .image-placeholder {
    transform: scale(1.1);
    transition: var(--transition);
}

.wedding-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-wedding);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-wedding);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.venue-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.venue-title {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.venue-location {
    color: var(--primary-rose);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.venue-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    background: var(--bg-cream);
    color: var(--text-medium);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.venue-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 167, 116, 0.1);
}

.price-info {
    text-align: left;
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-amount {
    color: var(--primary-rose);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Destinations */
.destinations {
    background: var(--bg-white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid rgba(212, 167, 116, 0.1);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blush);
}

.destination-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 1.5rem;
    text-align: center;
}

.destination-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.destination-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.venues-count {
    color: var(--primary-rose);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Planning */
.planning {
    background: var(--bg-light);
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.planning-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 2px solid rgba(212, 167, 116, 0.1);
}

.planning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blush);
}

.planning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.planning-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.planning-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(212, 167, 116, 0.2);
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-wedding);
    border-radius: var(--radius-sm);
    transition: width 0.3s ease;
}

.progress-label {
    color: var(--primary-rose);
    font-weight: 600;
    font-size: 0.9rem;
}

.certifications {
    margin-top: 3rem;
    text-align: center;
}

.certifications h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cert-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-badge {
    background: var(--gradient-romance);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(212, 167, 116, 0.2);
}

/* Testimonials */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid rgba(212, 167, 116, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blush);
}

.stars {
    color: var(--wedding-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-romance);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-venue {
    color: var(--primary-rose);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Booking */
.cta-booking {
    background: var(--gradient-rose);
    color: white;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.5rem;
}

.booking-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
    border: 3px solid rgba(212, 167, 116, 0.3);
}

.booking-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 167, 116, 0.3);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--border-transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-rose);
    box-shadow: 0 0 0 3px rgba(212, 167, 116, 0.1);
}

.booking-form input:invalid,
.booking-form select:invalid {
    border-color: #e74c3c;
}

.booking-form input:valid,
.booking-form select:valid {
    border-color: var(--primary-rose);
}

.booking-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.checkbox-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.checkbox-label a {
    color: var(--primary-rose);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 2px solid rgba(212, 167, 116, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blush);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-certifications {
    margin-top: 1.5rem;
}

.footer-certifications span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form textarea {
        grid-column: 1;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Global Mobile Improvements */
    * {
        box-sizing: border-box;
    }

    body {
        font-size: 16px;
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
    }

    /* Container and Layout */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Typography Mobile */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Button Improvements */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
    }

    /* Form Improvements */
    input, select, textarea, button {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    input[type="date"], input[type="number"] {
        -webkit-appearance: none;
        appearance: none;
    }

    /* Image Optimization */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .venue-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    /* Card Improvements */
    .venue-card, .planning-card, .contact-card {
        margin-bottom: 1.5rem;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Grid Improvements */
    .venues-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .planning-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Stats Grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    /* Badge Improvements */
    .wedding-badge, .featured-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    /* Spacing Improvements */
    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 2rem 0;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    /* Language Switcher Mobile */
    .language-switcher {
        position: static;
        margin-top: 1rem;
    }

    /* Modal Improvements */
    .modal {
        width: 95vw;
        max-width: none;
        margin: 2rem auto;
    }

    /* Animation Improvements */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .venue-card {
        max-width: 100%;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Better touch targets */
    .nav-link, .venue-filter, .social-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (max-height: 500px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content {
        padding: 1rem;
    }
}