/* ═══════════════════════════════════════════════════════════════════════════
   Pink Petals Decor Ltd — Frontend Stylesheet
   Color Palette: Rose Pink + Warm Gold + Deep Navy + Cream
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Root ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --rose:          #c0396b;
    --rose-light:    #e8537f;
    --rose-dark:     #9c2454;
    --gold:          #c9a84c;
    --gold-light:    #e2c47a;
    --gold-dark:     #a8882e;
    --dark:          #1a1a2e;
    --dark-mid:      #2d2d4e;
    --cream:         #fdf6f0;
    --cream-dark:    #f5ebe0;
    --text:          #2c2c3a;
    --text-muted:    #7a7a8c;
    --white:         #ffffff;
    --shadow-sm:     0 2px 8px  rgba(26,26,46,.08);
    --shadow-md:     0 6px 24px rgba(26,26,46,.12);
    --shadow-lg:     0 16px 48px rgba(26,26,46,.18);
    --radius:        12px;
    --radius-lg:     20px;
    --radius-pill:   100px;
    --transition:    .3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }
h1 { font-size: clamp(2rem,  5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem,3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem,2vw, 1.6rem); }
p  { color: var(--text-muted); }

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

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 5rem 0; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: .75rem 0;
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rose);
}
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.logo-text span { color: var(--gold); }

/* Nav links */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
}
.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    padding: .3rem 0;
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--rose);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }

/* CTA nav button */
.nav-btn {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white) !important;
    padding: .55rem 1.3rem;
    border-radius: var(--radius-pill);
    font-size: .88rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192,57,107,.35);
}
.nav-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .3rem;
}
.hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ─────────────────────────────────────────
   HERO SLIDER
───────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
}

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

.slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active { opacity: 1; }

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 2rem;
}
.slide-tag {
    display: inline-block;
    background: rgba(201,168,76,.25);
    border: 1px solid rgba(201,168,76,.5);
    color: var(--gold-light);
    padding: .3rem 1rem;
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
    animation: slideUp .9s ease both;
}
.slide-text {
    font-size: clamp(1rem,2vw,1.3rem);
    margin-bottom: 2rem;
    opacity: .9;
    animation: slideUp .9s .15s ease both;
}
.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp .9s .3s ease both;
}

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

/* Slider controls */
.slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
}
.slider-btn:hover { background: var(--rose); border-color: var(--rose); }
.slider-btn.prev { left: 1.5rem; }
.slider-btn.next { right: 1.5rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: .5rem; z-index: 10;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: all var(--transition);
}
.dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--rose);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    padding: .75rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192,57,107,.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    padding: .75rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.7);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--rose);
    border-color: var(--white);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    padding: .75rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201,168,76,.4);
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--rose);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 30px; height: 1.5px;
    background: var(--rose);
    opacity: .5;
}
.section-title {
    color: var(--dark);
    margin-bottom: .75rem;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
.about-section { background: var(--cream); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rose);
    margin: 1.8rem 0 .5rem;
}
.about-text h3:first-child { margin-top: 0; }
.about-text p { line-height: 1.85; color: var(--text-muted); }

.features-list { list-style: none; margin-top: 1rem; display: grid; gap: .5rem; }
.features-list li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .95rem; color: var(--text);
}
.features-list li i { color: var(--rose); font-size: 1rem; flex-shrink: 0; }

.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-image::before {
    content: '';
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-image { width: 100%; height: 210px; object-fit: cover; display: block; }
.service-icon-wrap {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(192,57,107,.35);
}
.service-body { padding: 1.5rem; }
.service-body h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: .4rem; }
.service-body p  { font-size: .92rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   PACKAGES SECTION
───────────────────────────────────────── */
.packages-section { background: var(--cream); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.package-card.featured {
    border: 2px solid var(--rose);
}
.package-card.featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    padding: .35rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}
.package-card.featured .package-image { margin-top: 28px; }

.package-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: .3rem .9rem;
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 6;
}
.package-card.featured .package-badge { top: 2.8rem; }

.package-image { width: 100%; height: 220px; object-fit: cover; display: block; }

.package-content { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }

.package-type-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    padding: .25rem .9rem;
    border-radius: var(--radius-pill);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .75rem;
}

.package-content h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: .3rem; }

.package-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rose);
    margin-bottom: .4rem;
    font-family: 'Inter', sans-serif;
}

.package-guests {
    display: flex; align-items: center; gap: .5rem;
    color: var(--text-muted); font-size: .88rem;
    margin-bottom: .9rem;
}
.package-guests i { color: var(--gold); }

.package-description { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.7; }

.package-included {
    background: var(--cream);
    border-left: 4px solid var(--rose);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1rem 1rem 1.2rem;
    margin-bottom: 1rem;
}
.package-included h4 {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: .6rem;
    display: flex; align-items: center; gap: .4rem;
}
.package-included h4 i { color: var(--rose); }

.included-list { list-style: none; display: grid; gap: .3rem; }
.included-list li {
    font-size: .88rem;
    color: var(--text);
    display: flex; align-items: flex-start; gap: .5rem;
    line-height: 1.5;
}
.included-list li::before {
    content: '✓';
    color: var(--rose);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .1rem;
}
.included-list li.more-items {
    color: var(--rose);
    font-style: italic;
    font-weight: 600;
    margin-top: .3rem;
}
.included-list li.more-items::before { content: ''; }

.package-features { background: #f8f8fb; border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.package-features h4 {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: .5rem;
    display: flex; align-items: center; gap: .4rem;
}
.package-features h4 i { color: var(--gold); }
.package-features ul { list-style: none; display: grid; gap: .3rem; }
.package-features li {
    font-size: .88rem; color: var(--text);
    display: flex; align-items: center; gap: .5rem;
}
.package-features li i { color: var(--gold); font-size: .8rem; }

.btn-package {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    padding: .9rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .95rem;
    transition: transform var(--transition), box-shadow var(--transition);
    margin-top: auto;
    margin-bottom: .6rem;
    border: none;
    cursor: pointer;
}
.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192,57,107,.35);
    color: var(--white);
}
.btn-package-outline {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--rose);
    padding: .75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .88rem;
    border: 2px solid var(--rose);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-package-outline:hover {
    background: var(--rose);
    color: var(--white);
}

/* ─────────────────────────────────────────
   QUOTATION FORM
───────────────────────────────────────── */
.quotation-section { background: var(--dark); position: relative; overflow: hidden; }
.quotation-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quotation-section .section-tag { color: var(--gold-light); }
.quotation-section .section-tag::before,
.quotation-section .section-tag::after { background: var(--gold); }
.quotation-section .section-title { color: var(--white); }
.quotation-section .section-subtitle { color: rgba(255,255,255,.65); }

.quotation-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.quotation-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: .45rem;
}
.form-group label i { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: .85rem 1rem;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group select option { background: var(--dark-mid); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose);
    background: rgba(192,57,107,.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192,57,107,.4);
}

.form-message {
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
    display: none;
    font-size: .95rem;
}
.form-message.success { background: rgba(52,199,89,.15); color: #34c759; border: 1px solid rgba(52,199,89,.3); display: block; }
.form-message.error   { background: rgba(255,59,48,.15);  color: #ff6b6b; border: 1px solid rgba(255,59,48,.3);  display: block; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem; left: 1.5rem;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--rose);
    opacity: .12;
    line-height: 1;
}
.testimonial-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1rem;
}
.client-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--rose); }
.client-info h4 { font-size: 1rem; color: var(--dark); font-family: 'Playfair Display', serif; }
.rating { color: var(--gold); font-size: .85rem; margin-top: .15rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); line-height: 1.8; font-size: .95rem; }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: .55rem 1.4rem;
    border: 2px solid var(--rose);
    background: transparent;
    color: var(--rose);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    font-size: .88rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover { background: var(--rose); color: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,.85), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.2rem;
    color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1rem; margin-bottom: .15rem; }
.gallery-overlay p  { font-size: .8rem; opacity: .8; }

/* Gallery Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox-close:hover { background: var(--rose); }

/* ─────────────────────────────────────────
   MAP & CONTACT SECTIONS
───────────────────────────────────────── */
.map-section { padding: 0; }
.map-section .section-header { padding: 5rem 0 2rem; }
.map-container iframe { display: block; width: 100%; height: 420px; border: none; }

.contact-section { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card i { font-size: 1.8rem; color: var(--rose); margin-bottom: .75rem; display: block; }
.contact-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: .4rem; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--rose); }

.social-links { text-align: center; }
.social-links h3 { color: var(--dark); margin-bottom: 1rem; }
.social-icons { display: flex; justify-content: center; gap: .75rem; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--rose);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.social-icons a:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(192,57,107,.4); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    padding-top: 4rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col p { font-size: .9rem; line-height: 1.8; }
.footer-col ul { list-style: none; display: grid; gap: .5rem; }
.footer-col ul li a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
    display: flex; align-items: center; gap: .5rem;
}
.footer-col ul li a:hover { color: var(--rose); }
.footer-col ul li a i { width: 16px; color: var(--gold); }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.4);
}

/* ─────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
    box-shadow: 0 4px 16px rgba(192,57,107,.4);
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-3px); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right .35s ease;
        z-index: 999;
        gap: 0;
    }
    .nav-menu.open { right: 0; display: flex; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: .85rem 0; border-bottom: 1px solid var(--cream); font-size: 1rem; }
    .nav-btn  { margin-top: 1rem; text-align: center; }
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .about-content    { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image      { order: -1; }
    .about-image::before { display: none; }
    .form-row         { grid-template-columns: 1fr; }
    .packages-grid    { grid-template-columns: 1fr; }
    .footer-content   { grid-template-columns: 1fr; gap: 2rem; }
    .quotation-wrapper { padding: 2rem 1.25rem; }
}

@media (max-width: 480px) {
    section { padding: 3.5rem 0; }
    .slide-buttons { flex-direction: column; align-items: center; }
    .contact-grid  { grid-template-columns: 1fr 1fr; }
}
