/* ============================================
   Blumen der Holländer – Premium Website v2
   ============================================ */

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

:root {
    --orange: #E07B2E;
    --orange-light: #F4A261;
    --orange-dark: #C96A1F;
    --orange-subtle: #FFF5ED;
    --cream: #FDF8F3;
    --beige: #F5EDE4;
    --beige-dark: #E8DDD1;
    --warm-gray: #8A7D72;
    --dark: #2C2420;
    --dark-soft: #3D352F;
    --text: #4A413A;
    --text-light: #7A7068;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 8px 32px rgba(44, 36, 32, 0.1);
    --shadow-xl: 0 16px 48px rgba(44, 36, 32, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--orange-dark); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* REDUCED section padding (feedback #6) */
.section {
    padding: 72px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 123, 46, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.header-logo { flex-shrink: 0; }
.logo-img { height: 48px; width: auto; border-radius: 50%; }

.header-nav { display: none; gap: 32px; }

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--orange); }

.header-actions { display: none; align-items: center; gap: 16px; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.header-phone:hover { color: var(--orange); }

/* Chat Agent Button in Header (hidden until activated) */
.header-chat-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-subtle);
    border: 1px solid var(--beige-dark);
    border-radius: 50%;
    color: var(--orange);
    cursor: pointer;
    transition: all var(--transition);
}
.header-chat-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}
.menu-toggle span {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-nav.active { opacity: 1; visibility: visible; }

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-nav-phone { font-size: 1.1rem; color: var(--text-light); margin-top: 8px; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,36,32,0.82) 0%, rgba(44,36,32,0.65) 50%, rgba(44,36,32,0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 24px 0 80px;
}

.hero-text { max-width: 680px; }

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(224,123,46,0.15);
    border-radius: 50px;
    border: 1px solid rgba(224,123,46,0.2);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 540px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.trust-item svg { flex-shrink: 0; stroke: var(--orange-light); }

/* --- Hero Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    animation: scrollFadeIn 1.5s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
    transition: border-color var(--transition);
}

.hero-scroll-indicator:hover .scroll-mouse {
    border-color: var(--orange-light);
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.hero-scroll-indicator:hover .scroll-wheel {
    background: var(--orange-light);
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.hero-scroll-indicator:hover .scroll-text {
    color: var(--orange-light);
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- Hero Petal Animation --- */
.hero-petals {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.petal {
    position: absolute;
    opacity: 0;
    animation: petalFall linear infinite;
}
.petal svg {
    width: 100%;
    height: 100%;
}
.petal-1 { width: 18px; left: 10%; color: rgba(244,162,97,0.25); animation-duration: 12s; animation-delay: 0s; }
.petal-2 { width: 14px; left: 25%; color: rgba(255,255,255,0.15); animation-duration: 15s; animation-delay: 2s; }
.petal-3 { width: 20px; left: 50%; color: rgba(244,162,97,0.2); animation-duration: 10s; animation-delay: 4s; }
.petal-4 { width: 12px; left: 70%; color: rgba(255,255,255,0.12); animation-duration: 14s; animation-delay: 1s; }
.petal-5 { width: 16px; left: 85%; color: rgba(244,162,97,0.18); animation-duration: 11s; animation-delay: 6s; }
.petal-6 { width: 10px; left: 40%; color: rgba(255,255,255,0.1); animation-duration: 16s; animation-delay: 3s; }
.petal-7 { width: 15px; left: 60%; color: rgba(244,162,97,0.15); animation-duration: 13s; animation-delay: 5s; }

@keyframes petalFall {
    0% { opacity: 0; transform: translateY(-10%) rotate(0deg) translateX(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(110vh) rotate(360deg) translateX(80px); }
}

/* --- Hero Logo Bloom --- */
.hero-logo-bloom {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 280px;
    height: 280px;
    display: none;
}

.bloom-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(244,162,97,0.15);
    animation: bloomPulse 4s ease-in-out infinite;
}
.bloom-ring-1 { animation-delay: 0s; }
.bloom-ring-2 { inset: -20px; animation-delay: 1.3s; border-color: rgba(255,255,255,0.08); }
.bloom-ring-3 { inset: -40px; animation-delay: 2.6s; border-color: rgba(244,162,97,0.08); }

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

.bloom-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    animation: bloomFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 32px rgba(224,123,46,0.3));
}

@keyframes bloomFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

/* --- About --- */
.section-about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-image { position: relative; }
.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}
.about-image-badge {
    position: absolute;
    bottom: -16px; right: 16px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}
.about-badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.about-badge-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin: 4px 0; }
.about-badge-text { font-size: 12px; color: var(--text-light); font-weight: 500; }

.about-text {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-subtle);
    border-radius: var(--radius-sm);
    color: var(--orange);
}
.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* --- Services --- */
.section-services { background: var(--white); }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224,123,46,0.1);
    background: var(--white);
}
.service-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    color: var(--orange);
}
.service-title { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }
.service-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* --- Gallery Carousel --- */
.section-gallery { background: var(--cream); }

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gallery-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    flex: 1;
}
.gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}
.gallery-track.grabbing { cursor: grabbing; }

.gallery-slide {
    flex: 0 0 calc(80% - 8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--beige);
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-slide:hover img {
    transform: scale(1.03);
}

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.6s ease;
}
.gallery-slide:hover .gallery-placeholder { transform: scale(1.03); }

.gallery-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}
.gallery-placeholder-content span {
    font-family: var(--font-serif);
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-arrow {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.gallery-arrow:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--beige-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.gallery-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

.gallery-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- Order --- */
.section-order { background: var(--white); }

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}
.order-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}
.order-benefits { display: flex; flex-direction: column; gap: 14px; }
.order-benefit {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem; color: var(--text);
}
.order-benefit svg { flex-shrink: 0; color: var(--orange); }

.order-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--beige-dark);
}
.form-title { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--dark); margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    font-family: var(--font-sans); font-size: 15px; color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--beige-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    appearance: none; -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7068' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224,123,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--beige-dark); }
.form-note { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 12px; }

/* --- Weddings --- */
.section-weddings { background: var(--cream); overflow: hidden; }

.wedding-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.wedding-text p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.wedding-services { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.wedding-service-tag {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.wedding-service-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-subtle);
}

/* Wedding Slideshow */
.wedding-visual { display: flex; flex-direction: column; align-items: center; }

.wedding-slideshow {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.wedding-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.wedding-slide.active { opacity: 1; }
.wedding-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.wedding-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
}
.wedding-placeholder-inner span {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #b08968;
}

.wedding-slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.wedding-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--beige-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.wedding-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* --- Reviews --- */
.section-reviews { background: var(--white); }

/* Google Reviews Badge */
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-top: 16px;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.google-reviews-badge:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
    transform: translateY(-1px);
}
.google-logo-wrap {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
}
.google-reviews-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.google-star { color: #FBBC05; font-size: 16px; }
.google-star-partial { opacity: 0.5; }
.google-reviews-stars strong {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--dark);
    margin-left: 6px;
}
.google-reviews-count {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}
.google-reviews-info { line-height: 1.3; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
    font-size: 0.95rem; color: var(--text);
    line-height: 1.7; margin-bottom: 18px;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange-subtle);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 16px;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.review-author span { font-size: 0.8rem; color: var(--text-light); }
.reviews-cta { text-align: center; margin-top: 32px; }

/* --- FAQ --- */
.section-faq { background: var(--cream); }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-item:first-child { border-top: 1px solid var(--beige); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 0;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem; font-weight: 600;
    color: var(--dark); text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); color: var(--text-light); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* --- Contact --- */
.section-contact { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--orange-subtle);
    border-radius: var(--radius-sm);
    color: var(--orange);
}
.contact-item strong { display: block; font-family: var(--font-serif); font-size: 1rem; color: var(--dark); margin-bottom: 2px; }
.contact-item p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--orange); }

.contact-hours {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.contact-hours h3 { font-size: 1.2rem; margin-bottom: 14px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
    display: flex; justify-content: space-between;
    font-size: 0.95rem; padding: 6px 0;
    border-bottom: 1px solid var(--beige);
}
.hours-row:last-child { border-bottom: none; }
.hours-closed span:last-child { color: var(--warm-gray); font-style: italic; }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-md);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; }

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 56px; width: auto; border-radius: 50%; margin-bottom: 14px; }
.footer-tagline { font-size: 0.95rem; line-height: 1.6; max-width: 280px; margin-bottom: 14px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-nav h4 {
    font-family: var(--font-sans);
    font-size: 14px; font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.footer-nav a, .footer-nav p {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
    transition: color var(--transition);
    line-height: 1.5;
}
.footer-nav a:hover { color: var(--orange-light); }

.footer-bottom {
    display: flex; flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; gap: 16px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* --- Back to top --- */
.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--text);
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 100;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* --- Modal --- */
.modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(44,36,32,0.6);
    backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.modal.active .modal-content { transform: scale(1); }
.modal-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: #E8F5E9;
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #4CAF50;
}
.modal-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.modal-content p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-slide { flex: 0 0 calc(50% - 8px); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid .review-card:last-child { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .hero-content { padding: 60px 0; }
}

@media (min-width: 960px) {
    .header-nav { display: flex; }
    .header-actions { display: flex; }
    .menu-toggle { display: none; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-slide { flex: 0 0 calc(33.333% - 11px); }
    .order-grid { grid-template-columns: 1fr 1.2fr; gap: 56px; }
    .order-info { padding-top: 16px; position: sticky; top: 100px; }
    .wedding-content { grid-template-columns: 1.2fr 0.8fr; gap: 56px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid .review-card:last-child { grid-column: span 1; }
    .order-form-wrap { padding: 40px 32px; }
    .section { padding: 88px 0; }
    .hero-logo-bloom { display: block; }
}

@media (min-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 3.8rem; }
    .hero-logo-bloom { width: 320px; height: 320px; }
    .bloom-logo { width: 140px; height: 140px; }
}

@media (min-width: 640px) {
    .hero-content { padding: 40px 0 90px; }
    .hero-subtitle { margin-bottom: 32px; }
    .hero-buttons { margin-bottom: 32px; gap: 16px; }
    .hero-trust { gap: 24px; }
}

@media (max-width: 400px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .order-form-wrap { padding: 24px 20px; }
    .hero-title { font-size: 2rem; margin-bottom: 14px; }
    .hero-scroll-indicator { bottom: 16px; }
    .scroll-mouse { width: 20px; height: 32px; }
    .scroll-text { font-size: 10px; }
}
