/* ============================================
   Party Looks Bandarawela — Stylesheet
   Soft Pastel Theme | Responsive | Animated
   ============================================ */

/* --- CSS Variables --- */
:root {
    --clr-bg: #fdf6f0;
    --clr-bg-alt: #fef9f5;
    --clr-white: #ffffff;
    --clr-text: #3d3028;
    --clr-text-light: #7a6b5d;
    --clr-text-muted: #a89888;

    /* Pastel Palette */
    --clr-rose: #f4c2c2;
    --clr-rose-deep: #e8a0a0;
    --clr-blush: #fce4ec;
    --clr-lavender: #e8d5f5;
    --clr-lavender-deep: #d0b3ea;
    --clr-mint: #d4edda;
    --clr-mint-deep: #a8d5b5;
    --clr-peach: #fdd9b5;
    --clr-peach-deep: #f5c08a;
    --clr-sky: #d6eaf8;
    --clr-sky-deep: #aed6f1;
    --clr-cream: #fff8e7;
    --clr-gold: #f5d98e;

    /* Primary Gradient */
    --grad-primary: linear-gradient(135deg, #f4c2c2 0%, #e8d5f5 50%, #d6eaf8 100%);
    --grad-warm: linear-gradient(135deg, #f4c2c2 0%, #fdd9b5 100%);
    --grad-cool: linear-gradient(135deg, #e8d5f5 0%, #d6eaf8 100%);
    --grad-accent: linear-gradient(135deg, #e8a0a0 0%, #d0b3ea 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(61, 48, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 48, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 48, 40, 0.12);
    --shadow-xl: 0 20px 60px rgba(61, 48, 40, 0.15);
    --shadow-glow: 0 0 30px rgba(244, 194, 194, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-pad: clamp(60px, 10vw, 120px);
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }
.preloader-ring {
    width: 50px; height: 50px;
    border: 3px solid var(--clr-rose);
    border-top-color: var(--clr-lavender-deep);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}
.preloader-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--clr-rose-deep);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Typography --- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-rose-deep);
    background: var(--clr-blush);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
    margin-bottom: 16px;
}
.text-gradient {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 160, 160, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(232, 160, 160, 0.5); }

.btn-secondary {
    background: var(--clr-white);
    color: var(--clr-text);
    border: 2px solid var(--clr-rose);
}
.btn-secondary:hover { background: var(--clr-blush); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--clr-rose-deep);
    border: 2px solid var(--clr-rose);
}
.btn-outline:hover { background: var(--clr-blush); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-white {
    background: #fff;
    color: var(--clr-rose-deep);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-call {
    background: var(--clr-sky);
    color: #2471a3;
}
.btn-call:hover { background: var(--clr-sky-deep); transform: translateY(-2px); }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}
/* Default: white text over hero */
#navbar .nav-link {
    color: rgba(255,255,255,0.85);
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
#navbar .nav-toggle span { background: #fff; }

/* Scrolled: solid background, dark text */
#navbar.scrolled {
    background: rgba(253, 246, 240, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
#navbar.scrolled .nav-link {
    color: var(--clr-text-light);
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--clr-rose-deep);
    background: var(--clr-blush);
}
#navbar.scrolled .nav-toggle span { background: var(--clr-text); }

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

.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s var(--ease-out);
}
/* Default: show white logo on dark hero */
.nav-logo-light { display: block; }
.nav-logo-dark { display: none; }

/* Scrolled: swap to dark logo on light bg */
#navbar.scrolled .nav-logo-light { display: none; }
#navbar.scrolled .nav-logo-dark { display: block; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-light);
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--clr-rose-deep); background: var(--clr-blush); }
.nav-cta {
    padding: 10px 22px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 8px;
    transition: all 0.35s var(--ease-out);
}
.nav-cta:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }
#navbar.scrolled .nav-cta {
    background: var(--grad-accent);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(232, 160, 160, 0.4);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg-wrap { position: absolute; inset: 0; }
.hero-bg {
    width: 100%; height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(30,15,10,0.45) 0%, transparent 30%),
        linear-gradient(135deg, rgba(53, 30, 20, 0.4) 0%, rgba(100, 60, 80, 0.3) 50%, rgba(40, 25, 45, 0.45) 100%);
}

.hero-particles {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(244,194,194,0.4), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(232,213,245,0.3), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,0.3), transparent),
        radial-gradient(3px 3px at 10% 80%, rgba(244,194,194,0.3), transparent),
        radial-gradient(3px 3px at 90% 40%, rgba(214,234,248,0.3), transparent);
    animation: particlesFloat 15s ease-in-out infinite;
}
@keyframes particlesFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 40px);
    max-width: 800px;
}
.hero-tag {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-rose);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}
.hero-line { display: block; }
.hero-accent {
    font-family: var(--font-script);
    color: var(--clr-rose);
    font-size: 1.15em;
}
.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
}
.stat-plus {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--clr-rose);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    position: relative;
}
.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* --- Services --- */
.services { background: var(--clr-bg-alt); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease-out);
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.service-card-wide .service-img-wrap { height: 100%; }
.service-card-wide .service-img-wrap img { height: 100%; }

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
}

.service-body { padding: 24px; }
.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--clr-text);
}
.service-body p {
    font-size: 0.92rem;
    color: var(--clr-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}
.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-rose-deep);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { color: var(--clr-lavender-deep); gap: 8px; }

/* --- Gallery --- */
.gallery { background: var(--clr-bg); }

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-light);
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s var(--ease-out);
}
.filter-btn:hover { background: var(--clr-blush); color: var(--clr-rose-deep); }
.filter-btn.active {
    background: var(--grad-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(232, 160, 160, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.4s var(--ease-out);
}
.gallery-item.hidden {
    display: none;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(53, 30, 20, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- Rentals --- */
.rentals { background: var(--clr-cream); }

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.rental-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
}
.rental-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.rental-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.rental-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.rental-card:hover .rental-img img { transform: scale(1.06); }
.rental-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--grad-accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.rental-info { padding: 20px; }
.rental-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.rental-info p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    margin-bottom: 12px;
}
.rental-tag {
    display: inline-block;
    background: var(--clr-blush);
    color: var(--clr-rose-deep);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.rentals-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* --- About --- */
.about { background: var(--clr-bg-alt); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--clr-bg-alt);
}
.about-img-accent img, .about-img-main img {
    width: 100%;
    height: auto;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--grad-accent);
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-lead {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 16px;
    font-weight: 500;
}
.about-content p {
    color: var(--clr-text-light);
    margin-bottom: 16px;
}
.about-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-blush);
    border-radius: 12px;
}
.about-feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}
.about-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Process --- */
.process { background: var(--clr-bg); }
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.process-step {
    flex: 0 1 280px;
    text-align: center;
    padding: 24px;
    position: relative;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-rose);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    max-width: 240px;
    margin: 0 auto;
}
.process-connector {
    flex: 0 0 60px;
    padding-top: 80px;
    color: var(--clr-rose);
    opacity: 0.4;
}
.process-connector svg { width: 60px; height: 20px; }

/* --- Testimonials --- */
.testimonials {
    background: var(--grad-primary);
    overflow: hidden;
}
.testimonials .section-tag { background: rgba(255,255,255,0.3); }
.testimonials .section-title { color: var(--clr-text); }

.testimonials-slider {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease-out);
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    min-width: 300px;
}
.testimonial-stars {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-rose);
    opacity: 0.4;
    transition: all 0.3s;
}
.testimonial-dots button.active {
    opacity: 1;
    transform: scale(1.3);
    background: var(--clr-rose-deep);
}

/* --- FAQ --- */
.faq { background: var(--clr-bg-alt); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-rose-deep);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--clr-rose-deep); }
.faq-answer {
    padding: 0 24px 20px;
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    animation: faqSlide 0.3s var(--ease-out);
}
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Areas --- */
.areas { background: var(--clr-bg); }
.areas-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.area-card {
    background: var(--clr-white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-primary {
    background: var(--grad-accent);
    color: #fff;
}
.area-primary strong { color: #fff; }
.area-icon { font-size: 1.2rem; }
.area-tag {
    background: rgba(255,255,255,0.3);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Contact --- */
.contact { background: var(--clr-bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-blush);
    border-radius: 12px;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9rem;
}
.contact-item a {
    color: var(--clr-rose-deep);
    font-weight: 500;
}
.contact-item a:hover { color: var(--clr-lavender-deep); }
.contact-item span { font-size: 0.9rem; color: var(--clr-text-light); }

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
    color: var(--clr-text-light);
}
.social-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-link.facebook:hover { background: #1877f2; color: #fff; }
.social-link.instagram:hover { background: #e4405f; color: #fff; }
.social-link.tiktok:hover { background: #000; color: #fff; }
.social-link.youtube:hover { background: #ff0000; color: #fff; }
.social-link.pinterest:hover { background: #bd081c; color: #fff; }

.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--clr-text);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-rose);
    background: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(244, 194, 194, 0.2);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-text-muted); }

.form-note {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 12px;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 20px;
}
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.form-success p { color: var(--clr-text-light); font-size: 0.95rem; }

/* --- CTA Banner --- */
.cta-banner {
    background: var(--grad-accent);
    text-align: center;
    padding: clamp(50px, 8vw, 80px) 0;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 12px;
}
.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: #2c1e16;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}
.footer-logo {
    display: inline-block;
}
.footer-logo img {
    height: 42px;
    width: auto;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.footer-links li,
.footer-contact li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--clr-rose); }
.footer-contact li { font-size: 0.9rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}
.footer-main-link a { color: var(--clr-rose); }
.footer-main-link a:hover { color: var(--clr-peach); }

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-out);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 96px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-white);
    color: var(--clr-rose-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s var(--ease-out);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-spring);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* --- Animations (scroll-reveal) --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-down"] { transform: translateY(-30px); }
[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-card-wide { grid-template-columns: 1fr; }
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--clr-bg);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s var(--ease-out);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu .nav-link { padding: 12px 16px; font-size: 1rem; color: var(--clr-text-light) !important; }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active { color: var(--clr-rose-deep) !important; background: var(--clr-blush) !important; }
    .nav-menu .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; color: #fff !important; background: var(--grad-accent) !important; border-color: transparent !important; }

    .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .rentals-grid { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content .section-title { text-align: center; }
    .about-content .section-tag { display: block; text-align: center; }
    .about-experience-badge { top: auto; bottom: -15px; left: 50%; transform: translateX(-50%); width: 90px; height: 90px; }
    .badge-num { font-size: 1.6rem; }
    .about-img-accent { right: 0; bottom: -20px; width: 50%; }

    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { display: none; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .whatsapp-tooltip { display: none; }
    .back-to-top { right: 80px; bottom: 16px; width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 30px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .contact-form-wrap { padding: 24px 20px; }
    .quick-actions { flex-direction: column; }
    .quick-actions .btn { width: 100%; justify-content: center; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    .rentals-cta { flex-direction: column; align-items: center; }
    .rentals-cta .btn { width: 100%; justify-content: center; }
}

/* --- Print --- */
@media print {
    .whatsapp-float, .back-to-top, #preloader, .hero-particles, .lightbox { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
    body { color: #000; background: #fff; }
}
