:root {
    /* Joyous & Floral Color Palette */
    --primary-color: #D81B60; /* Vibrant Pink/Magenta */
    --secondary-color: #D4AF37; /* Warm Gold */
    --accent-green: #4CAF50; /* Fresh Leaf Green */
    
    --bg-main: #FFFDF8; /* Very warm, creamy off-white */
    
    --text-main: #4A3B32; /* Deep warm brown for readability */
    --text-muted: #7A6960;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    
    /* Layout & Effects */
    --container-width: 1100px;
    --transition: all 0.4s ease;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.65);
    --glass-shadow: 0 8px 32px rgba(216, 27, 96, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; /* Hide default cursor */ }

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

/* --- Custom Cursor (Sparkle/Diamond Style) --- */
.cursor-sparkle {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px; /* Diamond shape */
    transform: translate(-50%, -50%) rotate(45deg);
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 10px rgba(216, 27, 96, 0.8);
}

.cursor-trail {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover effects for cursor */
a:hover ~ .cursor-trail, 
button:hover ~ .cursor-trail, 
.glass-card-interactive:hover ~ .cursor-trail,
.gallery-item:hover ~ .cursor-trail,
.filter-btn:hover ~ .cursor-trail,
.review-card:hover ~ .cursor-trail {
    width: 52px;
    height: 52px;
    background-color: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

a:hover ~ .cursor-sparkle, 
button:hover ~ .cursor-sparkle, 
.glass-card-interactive:hover ~ .cursor-sparkle,
.gallery-item:hover ~ .cursor-sparkle,
.filter-btn:hover ~ .cursor-sparkle,
.review-card:hover ~ .cursor-sparkle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Background Orbs & Floral Pattern */
.floral-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/floral-flourishes.png');
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}
.orb-1 {
    width: 500px; height: 500px;
    background: var(--secondary-color);
    top: -10%; left: -10%;
}
.orb-2 {
    width: 400px; height: 400px;
    background: var(--primary-color);
    bottom: -10%; right: -10%;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--secondary-color);
    font-style: italic;
}

/* --- Glassmorphism Utilities --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}
.glass-nav {
    background: rgba(255, 253, 248, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), #E91E63);
    color: white;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.35);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.55);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.1);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
}

.btn-secondary:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav { display: flex; gap: 2rem; align-items: center; }
.nav a:not(.btn-primary) {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    font-size: 1.05rem;
}
.nav a:not(.btn-primary):hover { color: var(--primary-color); }

.header-actions {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.header-call-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #E91E63);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
    transition: var(--transition);
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mobile-menu-btn .bar {
    width: 22px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Mobile Bottom Quick Action Bar --- */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(216, 27, 96, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9990;
    padding: 0.6rem 1rem max(0.6rem, env(safe-area-inset-bottom)) 1rem;
    justify-content: space-around;
    align-items: center;
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-bar-btn i {
    font-size: 1.25rem;
}

.mobile-bar-btn.call i {
    color: var(--primary-color);
}
.mobile-bar-btn.whatsapp i {
    color: #25D366;
}
.mobile-bar-btn.maps i {
    color: #1a73e8;
}

.mobile-bar-btn:active {
    transform: scale(0.95);
    background: rgba(216, 27, 96, 0.08);
}

/* --- Hero with Bright, High-Visibility Video Background --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 90px;
    padding-bottom: 40px;
    overflow: hidden;
    background: #110e0c; /* Deep warm backdrop so colors pop */
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(1.15) contrast(1.08) saturate(1.1);
    opacity: 0.95;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Soft, highly translucent vignette so video is clear & bright */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(255, 253, 248, 0.15) 55%, rgba(255, 253, 248, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
    padding: 3.5rem 3rem;
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 253, 248, 0.88); /* Crisp frosted glass so text is 100% readable */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 45px rgba(216, 27, 96, 0.18);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #996e00;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Events Marquee --- */
.glass-marquee {
    padding: 1.5rem 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-heading);
    margin: 0 3rem;
    color: var(--primary-color);
}

.marquee-item i {
    color: var(--secondary-color);
    margin-right: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About & Features --- */
.about {
    padding: 7rem 0;
    text-align: center;
}

.about-content {
    padding: 4rem;
    max-width: 950px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px dashed rgba(216, 27, 96, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Services --- */
.services, .gallery, .contact, .reviews-section { padding: 6.5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { font-size: 3.8rem; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.25rem; font-style: italic; max-width: 720px; margin: 0 auto; }

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

.service-card {
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.icon-wrapper {
    width: 75px; height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-card h3 { font-size: 1.9rem; margin-bottom: 1rem; }
.service-card p { font-size: 1.05rem; }

/* --- Gallery Filters --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #E91E63);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.35);
}

/* --- Gallery Grid & Cards --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item.featured {
    border: 2px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
}

.featured-badge {
    background: linear-gradient(135deg, #D4AF37, #F5D76E) !important;
    color: #4A3B32 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4) !important;
}

.gallery-item.is-hidden {
    display: none !important;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(216, 27, 96, 0.16);
    border-color: var(--secondary-color);
}

.gallery-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #fdfaf6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

/* Overlay for hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 59, 50, 0.85) 0%, rgba(216, 27, 96, 0.35) 50%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.overlay-cta {
    align-self: center;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(216, 27, 96, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-cta {
    transform: translateY(0);
}

.gallery-caption {
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caption-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.3rem;
}

.gallery-caption h4 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(40, 25, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox-modal.active .lightbox-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.lightbox-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-media {
    background: #1a1512;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    max-height: 85vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.lightbox-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(216, 27, 96, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
}

.lightbox-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.lightbox-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lightbox-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lightbox-cta-box {
    background: rgba(216, 27, 96, 0.05);
    border: 1px dashed rgba(216, 27, 96, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: auto;
}

.cta-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lightbox-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 5;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    color: white;
}

.lightbox-nav.prev { left: 15px; }
.lightbox-nav.next { right: 15px; }

/* --- Google Reviews Section & Horizontal Marquee --- */
.reviews-section {
    padding: 6.5rem 0 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.google-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.google-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pill-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: #202124;
}

.stars-gold {
    color: #FBBC05;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.pill-count {
    color: #5f6368;
    font-size: 0.95rem;
    font-weight: 600;
}

.maps-button-wrap {
    margin-top: 1.8rem;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: #1a73e8;
    border: 1.5px solid #1a73e8;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.15);
}

.btn-maps:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

/* Horizontal Reviews Marquee Track */
.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
    position: relative;
}

.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollReviews 45s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    width: 380px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.06);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(216, 27, 96, 0.12);
    border-color: var(--secondary-color);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.reviewer-meta {
    flex-grow: 1;
}

.reviewer-meta h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.review-event {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.google-badge-small {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.review-stars {
    color: #FBBC05;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-body {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-verified {
    font-size: 0.85rem;
    color: #34A853;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* --- Contact Section --- */
.contact-card {
    padding: 4rem;
    text-align: center;
}

.contact-card h2 { font-size: 3.2rem; margin-bottom: 1rem; }
.contact-card p { color: var(--text-main); margin-bottom: 3.5rem; font-size: 1.2rem;}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    transition: var(--transition);
    text-align: left;
}

.contact-link-item:hover {
    background: white;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.1);
}

.link-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.contact-link-item span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.contact-link-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

/* --- Footer --- */
.footer {
    background-color: var(--text-main);
    padding: 3rem 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ==========================================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVENESS
   Supports: Mobile (320px-480px), Phablets (481px-768px), Tablets (769px-1024px), Laptops & Large Desktops (1025px+)
   ========================================================================== */

/* --- Touch Devices (Disable Custom Cursors & Enable Native Behavior) --- */
@media (hover: none) or (pointer: coarse) {
    * { cursor: auto !important; }
    .cursor-sparkle, .cursor-trail { display: none !important; }
}

/* --- Large Desktops (1200px and up) --- */
@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Tablets & Laptops (901px to 1199px) --- */
@media (max-width: 1199px) and (min-width: 901px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    .hero h1 {
        font-size: 3.6rem;
    }
    .services-grid {
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* --- Tablets & Mobile Devices (900px and below) --- */
@media (max-width: 900px) {
    .header-actions {
        display: flex;
    }

    /* Mobile Drawer Navigation */
    .nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(255, 253, 248, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2.2rem 1.8rem;
        gap: 1.4rem;
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
        z-index: 999;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a:not(.btn-primary) {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px dashed rgba(216, 27, 96, 0.15);
    }

    .nav .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.9rem 1.5rem;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 50px;
        min-height: 85vh;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 6vw, 3.4rem);
    }

    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .hero-text {
        padding: 2.5rem 1.8rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 2rem;
    }

    .about-content {
        padding: 2.8rem 2rem;
    }

    .contact-card {
        padding: 2.8rem 2rem;
    }

    .contact-card h2 {
        font-size: 2.6rem;
    }
}

/* --- Mobile Devices (768px and below) --- */
@media (max-width: 768px) {
    body {
        padding-bottom: 72px; /* Space for mobile bottom bar */
    }

    .mobile-action-bar {
        display: flex;
    }

    .container {
        padding: 0 1.2rem;
    }

    .services, .gallery, .contact, .reviews-section, .about {
        padding: 4.5rem 0;
    }

    .marquee-item {
        font-size: 1.15rem;
        margin: 0 1.5rem;
    }

    .glass-marquee {
        padding: 1.1rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .gallery-filters {
        gap: 0.6rem;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.92rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .gallery-caption {
        padding: 1.2rem 1.4rem;
    }

    .gallery-caption h4 {
        font-size: 1.2rem;
    }

    /* Reviews Marquee on Mobile */
    .reviews-marquee-wrapper::before,
    .reviews-marquee-wrapper::after {
        width: 40px;
    }

    .reviews-marquee-track {
        gap: 1.2rem;
        animation: scrollReviews 32s linear infinite;
    }

    .review-card {
        width: 300px;
        padding: 1.6rem;
    }

    .review-body {
        font-size: 0.95rem;
    }

    /* Contact Links Mobile */
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-link-item {
        width: 100%;
        padding: 1.2rem 1.5rem;
    }

    /* Lightbox Modal Mobile */
    .lightbox-modal {
        padding: 0.8rem;
    }

    .lightbox-container {
        max-height: 92vh;
        border-radius: 20px;
    }

    .lightbox-content {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }

    .lightbox-media {
        max-height: 42vh;
        padding: 0.6rem;
    }

    .lightbox-img {
        max-height: 38vh;
    }

    .lightbox-details {
        padding: 1.5rem 1.2rem;
    }

    .lightbox-title {
        font-size: 1.5rem;
    }

    .lightbox-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .lightbox-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .lightbox-cta-box {
        padding: 1.2rem 1rem;
    }

    .lightbox-buttons {
        flex-direction: column;
    }

    .lightbox-buttons .btn-primary,
    .lightbox-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.75rem 1.2rem;
    }

    .lightbox-close {
        top: 10px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .lightbox-nav {
        display: none;
    }
}

/* --- Extra Small Screens (375px and below, e.g. iPhone SE) --- */
@media (max-width: 375px) {
    .logo-text {
        font-size: 1.05rem;
    }
    .logo-img {
        height: 42px;
        width: 42px;
    }
    .hero-text {
        padding: 2rem 1.2rem;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .review-card {
        width: 270px;
        padding: 1.3rem;
    }
}
