/**
 * AJ Balloons — Global Stylesheet
 * Brand palette: pink-light #FDF2F8 | pink #FCE7F3 | medium #F472B6 | dark #DB2777
 */

/* ══════════════════════════════════════════
   BASE & TYPOGRAPHY
══════════════════════════════════════════ */

:root {
    --pink-light:  #FDF2F8;
    --pink:        #FCE7F3;
    --pink-medium: #F472B6;
    --pink-dark:   #DB2777;
    --pink-deeper: #BE185D;
    --shadow-pink: 0 8px 32px rgba(219, 39, 119, 0.18);
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */

header {
    transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
}

header.header-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

/* ══════════════════════════════════════════
   BUTTONS & CTAs
══════════════════════════════════════════ */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pink-dark) 0%, #c2185b 100%) !important;
    color: #fff !important;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(219, 39, 119, 0.45);
    background: linear-gradient(135deg, var(--pink-deeper) 0%, #a01550 100%) !important;
}

.cta-button:hover::after { opacity: 1; }
.cta-button:active { transform: translateY(-1px); }

.bg-brand-pink-dark { background-color: var(--pink-dark) !important; }
.text-white         { color: #ffffff !important; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */

.hero-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fce7f3 50%, #fdf0f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 40% 55% 55% 40% / 40% 40% 60% 60%;
    box-shadow: 0 30px 70px -15px rgba(219, 39, 119, 0.3), 0 10px 30px rgba(0,0,0,0.15);
    transition: all var(--transition);
    cursor: pointer;
    background: var(--pink-light);
}

.hero-image-container:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 0 40px 80px -15px rgba(219, 39, 119, 0.4), 0 15px 40px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover .hero-image { transform: scale(1.06); }

/* Floating balloons in hero */
.balloon-float {
    position: absolute;
    pointer-events: none;
    opacity: 0.7;
    animation: balloonFloat 6s ease-in-out infinite;
}
.balloon-float:nth-child(2) { animation-delay: -2s; animation-duration: 7s; }
.balloon-float:nth-child(3) { animation-delay: -4s; animation-duration: 5.5s; }

@keyframes balloonFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%       { transform: translateY(-18px) rotate(3deg); }
}

/* ══════════════════════════════════════════
   LOGO ANIMATION
══════════════════════════════════════════ */

@keyframes balloon-inflate-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.12); }
}

.logo-balloon {
    animation: balloon-inflate-pulse 3.5s ease-in-out infinite;
    transform-origin: center bottom;
}

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */

.service-card {
    background: var(--pink-light);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(219, 39, 119, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-dark), var(--pink-medium));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(219, 39, 119, 0.15), 0 5px 15px rgba(0,0,0,0.08);
    border-color: rgba(219, 39, 119, 0.2);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform var(--transition);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

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

/* ══════════════════════════════════════════
   ADVANTAGE CARDS
══════════════════════════════════════════ */

.advantage-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all var(--transition);
    border: 1px solid #f3f4f6;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(219, 39, 119, 0.1), 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgba(219, 39, 119, 0.15);
}

.advantage-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-medium));
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   STATS / COUNTERS SECTION
══════════════════════════════════════════ */

.stats-section {
    background: linear-gradient(135deg, var(--pink-dark) 0%, #c2185b 50%, #9c1649 100%);
    position: relative;
    overflow: hidden;
}

.stats-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%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */

.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all var(--transition);
    background-color: #f9fafb;
    display: block;
}

.gallery-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-image-container:hover .gallery-image { transform: scale(1.08); }

.gallery-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(219, 39, 119, 0.75) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
}

.gallery-image-container:hover .gallery-image-overlay { opacity: 1; }

.gallery-image-overlay h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-image-standard {
    aspect-ratio: 1 / 1;
    min-height: 280px;
}

@media (min-width: 640px)  { .gallery-image-standard { min-height: 320px; } }
@media (min-width: 1024px) { .gallery-image-standard { min-height: 360px; } }

/* Swiper gallery */
.swiper-slide .gallery-image-container { height: 100%; }
.swiper-slide .gallery-image           { height: 320px; }
@media (min-width: 768px)  { .swiper-slide .gallery-image { height: 380px; } }
@media (min-width: 1024px) { .swiper-slide .gallery-image { height: 440px; } }

.grid-gallery .gallery-image-container { height: 100%; }
.grid-gallery .gallery-image           { height: 300px; }
@media (min-width: 640px)  { .grid-gallery .gallery-image { height: 340px; } }
@media (min-width: 1024px) { .grid-gallery .gallery-image { height: 380px; } }

/* ══════════════════════════════════════════
   SWIPER NAVIGATION
══════════════════════════════════════════ */

.swiper-button-next,
.swiper-button-prev {
    background: rgba(219, 39, 119, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 48px !important;
    height: 48px !important;
    color: white !important;
    opacity: 0.7;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 2px 12px rgba(219, 39, 119, 0.25);
    animation: navBtnPeek 3s ease-in-out infinite;
}

.swiper-button-prev { animation-delay: -1.5s; }

@keyframes navBtnPeek {
    0%, 100% { opacity: 0.7;  transform: translateX(0); }
    50%       { opacity: 0.9;  transform: translateX(0) scale(1.04); }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    background: rgba(219, 39, 119, 0.85);
    transform: scale(1.14) !important;
    box-shadow: 0 6px 22px rgba(219, 39, 119, 0.5);
    animation: none;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
    animation: none;
}

.swiper-pagination { bottom: 0.5rem !important; }

.swiper-pagination-bullet {
    background: rgba(219, 39, 119, 0.4);
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--pink-dark);
    width: 24px;
    border-radius: 5px;
}

.gallery-swiper { padding-bottom: 2.5rem !important; }
.gallery-swiper .swiper-slide { height: auto; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */

.testimonial-card {
    background: var(--pink-light);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(219, 39, 119, 0.1);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--pink-dark);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(219, 39, 119, 0.12), 0 5px 15px rgba(0,0,0,0.06);
}

.stars { color: var(--pink-dark); font-size: 1.1rem; letter-spacing: 2px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */

.faq-item {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: rgba(219, 39, 119, 0.2);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.08);
}

.faq-item[open] {
    border-color: rgba(219, 39, 119, 0.3);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.1);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--pink-dark);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    border-top: 1px solid rgba(219, 39, 119, 0.08);
}

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */

.contact-section {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.form-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(219, 39, 119, 0.12), 0 10px 30px rgba(0,0,0,0.08);
}

@media (min-width: 768px) { .form-card { padding: 3rem; } }

.form-input {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fafafa;
    color: #111827;
}

.form-input:focus {
    outline: none;
    border-color: var(--pink-dark);
    box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.12);
    background: #fff;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

/* ══════════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════════ */

.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.section-heading .accent {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-dark), var(--pink-medium));
    border-radius: 2px;
    margin: 1rem auto;
}

/* ══════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════════════ */

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    left: 1.25rem;
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-medium));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(12px);
    z-index: 1000;
    border: none;
    cursor: pointer;
}

.scroll-to-top:hover { transform: translateY(0) scale(1.1); }
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */

/* Hide FAB & scroll-to-top when any modal is open */
body.modal-active .whatsapp-fab,
body.modal-active .scroll-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.85) translateY(10px) !important;
}

.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    animation: wabFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
    will-change: transform, opacity;
}

@keyframes wabFadeIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-fab__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    text-decoration: none;
    animation: wabPulse 3.5s ease-in-out 1.5s infinite;
    will-change: transform;
}

.whatsapp-fab__btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.15);
    animation: none;
}

.whatsapp-fab__btn svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

@keyframes wabPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.12); }
    30%       { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.15); }
    60%       { transform: scale(1);   box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.12); }
}

.whatsapp-fab__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1f2937;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    white-space: nowrap;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 9500;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f3f4f6;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.cookie-banner--visible {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        padding: 1rem 2rem;
    }
}

.cookie-banner__text {
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-banner__text a {
    color: #f9a8d4;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-banner__accept {
    background: linear-gradient(135deg, var(--pink-dark), #c2185b);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.cookie-banner__accept:hover { opacity: 0.88; }

.cookie-banner__decline {
    background: rgba(255,255,255,0.1);
    color: #d1d5db;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-banner__decline:hover { background: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════════
   FADE-IN ANIMATION
══════════════════════════════════════════ */

.fade-in-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* Staggered children */
.fade-in-section.is-visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-section.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.fade-in-section.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.fade-in-section.is-visible > *:nth-child(4) { transition-delay: 0.24s; }

/* ══════════════════════════════════════════
   SERVICE PAGE HERO
══════════════════════════════════════════ */

.page-hero {
    background: linear-gradient(135deg, var(--pink-light) 0%, #fce7f3 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-pink::after { background: #f9fafb; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.footer-link {
    color: #94a3b8;
    transition: color var(--transition);
}

.footer-link:hover { color: #f9a8d4; }

/* ══════════════════════════════════════════
   LIGHTBOX TRIGGER RESET
══════════════════════════════════════════ */

.glightbox-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: block;
}

.gallery-image-container:focus,
.glightbox-trigger:focus {
    outline: 2px solid var(--pink-dark);
    outline-offset: 4px;
}

/* ══════════════════════════════════════════
   LOADING IMAGE ANIMATION
══════════════════════════════════════════ */

@keyframes imageFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.gallery-image,
.hero-image { animation: imageFadeIn 0.5s ease-out; }

/* ══════════════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════════════ */

.reviews-swiper {
    padding-bottom: 3rem !important;
    overflow: visible !important;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviews-swiper .testimonial-card {
    width: 100%;
}

/* Reviews swiper navigation */
.reviews-prev,
.reviews-next {
    background: rgba(219, 39, 119, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    color: white !important;
    opacity: 0.7;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 2px 12px rgba(219, 39, 119, 0.22);
    animation: navBtnPeek 3s ease-in-out infinite;
}

.reviews-prev { animation-delay: -1.5s; }

.reviews-prev:hover, .reviews-next:hover {
    opacity: 1;
    background: rgba(219, 39, 119, 0.85);
    transform: scale(1.12) !important;
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.5);
    animation: none;
}

.reviews-prev::after, .reviews-next::after {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.reviews-pagination {
    bottom: 0.5rem !important;
}

/* ══════════════════════════════════════════
   REVIEW MODALS  (mobile-first)
══════════════════════════════════════════ */

#review-modal,
#review-detail-modal {
    /* Backdrop fade */
    animation: modalFadeIn 0.2s ease-out;
}

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

/* Mobile: slide up from bottom as a sheet */
#review-modal .modal-panel,
#review-detail-modal .modal-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 92dvh;     /* dynamic viewport height — respects mobile chrome */
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 1.25rem 1.25rem 0 0;
    animation: sheetSlideUp 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    -webkit-overflow-scrolling: touch;
}

@keyframes sheetSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* Desktop (≥640px): centered dialog */
@media (min-width: 640px) {
    #review-modal .modal-panel,
    #review-detail-modal .modal-panel {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: 36rem;
        max-height: 90dvh;
        max-height: 90vh;
        border-radius: 1.25rem;
        animation: modalSlideIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

@keyframes modalSlideIn {
    from { transform: translateY(20px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* On mobile the flex container should align to end, on desktop center */
#review-modal,
#review-detail-modal {
    align-items: flex-end;
}

@media (min-width: 640px) {
    #review-modal,
    #review-detail-modal {
        align-items: center;
    }
}

/* Star picker */
#star-picker .star-btn {
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
    background: none;
    border: none;
    padding: 0 2px;
    line-height: 1;
    /* Larger touch target on mobile */
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#star-picker .star-btn:hover {
    transform: scale(1.2);
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */

.gradient-text {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink-shadow { box-shadow: var(--shadow-pink); }

.animate-spin {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
