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

:root {
    --ivory: #FAF8F3;
    --champagne-gold: #D4AF37;
    --blush-pink: #F4E6E7;
    --soft-taupe: #E8DCC6;
    --gold-accent: #C9A961;
    --dark-text: #3D3D3D;
    --shadow-soft: rgba(212, 175, 55, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.7;
}

ul, ol {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

a {
    color: var(--champagne-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    width: 100%;
}

header {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--shadow-soft);
    box-shadow: 0 2px 10px var(--shadow-soft);
}

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

.logo {
    font-family: 'Georgia', serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--champagne-gold);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 1001;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--champagne-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav li {
    margin: 0;
}

nav a {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: block;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 4rem 0;
    margin: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 1.5rem;
}
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

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

.hero h1 {
    color: var(--ivory);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    color: var(--ivory);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--champagne-gold);
    color: var(--ivory);
    border: 2px solid var(--champagne-gold);
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: transparent;
    color: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-soft);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
}

.btn-secondary:hover {
    background: var(--champagne-gold);
    color: var(--ivory);
}

section {
    padding: 8rem 0;
    position: relative;
    margin: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    margin-top: clamp(1rem, 3vw, 2rem);
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

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

.card {
    background: var(--ivory);
    border: 1px solid var(--soft-taupe);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--gold-accent));
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-soft);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.card h3 {
    color: var(--champagne-gold);
    margin-bottom: 1rem;
}

.curved-section {
    border-radius: 50px 50px 0 0;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--ivory) 100%);
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.decorative-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, #2a2a2a 100%);
    color: var(--ivory);
    padding: 3rem 0 1.5rem;
    margin-top: 6rem;
    text-align: center;
}

.home-footer {
    margin-top: 10rem;
}

footer a {
    color: var(--champagne-gold);
}

footer a:hover {
    color: var(--ivory);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--ivory);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 1px solid var(--soft-taupe);
}

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

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-taupe);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--ivory);
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px var(--shadow-soft);
}

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

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

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

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

.map-container {
    margin: 3rem 0;
    padding: 1rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 1px solid var(--soft-taupe);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin: clamp(2rem, 5vw, 4rem) 0;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.contact-hero {
    min-height: clamp(50vh, 60vh, 70vh);
}

.contact-intro {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.contact-intro p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.contact-item {
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--blush-pink) 100%);
    border-radius: clamp(15px, 3vw, 20px);
    border: 2px solid var(--soft-taupe);
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--gold-accent));
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-soft);
}

.contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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

.contact-icon svg {
    width: clamp(36px, 6vw, 48px);
    height: clamp(36px, 6vw, 48px);
}

.contact-item h3 {
    color: var(--champagne-gold);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.contact-item p {
    color: var(--dark-text);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.8;
}


.contact-parallax {
    min-height: clamp(40vh, 50vh, 60vh);
}

.location-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--ivory) 100%);
    border-radius: clamp(25px, 6vw, 50px);
    margin: clamp(2rem, 5vw, 4rem) auto;
    max-width: 1400px;
}

.location-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.location-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--dark-text);
    opacity: 0.8;
    margin-top: clamp(0.75rem, 1.5vw, 1rem);
    font-style: italic;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    max-width: 1200px;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.map-container-enhanced {
    position: relative;
    border-radius: clamp(15px, 3vw, 25px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: clamp(2px, 0.4vw, 3px) solid var(--champagne-gold);
    background: var(--ivory);
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}

.map-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-address-card {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--gold-accent) 100%);
    padding: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    color: var(--ivory);
}

.address-icon {
    flex-shrink: 0;
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-icon svg {
    width: clamp(24px, 4vw, 32px);
    height: clamp(24px, 4vw, 32px);
}

.address-icon svg path {
    fill: var(--ivory);
}

.address-details h4 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
    color: var(--ivory);
    font-weight: 600;
}

.address-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.map-info-enhanced {
    background: var(--ivory);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: clamp(15px, 3vw, 25px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 2px solid var(--soft-taupe);
    position: sticky;
    top: clamp(100px, 15vw, 120px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 2px solid var(--soft-taupe);
}

.info-icon {
    width: clamp(40px, 7vw, 50px);
    height: clamp(40px, 7vw, 50px);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: clamp(22px, 4vw, 28px);
    height: clamp(22px, 4vw, 28px);
}

.info-header h3 {
    color: var(--champagne-gold);
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    font-weight: 600;
}

.hours-list {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.875rem, 1.8vw, 1.2rem) 0;
    border-bottom: 1px solid rgba(232, 220, 198, 0.5);
    gap: 1rem;
    flex-wrap: wrap;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark-text);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.hours-time {
    color: var(--champagne-gold);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    white-space: nowrap;
}

.hours-time.closed {
    color: rgba(61, 61, 61, 0.6);
    font-style: italic;
}

.info-note {
    background: rgba(212, 175, 55, 0.08);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: clamp(10px, 2vw, 15px);
    border-left: 4px solid var(--champagne-gold);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.info-note p {
    margin: 0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.7;
    color: var(--dark-text);
    opacity: 0.9;
    font-style: italic;
}

.form-section-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.form-intro {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--ivory) 0%, rgba(244, 230, 231, 0.3) 100%);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: clamp(20px, 4vw, 30px);
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 1px solid var(--soft-taupe);
    margin: 0 clamp(1rem, 3vw, 2rem);
}

.contact-form-enhanced {
    max-width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.contact-form-enhanced .form-group {
    margin-bottom: 2rem;
}

.contact-form-enhanced label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.contact-form-enhanced input,
.contact-form-enhanced textarea {
    width: 100%;
    padding: clamp(0.875rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
    border: 2px solid var(--soft-taupe);
    border-radius: clamp(10px, 2vw, 12px);
    font-family: inherit;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    background: var(--ivory);
    transition: all 0.3s ease;
}

.contact-form-enhanced input::placeholder,
.contact-form-enhanced textarea::placeholder {
    color: rgba(61, 61, 61, 0.5);
    font-style: italic;
}

.contact-form-enhanced input:focus,
.contact-form-enhanced textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: var(--ivory);
}

.contact-form-enhanced textarea {
    min-height: clamp(150px, 25vh, 180px);
    resize: vertical;
    line-height: 1.6;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.btn-large {
    padding: clamp(1rem, 2vw, 1.2rem) clamp(2.5rem, 5vw, 3.5rem);
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.contact-form-enhanced .checkbox-group {
    background: rgba(212, 175, 55, 0.05);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-enhanced .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.6;
}

.contact-form-enhanced .checkbox-group a {
    color: var(--champagne-gold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .location-section {
        border-radius: clamp(20px, 5vw, 30px);
        padding: clamp(2.5rem, 6vw, 4rem) 0;
        margin: clamp(2rem, 4vw, 3rem) 0;
    }
    
    .location-section .container {
        padding: 0 clamp(15px, 4vw, 20px);
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
        padding: 0;
    }
    
    .map-info-enhanced {
        position: static;
        top: auto;
    }
    
    .map-container-enhanced {
        border-radius: clamp(15px, 3vw, 20px);
    }
    
    .map-address-card {
        flex-direction: column;
        text-align: center;
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
        gap: 1rem;
    }
    
    .map-frame-wrapper {
        padding-bottom: 75%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: clamp(1.5rem, 3vw, 2rem);
        margin: 0;
    }
    
    .contact-hero {
        min-height: clamp(45vh, 50vh, 55vh);
    }
    
    .contact-hero .hero-content p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .contact-intro p {
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--ivory);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--champagne-gold);
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

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

.privacy-popup h3 {
    color: var(--champagne-gold);
    margin-bottom: 1rem;
}

.privacy-popup p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.content-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page ul,
.content-page ol {
    margin: 1rem 0 1rem 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .container {
        padding: 0 clamp(15px, 4vw, 20px);
    }
    
    section {
        padding: clamp(3rem, 6vw, 5rem) 0;
        margin: clamp(1rem, 3vw, 1.5rem) 0;
    }
    
    .hero {
        min-height: clamp(60vh, 80vh, 90vh);
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .curved-section {
        border-radius: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 30px) 0 0;
        padding-top: clamp(3rem, 6vw, 4rem);
        padding-bottom: clamp(3rem, 6vw, 4rem);
        margin-top: clamp(2rem, 4vw, 3rem);
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    
    .content-page {
        padding: clamp(2rem, 5vw, 3rem) clamp(15px, 4vw, 20px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav ul.active {
        transform: translateX(0);
    }
    
    nav li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        display: block;
    }
    
    header {
        padding: 1rem 0;
    }
    
    section {
        padding: clamp(2.5rem, 8vw, 5rem) 0;
        margin: clamp(1rem, 4vw, 1.5rem) 0;
    }
    
    .hero {
        min-height: clamp(50vh, 70vh, 80vh);
        padding: clamp(1.5rem, 6vw, 3rem) 0;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .hero-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .curved-section {
        border-radius: clamp(15px, 6vw, 30px) clamp(15px, 6vw, 30px) 0 0;
        padding-top: clamp(2.5rem, 7vw, 4rem);
        padding-bottom: clamp(2.5rem, 7vw, 4rem);
        margin-top: clamp(1.5rem, 5vw, 3rem);
        margin-bottom: clamp(1.5rem, 5vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: clamp(1.5rem, 5vw, 3rem);
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    form {
        padding: clamp(1rem, 4vw, 1.5rem);
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: clamp(1rem, 4vw, 1.5rem);
        bottom: 10px;
    }
    
    .content-page h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .content-page h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-top: clamp(1.5rem, 4vw, 2rem);
    }
    
    .content-page h3 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    .content-page p,
    .content-page li {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.7;
    }
    
    .card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .card h3 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    .btn {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 clamp(10px, 3vw, 15px);
    }
    
    .logo {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    
    .menu-toggle {
        width: 28px;
        height: 28px;
    }
    
    nav a {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .hero {
        min-height: clamp(45vh, 60vh, 70vh);
        padding: clamp(1rem, 4vw, 1.5rem) 0;
    }
    
    .hero-content {
        padding: clamp(0.75rem, 3vw, 1rem);
    }
    
    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    }
    
    section {
        padding: clamp(2rem, 6vw, 4rem) 0;
        margin: clamp(0.75rem, 3vw, 1rem) 0;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        padding: 0 clamp(0.75rem, 3vw, 1rem);
    }
    
    .curved-section {
        padding-top: clamp(2rem, 5vw, 3rem);
        padding-bottom: clamp(2rem, 5vw, 3rem);
        border-radius: clamp(10px, 5vw, 20px) clamp(10px, 5vw, 20px) 0 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .map-container iframe {
        height: clamp(250px, 60vh, 300px);
    }
    
    .privacy-popup {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: clamp(1rem, 3vw, 1.25rem);
    }
    
    .privacy-popup h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    }
    
    .privacy-popup p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: clamp(0.75rem, 2.5vw, 0.875rem) clamp(1.25rem, 3.5vw, 1.5rem);
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .card {
        padding: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .card h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    }
    
    .card p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .content-page {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(10px, 3vw, 15px);
    }
    
    .content-page h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .content-page h2 {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }
    
    .content-page h3 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .content-page p,
    .content-page li {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    }
    
    .content-page ul,
    .content-page ol {
        margin-left: clamp(1rem, 3vw, 1.5rem);
    }
}

.parallax-section {
    position: relative;
    min-height: clamp(40vh, 60vh, 70vh);
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin: clamp(2rem, 5vw, 4rem) 0;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(244, 230, 231, 0.3));
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--dark-text);
}

.stats-section {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--gold-accent) 100%);
    color: var(--ivory);
    padding: 8rem 0;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--champagne-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    padding: 2.5rem 2.5rem 2rem;
    color: var(--ivory);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay::before {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--champagne-gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-overlay strong {
    color: var(--champagne-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--champagne-gold), var(--gold-accent));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 45%;
    padding: 2.5rem;
    background: var(--ivory);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 1px solid var(--soft-taupe);
    animation: slideIn 0.6s ease-out;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--champagne-gold);
    border-radius: 50%;
    top: 2rem;
    border: 4px solid var(--ivory);
    box-shadow: 0 0 0 3px var(--champagne-gold);
}

.timeline-item:nth-child(odd)::before {
    right: -35px;
}

.timeline-item:nth-child(even)::before {
    left: -35px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem 0;
}

.feature-showcase:nth-child(even) {
    direction: rtl;
}

.feature-showcase:nth-child(even) > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-soft);
    aspect-ratio: 4/3;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem 3rem;
    background: var(--blush-pink);
    border-radius: 30px;
    box-shadow: 0 15px 40px var(--shadow-soft);
}

.testimonial {
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.testimonial.active {
    display: block;
}

.testimonial-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--champagne-gold);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-quote::before {
    top: -20px;
    left: 0;
}

.testimonial-quote::after {
    bottom: -60px;
    right: 0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--champagne-gold);
    margin-top: 2rem;
}

.comparison-table {
    max-width: 1200px;
    margin: 4rem auto;
    overflow-x: auto;
    padding: 2rem 0;
}

.table-wrapper {
    background: var(--ivory);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--gold-accent) 100%);
}

.comparison-table th {
    color: var(--ivory);
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:first-child {
    text-align: left;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(244, 230, 231, 0.1) 100%);
    color: var(--champagne-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
    position: relative;
}

.comparison-table th:nth-child(2)::after,
.comparison-table th:nth-child(3)::after,
.comparison-table th:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ivory);
    opacity: 0.3;
}

.comparison-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(232, 220, 198, 0.3);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(244, 230, 231, 0.4) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.8rem 1.5rem;
    text-align: center;
    color: var(--dark-text);
    border-right: 1px solid rgba(232, 220, 198, 0.2);
    position: relative;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(244, 230, 231, 0.15) 0%, transparent 100%);
    color: var(--champagne-gold);
    font-size: 1.05rem;
    border-right: 2px solid rgba(212, 175, 55, 0.2);
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table td strong {
    display: block;
    color: var(--champagne-gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody td:not(:first-child) {
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(244, 230, 231, 0.05);
}

.comparison-table tbody tr:nth-child(even):hover {
    background: linear-gradient(90deg, rgba(244, 230, 231, 0.5) 0%, rgba(212, 175, 55, 0.15) 100%);
}

.icon-feature {
    text-align: center;
    padding: 2rem;
}

.icon-feature svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    fill: var(--champagne-gold);
    transition: transform 0.3s ease;
}

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

.animated-counter {
    display: inline-block;
    font-weight: 700;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--champagne-gold);
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.2;
    animation: floatLeaf 10s infinite ease-in-out;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

.image-masonry {
    column-count: 3;
    column-gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.masonry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--champagne-gold);
    z-index: 10;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item:hover img {
    transform: scale(1.12);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--ivory);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.masonry-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.masonry-item:hover .masonry-overlay::before {
    opacity: 1;
}

.masonry-overlay h4 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--champagne-gold);
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.masonry-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.masonry-overlay strong {
    color: var(--champagne-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

.corporate-events-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--blush-pink) 100%);
    border-radius: 50px;
    margin: 4rem auto;
    max-width: 1400px;
}

.corporate-events-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.corporate-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem auto 0;
    max-width: 1200px;
}

.corporate-card {
    background: var(--ivory);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 2px solid var(--soft-taupe);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.corporate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--gold-accent), var(--champagne-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.corporate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--champagne-gold);
}

.corporate-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 230, 231, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--champagne-gold);
    transition: all 0.4s ease;
}

.corporate-card:hover .corporate-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 230, 231, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.corporate-card-icon svg {
    width: 48px;
    height: 48px;
}

.corporate-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.corporate-card-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    margin: 0 auto 2rem;
    transition: width 0.4s ease;
}

.corporate-card:hover .corporate-card-line {
    width: 100px;
}

.corporate-card p {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.corporate-card p:last-of-type {
    margin-bottom: 2rem;
}

.corporate-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-taupe);
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 230, 231, 0.2) 100%);
    color: var(--champagne-gold);
    border: 1px solid var(--champagne-gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.corporate-card:hover .feature-tag {
    background: var(--champagne-gold);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .corporate-events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .corporate-card {
        padding: 2.5rem 2rem;
    }
}

.fotozone-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.fotozone-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.fotozone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(100%);
}

.fotozone-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.fotozone-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.fotozone-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    padding: 3rem 2.5rem 2.5rem;
    color: var(--ivory);
    backdrop-filter: blur(10px);
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

.slide-overlay h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--champagne-gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.slide-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-overlay strong {
    color: var(--champagne-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: var(--champagne-gold);
    border: 2px solid rgba(212, 175, 55, 0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.slider-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(212, 175, 55, 0.8);
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--champagne-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--champagne-gold);
    transform: scale(1.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch;
}

.package-card {
    background: var(--ivory);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 2px solid var(--soft-taupe);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--gold-accent), var(--champagne-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.package-card.featured {
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.package-card.featured::before {
    background: linear-gradient(90deg, var(--champagne-gold), var(--gold-accent), var(--champagne-gold));
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--champagne-gold);
}

.package-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 230, 231, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--champagne-gold);
    transition: all 0.4s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 230, 231, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.package-icon svg {
    width: 48px;
    height: 48px;
}

.package-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    margin: 0 auto 2rem;
    transition: width 0.4s ease;
}

.package-card:hover .package-divider {
    width: 100px;
}

.package-card p {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.package-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(232, 220, 198, 0.3);
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-custom-card {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--blush-pink) 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 2px solid var(--champagne-gold);
    text-align: center;
    transition: all 0.4s ease;
}

.package-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
}

.package-custom-card .package-icon {
    margin-bottom: 2rem;
}

.package-custom-card h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.package-custom-card .package-divider {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .fotozone-slider-wrapper {
        padding: 0 3rem;
    }
    
    .fotozone-slider {
        height: 450px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        border-width: 2px;
    }
    
    .slider-nav.prev {
        left: 1rem;
    }
    
    .slider-nav.next {
        right: 1rem;
    }
    
    .slide-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .parallax-section {
        background-attachment: scroll;
        min-height: clamp(40vh, 50vh, 60vh);
        padding: clamp(3rem, 8vw, 6rem) 0;
    }
    
    .parallax-content h2 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .parallax-content p {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
}

@media (max-width: 768px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }
    
    .feature-showcase:nth-child(even) {
        direction: ltr;
    }
    
    .feature-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
    
    .feature-content {
        padding: clamp(1rem, 3vw, 1.5rem);
    }
    
    .feature-content h3 {
        font-size: clamp(1.3rem, 4vw, 1.75rem);
    }
    
    .feature-content p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        left: 60px !important;
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .timeline-item::before {
        left: -35px !important;
    }
    
    .timeline-item h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    }
    
    .timeline-item p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .image-masonry {
        column-count: 2;
        column-gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .stat-item {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .stat-number {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .stat-label {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
    
    .testimonial-slider {
        padding: clamp(1rem, 3vw, 2rem);
    }
    
    .testimonial-item {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .testimonial-item p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .testimonial-item .author {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .form-section-wrapper {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .form-intro h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .form-intro p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .contact-form-enhanced {
        padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .form-group input,
    .form-group textarea {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .map-container-enhanced {
        height: auto;
    }
    
    .map-frame-wrapper {
        padding-bottom: 75%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .contact-item {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .location-section {
        border-radius: clamp(15px, 4vw, 25px);
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .map-wrapper {
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .map-info-enhanced {
        padding: clamp(1.5rem, 3vw, 2rem);
    }
    
    .contact-form-wrapper {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
        border-radius: clamp(15px, 3vw, 25px);
    }
    
    .form-section-wrapper {
        padding: clamp(1rem, 2.5vw, 1.5rem) 0;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hours-day,
    .hours-time {
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .package-card {
        padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .package-card h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }
    
    .package-card p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .parallax-section {
        min-height: clamp(40vh, 50vh, 60vh);
        padding: clamp(3rem, 8vw, 6rem) 0;
    }
    
    .parallax-content h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .parallax-content p {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
}

@media (max-width: 480px) {
    .image-masonry {
        column-count: 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .table-wrapper {
        border-radius: 15px;
        overflow-x: auto;
    }
    
    .comparison-table th {
        padding: 1.2rem 0.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .comparison-table th:first-child {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .comparison-table td {
        padding: 1.2rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .comparison-table td:first-child {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .comparison-table tbody tr:hover {
        transform: none;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    nav a {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    h2 {
        font-size: clamp(1.3rem, 7vw, 1.75rem);
    }
    
    h3 {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }
    
    p, li {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .hero {
        min-height: 40vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    section {
        padding: 1.5rem 0;
        margin: 0.75rem 0;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 7vw, 1.75rem);
        padding: 0 0.75rem;
    }
    
    .curved-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-radius: 10px 10px 0 0;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card h3 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
    }
    
    .card p {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .btn {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        padding: 0.625rem 1.25rem;
    }
    
    form {
        padding: 0.875rem;
    }
    
    .form-group label {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    
    .form-group input,
    .form-group textarea {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        padding: 0.625rem;
    }
    
    .timeline-item {
        padding: 1.25rem;
    }
    
    .timeline-item h3 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-item .stat-number {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }
    
    .content-page {
        padding: 1.5rem 10px;
    }
    
    .content-page h1 {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }
    
    .content-page h2 {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        margin-top: 1.25rem;
    }
    
    .content-page h3 {
        font-size: clamp(1.05rem, 5vw, 1.3rem);
    }
    
    .content-page p,
    .content-page li {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .content-page ul,
    .content-page ol {
        margin-left: 1.25rem;
    }
    
    .privacy-popup {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: 1rem;
    }
    
    .privacy-popup h3 {
        font-size: 1.1rem;
    }
    
    .privacy-popup p {
        font-size: 0.85rem;
    }
    
    .contact-hero {
        min-height: 40vh;
    }
    
    .contact-item {
        padding: 1.25rem 1rem;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .location-section {
        padding: 1.5rem 0;
        border-radius: 15px;
    }
    
    .location-header {
        margin-bottom: 1.5rem;
    }
    
    .map-wrapper {
        gap: 1.25rem;
    }
    
    .map-info-enhanced {
        padding: 1.25rem;
    }
    
    .info-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .info-header h3 {
        font-size: 1.3rem;
    }
    
    .hours-item {
        padding: 0.75rem 0;
    }
    
    .hours-day,
    .hours-time {
        font-size: 0.85rem;
    }
    
    .address-icon {
        width: 40px;
        height: 40px;
    }
    
    .address-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .address-details h4 {
        font-size: 1rem;
    }
    
    .address-details p {
        font-size: 0.85rem;
    }
    
    .map-address-card {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .contact-form-enhanced input,
    .contact-form-enhanced textarea {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-form-enhanced textarea {
        min-height: 120px;
    }
    
    .contact-form-enhanced .checkbox-group {
        padding: 1rem;
    }
    
    .contact-form-enhanced .checkbox-group label {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

