/* ===== Light Pink & Gold Theme - Glamorous Desire ===== */
:root {
    /* Primary Colors - Light Pink */
    --primary-pink: #fce7f3;
    --primary-pink-light: #fdf2f8;
    --primary-pink-dark: #fbcfe8;
    --primary-pink-darker: #f9a8d4;

    /* Accent Colors - Bright Gold */
    --accent-gold: #ffd700;
    --accent-gold-light: #ffed4e;
    --accent-gold-bright: #ffe066;
    --accent-rose-gold: #daa520;
    --accent-golden: #e8c547;

    /* Secondary Pinks */
    --pink-soft: #fce7f3;
    --pink-medium: #fbcfe8;
    --pink-bright: #f9a8d4;
    --pink-deep: #ec4899;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-cream: #fafafa;
    --bg-pink: #fdf2f8;
    --bg-pink-light: #fce7f3;
    --bg-gold: #fffbeb;

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #8a8a8a;
    --text-light: #a3a3a3;
    --text-dark: #2a2a2a;

    /* Borders */
    --border-light: #f5f5f5;
    --border-pink: #fce7f3;
    --border-gold: #ffd700;
    --border-gray: #e5e5e5;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-pink: 0 4px 20px rgba(251, 207, 232, 0.25);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-gold-lg: 0 8px 30px rgba(255, 215, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.4);

    /* Typography - Lexend Normal */
    --font-heading: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: var(--primary-pink);
    color: var(--text-primary);
    border: 2px solid var(--border-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink-dark);
    border-color: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-waitlist {
    background: var(--pink-bright);
    color: var(--text-primary);
    box-shadow: var(--shadow-pink);
}

.btn-waitlist:hover {
    background: var(--pink-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    margin-top: var(--space-2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--space-5) var(--space-12);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-pink);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-6);
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--accent-gold);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: var(--space-2);
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* ===== Hero Section with Slider ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) 0 var(--space-16);
    background: var(--bg-white);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform var(--transition-base);
}

.slider-item {
    flex: 0 0 25%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slider-item:not(.active)::before {
    opacity: 0.3;
}

.slider-item.active::before {
    opacity: 1;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 242, 248, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--bg-pink);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
}

.hero-title {
    margin-bottom: var(--space-4);
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-10);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: var(--space-16);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: var(--space-4);
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--accent-gold);
    font-size: 1.25rem;
    z-index: 4;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-pink);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot:hover,
.dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.2);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4) var(--space-6);
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border-top: 1px solid var(--border-pink);
}

/* ===== About Section ===== */
.about {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-content {
    padding: var(--space-4);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-card {
    background: var(--bg-pink-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-card-image {
    height: 400px;
    background-size: cover;
    background-position: top center;
}

.about-card-content {
    padding: var(--space-6);
}

.about-card-content h4 {
    margin-bottom: var(--space-3);
    color: var(--accent-gold);
}

/* ===== Services Section ===== */
.services {
    padding: var(--space-20) 0;
    background: var(--bg-pink-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--bg-pink);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-pink);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--accent-gold);
}

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

.service-card.service-pending {
    opacity: 0.7;
}

.service-card.service-pending:hover {
    opacity: 0.9;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--bg-pink);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.05);
}

.service-card.service-pending .service-icon {
    background: var(--border-gray);
}

.service-title {
    margin-bottom: var(--space-3);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: var(--space-5);
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--space-6);
}

.service-action {
    margin-top: var(--space-4);
}

/* ===== Why Choose Us Section ===== */
.why-us {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-pink-light);
    border: 1px solid var(--border-pink);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-gold);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--accent-gold);
    color: white;
}

.feature-card h3 {
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-pink);
    color: var(--text-secondary);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--text-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.portfolio-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--border-pink);
}

.portfolio-item-wide {
    grid-column: span 2;
}

.portfolio-item-tall {
    grid-row: span 2;
}

.portfolio-image {
    height: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-pink);
}

.portfolio-item-tall .portfolio-image {
    height: 660px;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--accent-gold);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity var(--transition-base);
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-tag {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== Reviews Section ===== */
.reviews {
    padding: var(--space-20) 0;
    background: var(--bg-pink-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: var(--space-12);
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-pink);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.rating-score {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: var(--space-2);
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: 1rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--bg-white);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Booking Section ===== */
.booking {
    padding: var(--space-20) 0;
    background: var(--bg-white);
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-pink-light);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-pink);
}

.booking-title {
    text-align: center;
    margin-bottom: var(--space-3);
}

.booking-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--space-10);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 400;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

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

/* ===== Waitlist Section ===== */
.waitlist {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 50%, var(--bg-gold) 100%);
}

.waitlist-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-12);
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-gold);
}

.waitlist-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    background: var(--bg-pink);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-gold);
}

.waitlist-title {
    margin-bottom: var(--space-3);
}

.waitlist-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.waitlist-form {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: var(--space-4) var(--space-5);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.waitlist-form button {
    background: var(--accent-gold);
    color: var(--text-primary);
    border: 1px solid var(--accent-gold);
}

.waitlist-form button:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-md);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-20) 0;
    background: var(--bg-pink-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-info {
    padding: var(--space-4);
}

.contact-title {
    font-size: 2rem;
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    gap: var(--space-4);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: var(--space-1);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-item p {
    margin-bottom: 0;
    line-height: 1.5;
}

.hours-note {
    color: var(--pink-bright);
    font-size: 0.9rem;
    margin-top: var(--space-1);
}

.contact-map {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-4);
}

.map-placeholder p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.map-placeholder .btn {
    margin-top: var(--space-4);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-cream);
    color: var(--text-primary);
    padding: var(--space-16) 0 var(--space-10);
}

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

.footer-logo {
    margin-bottom: var(--space-6);
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border: 1px solid var(--border-pink);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    text-align: left;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-pink);
    transition: all var(--transition-fast);
}

.hour-row:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.hour-row strong {
    color: var(--text-primary);
}

.hour-row span {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-pink);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-item-wide,
    .portfolio-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-item-tall .portfolio-image {
        height: 320px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--space-20) var(--space-6);
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 999;
        gap: var(--space-6);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

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

    .services-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .booking-card,
    .waitlist-card,
    .trust-badges {
        padding: var(--space-8);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-full {
        display: flex;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .waitlist-form,
    .form-row {
        flex-direction: column;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

    .slider-controls {
        bottom: var(--space-6);
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: var(--space-6);
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .service-card,
    .feature-card,
    .review-card {
        padding: var(--space-6);
    }

    .nav-logo .logo-image {
        height: 50px;
    }

    .about-features,
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: var(--space-6);
    }

    .contact-details {
        gap: var(--space-4);
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: var(--space-2);
    }

    .map-placeholder {
        min-height: 300px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== Animation Utilities ===== */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

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

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