/* ============================================
   Event Ease Party Rentals - Brand Colors
   ============================================ */

:root {
    /* Event Ease brand: deep red + medium-dark blue (logo-matched) */
    --color-black: #1a1a2e;
    --color-red: #b91c3c;
    --color-red-light: #dc2626;
    --color-red-dark: #991b1b;
    --color-blue: #1e40af;
    --color-blue-light: #2563eb;
    --color-blue-dark: #1e3a8a;
    --color-fuchsia: #b91c3c;
    --color-purple: #1e40af;
    --color-purple-light: #2563eb;
    --color-gold: #b91c3c;
    --color-gold-light: #dc2626;
    --color-pink: #b91c3c;
    --color-pink-light: #dc2626;
    --color-teal: #1e40af;
    --color-lime: #1e40af;
    --color-coral: #b91c3c;
    --color-white: #ffffff;
    --color-cream: #fef9f9;
    --color-off-white: #fef2f2;
    --color-gray: #6b7280;
    --color-gray-light: #e5e7eb;
    --font-heading: 'Fredoka', 'Comic Sans MS', sans-serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(185, 28, 60, 0.25);
    --brand-gradient: linear-gradient(135deg, #b91c3c 0%, #1e40af 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-cream);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(185, 28, 60, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.04) 0%, transparent 40%);
}

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

/* Confetti decorative dots - more party-like */
.confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.confetti-container::before,
.confetti-container::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-pink);
    animation: float 6s ease-in-out infinite;
}

.confetti-container::before {
    top: 15%;
    left: 10%;
    background: var(--color-gold);
    animation-delay: -1s;
}

.confetti-container::after {
    top: 25%;
    right: 15%;
    background: var(--color-teal);
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, -30px) scale(1.2); opacity: 1; }
}

/* Extra confetti dots - very subtle */
.confetti-container {
    background-image: 
        radial-gradient(circle at 5% 95%, rgba(124, 58, 237, 0.06) 4px, transparent 4px),
        radial-gradient(circle at 95% 5%, rgba(30, 58, 95, 0.05) 4px, transparent 4px),
        radial-gradient(circle at 50% 10%, rgba(180, 83, 9, 0.05) 4px, transparent 4px);
    background-size: 120px 120px, 100px 100px, 80px 80px;
}

/* Sticky header wrapper (top bar + nav) */
.header-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--color-black) 0%, #2d2d44 100%);
    color: var(--color-red-light);
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-phone {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    transition: transform var(--transition);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.top-bar-phone:hover {
    transform: scale(1.05);
}

.top-bar-location {
    font-size: 0.85rem;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Header & Navigation */
.main-header {
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(185, 28, 60, 0.08);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #b91c3c, #1e40af) 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: transparent;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    background: transparent !important;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--color-black);
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-red);
    background: rgba(185, 28, 60, 0.1);
    transform: translateY(-2px);
}

.btn-book-cta {
    background: var(--brand-gradient) !important;
    color: var(--color-white) !important;
    font-weight: 700;
    white-space: nowrap;
    padding: 12px 20px !important;
}

.btn-book-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(185, 28, 60, 0.35);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
    border-radius: 16px;
    min-width: 220px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    border: 2px solid var(--color-gray-light);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--color-black);
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(185, 28, 60, 0.1), rgba(30, 64, 175, 0.08));
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--color-pink);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 1100px) {
    .mobile-menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, var(--color-white), var(--color-off-white));
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 30px rgba(168, 85, 247, 0.2);
        transition: right var(--transition);
        overflow-y: auto;
    }

    .main-nav.active { right: 0; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 8px 0;
        margin-top: 8px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0 100px;
    background: linear-gradient(160deg, #1a1a2e 0%, #1e293b 35%, #1e3a5f 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(185, 28, 60, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0.5;
}

.hero-balloons {
    position: absolute;
    top: 24px;
    right: 6%;
    font-size: 1.8rem;
    opacity: 0.4;
    animation: balloonFloat 5s ease-in-out infinite;
}

.hero-balloons-left {
    right: auto;
    left: 6%;
    animation-delay: -2.5s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-red-light);
    margin-bottom: 20px;
    padding: 8px 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(185, 28, 60, 0.2);
    border: 1px solid rgba(185, 28, 60, 0.4);
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6.5vw, 4.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
    .hero {
        min-height: 520px;
        padding: 60px 0 80px;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
        padding: 6px 16px;
    }
    
    .hero-balloons {
        font-size: 1.4rem;
        opacity: 0.3;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(185, 28, 60, 0.4);
}

.btn-glow {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(185, 28, 60, 0.3); }
    50% { box-shadow: 0 0 30px rgba(185, 28, 60, 0.45); }
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-red);
}

.btn-secondary:hover {
    background: var(--brand-gradient);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 60, 0.25);
}

/* Section Styles */
.section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-black);
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Event Types - Party First! */
.event-types {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
    position: relative;
}

.event-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gradient);
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.event-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height var(--transition);
}

.event-card-wedding::before { background: linear-gradient(90deg, var(--color-red), var(--color-blue)); }
.event-card-birthday::before { background: linear-gradient(90deg, var(--color-red), var(--color-red-light)); }
.event-card-events::before { background: linear-gradient(90deg, var(--color-blue), var(--color-blue-light)); }

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-card:hover::before { height: 8px; }

.event-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-wedding .event-card-badge { background: rgba(236, 72, 153, 0.25); color: var(--color-pink); }
.event-card-birthday .event-card-badge { background: rgba(245, 158, 11, 0.3); color: var(--color-gold); }
.event-card-events .event-card-badge { background: rgba(20, 184, 166, 0.25); color: var(--color-teal); }

.event-card-icon {
    font-size: 4rem;
    margin: 24px 0 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.event-card p {
    color: var(--color-gray);
    margin-bottom: 24px;
    font-size: 1rem;
}

/* Rental Catalogue */
.rental-catalogue {
    background: var(--color-white);
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 24px;
}

.rental-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: var(--color-cream);
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-black);
    transition: all var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.rental-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-red);
}

.rental-icon {
    font-size: 2.75rem;
    margin-bottom: 12px;
}

.rental-icon .icon-svg { width: 2.75rem; height: 2rem; display: block; margin: 0 auto; }
.event-card-icon .icon-svg { width: 4rem; height: 3rem; display: block; margin: 0 auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.product-card-image .icon-svg { width: 3rem; height: 2.25rem; display: block; margin: 0 auto; }
.page-hero-title .icon-svg.hero-icon { width: 1.2em; height: auto; vertical-align: middle; margin-right: 0.25em; display: inline-block; }

.rental-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.rental-badge {
    position: absolute;
    bottom: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-pink);
}

.rental-price {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-top: 4px;
}

.inventory-avail {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 4px;
    font-weight: 500;
}

/* Party Vibes / Why Us */
.party-vibes {
    background: var(--brand-gradient);
    color: var(--color-white);
}

.party-vibes .section-title {
    color: var(--color-white) !important;
}

.party-vibes .section-intro {
    color: rgba(255,255,255,0.9);
}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.vibe-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

.vibe-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-6px);
}

.vibe-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.vibe-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.vibe-card p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Past Events Gallery */
.past-events-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Gallery carousel */
.gallery-carousel-wrap {
    position: relative;
    margin-bottom: 32px;
}
.gallery-carousel-wrap .gallery-view-more {
    display: inline-block;
    margin-top: 16px;
}
.gallery-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}
.gallery-carousel::-webkit-scrollbar {
    height: 6px;
}
.gallery-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 3px;
}
.gallery-carousel::-webkit-scrollbar-thumb {
    background: var(--color-gray);
    border-radius: 3px;
}
.gallery-carousel-track {
    display: flex;
    gap: 24px;
    padding: 4px 0;
}
.gallery-carousel .gallery-item {
    flex: 0 0 min(300px, calc(33.333% - 16px));
    min-width: 260px;
    scroll-snap-align: start;
}
.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-red);
    z-index: 2;
    transition: all var(--transition);
}
.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}
.gallery-carousel-prev {
    left: -12px;
}
.gallery-carousel-next {
    right: -12px;
}
@media (max-width: 768px) {
    .gallery-carousel-prev,
    .gallery-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
        left: -8px;
    }
    .gallery-carousel-next {
        right: -8px;
    }
    .gallery-carousel .gallery-item {
        min-width: 220px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-clickable {
    cursor: pointer;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

.gallery-grid-compact .gallery-item {
    aspect-ratio: 4/3;
}

.gallery-grid-full {
    margin-bottom: 24px;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    cursor: pointer;
}
.gallery-lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    z-index: 1;
}
.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.35);
}

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

.reviews-carousel-wrap {
    position: relative;
    margin-bottom: 40px;
}

.reviews-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}

.reviews-carousel::-webkit-scrollbar {
    height: 6px;
}

.reviews-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 3px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: var(--color-gray);
    border-radius: 3px;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    padding: 4px 0;
}

.reviews-carousel .review-card {
    flex: 0 0 min(360px, calc(100% - 48px));
    min-width: 300px;
    scroll-snap-align: start;
}

.reviews-carousel-prev,
.reviews-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-red);
    z-index: 2;
    transition: all var(--transition);
}

.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}

.reviews-carousel-prev {
    left: -12px;
}

.reviews-carousel-next {
    right: -12px;
}

@media (max-width: 768px) {
    .reviews-carousel-prev,
    .reviews-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
        left: -8px;
    }
    .reviews-carousel-next {
        right: -8px;
    }
    .reviews-carousel .review-card {
        min-width: 280px;
    }
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    font-style: normal;
    margin-bottom: 16px;
}

.review-see-more {
    background: none;
    border: none;
    color: var(--color-red);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0 4px;
    text-decoration: underline;
    font-family: inherit;
}

.review-see-more:hover {
    color: var(--color-blue);
}

.review-author {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: normal;
}

.review-time {
    font-size: 0.85em;
    color: var(--color-gray);
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn {
    margin-bottom: 12px;
}

.reviews-note {
    font-size: 0.9rem;
    color: var(--color-gray);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.contact-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--color-pink);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--color-purple);
}

.phone-link {
    font-size: 1.1rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
.contact-social-link {
    color: var(--color-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color var(--transition);
}
.contact-social-link:hover {
    color: var(--color-purple);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
.contact-form-wrap {
    background: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}
.contact-form .required {
    color: var(--color-red);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-submit {
    margin-top: 8px;
    padding: 14px 32px;
    font-size: 1rem;
}
.form-success-msg {
    background: #d1fae5;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--color-black) 0%, #2d2d44 50%, #1e3a5f 100%);
    color: var(--color-white);
    padding: 56px 32px 32px;
    position: relative;
    overflow: hidden;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-confetti {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 25%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-white);
}

.footer-tagline {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-location {
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer-col .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .footer-links li {
    margin-bottom: 10px;
}

.footer-col .footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col .footer-links a:hover {
    color: var(--color-red-light);
}

.footer-phone a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
}

.footer-phone a:hover {
    color: var(--color-red-light);
}

.footer-book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    color: var(--color-white) !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s;
}

.footer-book-btn:hover {
    background: rgba(255,255,255,0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--color-white);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: var(--color-red);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payment-badge-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

.footer-payment-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    opacity: 0.9;
}

@media (max-width: 560px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payments {
        justify-content: center;
    }
    
    .footer-social-col .footer-social {
        justify-content: center;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
    border: 3px solid var(--color-pink);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-gray-light);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--color-pink);
    color: var(--color-white);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-description {
    color: var(--color-gray);
    margin-bottom: 24px;
}

.modal-placeholder {
    background: var(--color-off-white);
    padding: 24px;
    border-radius: 16px;
    border: 2px dashed var(--color-pink);
}

.modal-placeholder ul {
    margin-top: 12px;
    padding-left: 24px;
    color: var(--color-gray);
}

/* Page Hero (internal pages) */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-black) 0%, #2d2d44 50%, #1e3a5f 100%);
    overflow: hidden;
}

.page-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-red-light);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span:last-child {
    color: var(--color-white);
    opacity: 0.9;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.page-hero-faq {
    position: relative;
}

.page-hero-watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
    user-select: none;
}

/* FAQ Accordion */
.faq-section {
    padding-top: 48px;
    padding-bottom: 64px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--color-black);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 12px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.2s;
}

.faq-question:hover .faq-icon {
    opacity: 0.8;
}

.faq-item.open .faq-icon {
    transform: rotate(-135deg);
    opacity: 0.8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    line-height: 1.7;
    color: var(--color-gray);
}

.faq-answer a {
    color: var(--color-red);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Product Grid (rental category pages) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-pink);
}

.product-card-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(185, 28, 60, 0.06), rgba(30, 64, 175, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-card-body {
    padding: 24px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.product-card .btn {
    width: 100%;
    text-align: center;
}

.nav-link.active {
    color: var(--color-pink);
    background: rgba(236, 72, 153, 0.15);
}
