/* ========================================
   ILYIF - Feel Good Club
   Purple/Lavender Elegant Design
   Inspired by ilyif.com
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* ILYIF Purple Palette */
    --purple-primary: #d09cfa;
    --purple-dark: #9775ee;
    --purple-muted: #bca5d5;
    --purple-light: #e8d5f7;
    --purple-pale: #f5effc;

    /* Supporting Colors */
    --teal: #128c69;
    --gray: #6e6e6e;
    --gray-light: #999999;
    --gray-dark: #333333;

    /* Backgrounds */
    --bg-gradient-start: #fbfbff;
    --bg-gradient-end: #eae9ff;
    --white: #ffffff;
    --off-white: #fafafa;

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #d09cfa 0%, #9775ee 100%);
    --gradient-bg: radial-gradient(ellipse at center, #fbfbff 0%, #eae9ff 100%);
    --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f5effc 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(151, 117, 238, 0.1);
    --shadow-medium: 0 8px 30px rgba(151, 117, 238, 0.15);
    --shadow-strong: 0 12px 40px rgba(151, 117, 238, 0.2);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-gradient-start);
    color: var(--gray-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: relative;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: var(--transition-fast);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--purple-dark);
}

.nav-cta {
    background: var(--gradient-purple);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 600;
    transition: var(--transition-medium) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--purple-dark);
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 24px 80px;
    overflow: hidden;
    background: var(--gradient-bg);
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    animation: heroSlide 18s infinite;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-slide-1 {
    background-image: url('../assets/hero-slide-1.webp');
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url('../assets/hero-slide-2.webp');
    animation-delay: 6s;
}

.hero-slide-3 {
    background-image: url('../assets/hero-slide-3.webp');
    animation-delay: 12s;
}

@keyframes heroSlide {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    5% {
        opacity: 1;
    }
    28% {
        opacity: 1;
    }
    33% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border-radius: 30px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
}

.title-line {
    display: block;
}

.title-script {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-main {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 500;
    color: var(--purple-dark);
    letter-spacing: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.title-sub {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--purple-primary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 15px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    margin: 30px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle .highlight {
    color: var(--white);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--purple-dark);
    border: 2px solid var(--purple-primary);
}

.btn-secondary:hover {
    background: var(--purple-pale);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero .btn-primary {
    box-shadow: 0 4px 20px rgba(151, 117, 238, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--purple-dark);
    border: 1px solid var(--purple-dark);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--purple-dark);
    color: var(--white);
}

.hero-date {
    margin-top: 60px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header.light .section-badge {
    color: var(--purple-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.service-card {
    position: relative;
    background: var(--off-white);
    padding: 0;
    text-align: center;
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: var(--transition-medium);
    z-index: 1;
}

.service-card:hover::before {
    background: linear-gradient(to top, rgba(151,117,238,0.9) 0%, rgba(208,156,250,0.6) 50%, rgba(208,156,250,0.3) 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
}

.service-card::after {
    content: 'Réserver';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--white);
    color: var(--purple-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Service card images */
.service-brows {
    background-image: url('../assets/service-brows.webp');
}

.service-lashes {
    background-image: url('../assets/service-lashes.webp');
}

.service-nails {
    background-image: url('../assets/service-nails.webp');
}

.service-permanent-makeup {
    background-image: url('../assets/service-permanent-makeup.webp');
}

.service-facecare {
    background-image: url('../assets/service-facecare.webp');
}

.service-epilations {
    background-image: url('../assets/service-epilations.jpg');
}

.service-piercings {
    background-image: url('../assets/gallery-new-2.jpg');
}

.service-card.featured {
    box-shadow: 0 0 0 3px var(--purple-primary);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--purple-dark);
    padding: 8px 15px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--purple-dark);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--purple-light);
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img {
    overflow: hidden;
}

.about-img-1 {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('../assets/salon.png') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

.about-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-strong);
    background: url('../assets/creations.webp') center/cover no-repeat;
}

.about-img-2 .img-placeholder {
    display: none;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-badge,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-text strong {
    color: var(--purple-dark);
    font-weight: 600;
}

.inline-logo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin: 0 2px;
    display: inline-block;
}

.about-img-mobile {
    display: none;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feature-text p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   Fidelity Section - Premium Design
   ======================================== */
.fidelite {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.fidelite-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fidelite-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.fidelite-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-primary);
    top: -100px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.fidelite-glow-2 {
    width: 300px;
    height: 300px;
    background: #FFD700;
    bottom: -50px;
    right: -50px;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

.fidelite-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Floating Elements */
.fidelite-floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floater {
    position: absolute;
    animation: floatAround 20s ease-in-out infinite;
}

.floater svg {
    width: 100%;
    height: 100%;
}

.floater-star {
    width: 30px;
    height: 30px;
    top: 15%;
    left: 8%;
    color: #FFD700;
    animation-delay: 0s;
}

.floater-gift {
    width: 35px;
    height: 35px;
    top: 20%;
    right: 10%;
    color: rgba(255,255,255,0.3);
    animation-delay: -5s;
}

.floater-heart {
    width: 25px;
    height: 25px;
    bottom: 25%;
    left: 5%;
    color: #ff6b9d;
    animation-delay: -10s;
}

.floater-diamond {
    width: 28px;
    height: 28px;
    bottom: 15%;
    right: 8%;
    color: #00d4ff;
    animation-delay: -15s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.7; }
    75% { transform: translateY(-25px) rotate(5deg); opacity: 0.9; }
}

/* Header */
.fidelite-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.fidelite-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,165,0,0.1));
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.fidelite-badge svg {
    width: 18px;
    height: 18px;
    stroke: #FFD700;
}

.fidelite-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.fidelite-title span {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fidelite-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Content Grid */
.fidelite-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Main Card */
.fidelite-main-card {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.fidelite-card-shine {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFD700, #FFA500, var(--purple-primary), #FFD700);
    background-size: 300% 300%;
    border-radius: 28px;
    animation: shineRotate 5s linear infinite;
    z-index: -1;
}

@keyframes shineRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fidelite-card-inner {
    background: linear-gradient(145deg, #2d1b4e, #1a0a2e);
    border-radius: 26px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.fidelite-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.fidelite-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fidelite-card-logo {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.fidelite-card-title {
    display: flex;
    flex-direction: column;
}

.card-club {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-member {
    font-size: 0.75rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fidelite-card-center {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.points-ring {
    position: relative;
    width: 150px;
    height: 150px;
}

.points-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.points-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.points-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.points-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fidelite-card-bottom {
    padding-top: 20px;
}

.fidelite-access-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #1a0a2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fidelite-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.fidelite-access-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1a0a2e;
    transition: transform 0.3s ease;
}

.fidelite-access-btn:hover svg {
    transform: translateX(5px);
}

/* Benefits Grid */
.fidelite-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fidelite-benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.fidelite-benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
}

.benefit-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,165,0,0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: #FFD700;
}

.fidelite-benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.fidelite-benefit-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Rewards Preview */
.fidelite-rewards-preview {
    position: relative;
    z-index: 2;
}

.fidelite-rewards-preview h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.rewards-track {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reward-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 18px 25px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.reward-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.reward-item-gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.1));
    border-color: rgba(255,215,0,0.3);
}

.reward-points {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 5px;
}

.reward-name {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 900px) {
    .fidelite-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fidelite-title {
        font-size: 2.2rem;
    }

    .fidelite-benefits-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .fidelite {
        padding: 60px 0;
    }

    .fidelite-header {
        margin-bottom: 40px;
    }

    .fidelite-title {
        font-size: 1.8rem;
    }

    .fidelite-subtitle {
        font-size: 1rem;
    }

    .fidelite-main-card {
        max-width: 320px;
    }

    .points-ring {
        width: 130px;
        height: 130px;
    }

    .points-number {
        font-size: 2.2rem;
    }

    .rewards-track {
        gap: 10px;
    }

    .reward-item {
        min-width: 130px;
        padding: 15px 18px;
    }

    .floater {
        display: none;
    }
}

/* Fidelite Modal */
.fidelite-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fidelite-modal.active {
    display: flex;
}

.fidelite-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.fidelite-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: fideliteModalIn 0.4s ease;
}

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

.fidelite-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--purple-pale);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.fidelite-modal-close:hover {
    background: var(--purple-light);
}

.fidelite-modal-close svg {
    stroke: var(--purple-dark);
}

.fidelite-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.fidelite-modal-logo {
    height: 50px;
    margin-bottom: 15px;
}

.fidelite-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--purple-dark);
    margin-bottom: 8px;
}

.fidelite-modal-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.fidelite-form {
    margin-bottom: 20px;
}

.fidelite-input-group {
    position: relative;
    margin-bottom: 15px;
}

.fidelite-input-group svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    stroke: var(--purple-primary);
}

.fidelite-input-group input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--purple-pale);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.fidelite-input-group input:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 4px rgba(151, 117, 238, 0.1);
}

.fidelite-input-group input::placeholder {
    color: var(--gray-light);
}

.fidelite-error {
    color: #e74c3c;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
    min-height: 20px;
}

.fidelite-form .btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    justify-content: center;
    gap: 10px;
}

.fidelite-help {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* Fidelite Result */
.fidelite-result-header {
    text-align: center;
    margin-bottom: 25px;
}

.fidelite-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.fidelite-avatar svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.fidelite-result-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-dark);
}

.fidelite-points-display {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.fidelite-points-circle {
    width: 150px;
    height: 150px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(151, 117, 238, 0.3);
}

.fidelite-points-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.fidelite-points-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fidelite-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.fidelite-stat {
    text-align: center;
}

.fidelite-stat .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--purple-dark);
}

.fidelite-stat .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.fidelite-modal .btn-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.fidelite-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.fidelite-back:hover {
    color: var(--purple-dark);
}

.fidelite-back svg {
    stroke: currentColor;
}

/* ========================================
   Gallery Section
   ======================================== */
.galerie {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: var(--transition-medium);
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(208,156,250,0.8), rgba(151,117,238,0.8));
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 0;
}

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

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-strong);
}

.gallery-label {
    position: relative;
    z-index: 3;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-label {
    transform: translateY(-10px);
}

.gallery-item-1 {
    background-image: url('../assets/gallery-5.webp');
}

.gallery-item-2 {
    background-image: url('../assets/gallery-6.webp');
}

.gallery-item-3 {
    background-image: url('../assets/gallery-7.webp');
}

/* ========================================
   Reservation Section
   ======================================== */
.reservation {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B7FD4 0%, #A594E0 50%, #9B8BE0 100%);
    z-index: -1;
}

.reservation-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.reservation-glow-1 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    top: -100px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.reservation-glow-2 {
    width: 350px;
    height: 350px;
    background: #5B4A8C;
    bottom: -100px;
    right: -50px;
    opacity: 0.4;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reservation-content {
    color: var(--white);
}

.reservation-content .section-badge {
    background: rgba(91, 74, 140, 0.3);
    color: #ffffff;
    border: 1px solid rgba(91, 74, 140, 0.5);
}

.reservation-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--white);
}

.highlight-purple {
    background: linear-gradient(135deg, #5B4A8C 0%, #3D2E6B 50%, #5B4A8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reservation-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 35px;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(91, 74, 140, 0.3) 0%, rgba(91, 74, 140, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 74, 140, 0.4);
    flex-shrink: 0;
}

.feature-icon svg {
    stroke: #5B4A8C !important;
    width: 22px;
    height: 22px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
}

.feature-text span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Card */
.reservation-cta-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shineRotate 6s ease-in-out infinite;
}

.cta-card-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8B7FD4 0%, #A594E0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(139, 127, 212, 0.4);
}

.cta-icon svg {
    stroke: #ffffff;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #2d1b4e;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b5b7a;
    margin-bottom: 30px;
}

.btn-reservation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8B7FD4 0%, #7B6FC4 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(139, 127, 212, 0.4);
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #5B4A8C 0%, #4A3D7A 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(91, 74, 140, 0.5);
}

.btn-reservation svg {
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.btn-reservation:hover svg {
    stroke: #ffffff;
    transform: translateX(5px);
}

/* Planity Modal */
.planity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.planity-modal.active {
    display: flex;
}

.planity-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.planity-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

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

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

.planity-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--purple-pale);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.planity-modal-close:hover {
    background: var(--purple-light);
    transform: rotate(90deg);
}

.planity-modal-close svg {
    color: var(--purple-dark);
}

.planity-modal-header {
    text-align: center;
    padding: 25px 20px 15px;
    border-bottom: 1px solid var(--purple-pale);
}

.planity-modal-logo {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.planity-modal-header p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.planity-embed {
    background: var(--white);
    overflow: hidden;
}

.planity-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.reservation-alternative {
    text-align: center;
    color: var(--white);
}

.reservation-alternative p {
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.9;
}

.reservation-alternative .btn-secondary {
    background: var(--white);
    color: var(--purple-dark);
    border: none;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge,
.contact-info .section-title {
    text-align: left;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-text p a {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text p a:hover {
    color: var(--purple-dark);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
    background: var(--white);
    border: 1px solid var(--purple-light);
    transition: var(--transition-medium);
}

.social-link:hover {
    background: var(--purple-dark);
    color: var(--white);
    border-color: var(--purple-dark);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-navigation {
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #8B7FD4 0%, #A594E0 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.navigation-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.navigation-address {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.navigation-buttons {
    display: flex;
    gap: 20px;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nav-btn img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.nav-btn span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.waze-btn:hover {
    background: #33CCFF;
}

.waze-btn:hover span {
    color: white;
}

.gmaps-btn:hover {
    background: #4285F4;
}

.gmaps-btn:hover span {
    color: white;
}

/* Legacy map styles - keeping for compatibility */
.contact-map {
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
}

.map-icon svg {
    width: 30px;
    height: 30px;
}

.map-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    color: var(--purple-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--purple-primary);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-credit {
    color: var(--purple-primary);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }

    .gallery-grid {
        grid-template-rows: 280px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.99);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .nav-menu .nav-cta {
        margin-top: 10px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    .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);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        display: none;
    }

    .about-img-mobile {
        display: block;
        margin: 30px 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-medium);
    }

    .about-img-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-features {
        margin-top: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-navigation {
        min-height: 280px;
        padding: 30px 20px;
    }

    .navigation-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .nav-btn {
        padding: 20px 25px;
    }

    .nav-btn img {
        width: 50px;
        height: 50px;
    }

    .nav-btn span {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .hero {
        min-height: calc(100vh - 70px);
        padding: 40px 20px 60px;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.7rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.7rem;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    /* Reservation Mobile */
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-title {
        font-size: 2rem;
    }

    .reservation-text {
        font-size: 1rem;
    }

    .reservation-cta-card {
        padding: 35px 25px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
    }

    .cta-icon svg {
        width: 35px;
        height: 35px;
    }

    .btn-reservation {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .reservation-glow {
        opacity: 0.2;
    }

    .reservation-glow-1 {
        width: 200px;
        height: 200px;
    }

    .reservation-glow-2 {
        width: 180px;
        height: 180px;
    }

    /* Fidelite Premium Mobile */
    .fidelite-premium-card {
        padding: 60px 15px;
    }

    .fidelite-main-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .fidelite-points-ring {
        width: 140px;
        height: 140px;
    }

    .fidelite-points-ring svg {
        width: 140px;
        height: 140px;
    }

    .fidelite-points-value {
        font-size: 2.5rem;
    }

    .fidelite-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .fidelite-benefit-card {
        padding: 20px 15px;
    }

    .fidelite-benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .fidelite-benefit-title {
        font-size: 0.85rem;
    }

    .fidelite-benefit-desc {
        font-size: 0.75rem;
    }

    .fidelite-rewards-preview {
        padding: 0 10px;
    }

    .fidelite-rewards-track {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fidelite-reward-item {
        padding: 12px 18px;
        font-size: 0.8rem;
    }

    .floater {
        display: none;
    }

    .fidelite-glow {
        filter: blur(60px);
        opacity: 0.25;
    }

    .fidelite-glow-1 {
        width: 200px;
        height: 200px;
    }

    .fidelite-glow-2 {
        width: 150px;
        height: 150px;
    }

    .planity-embed iframe {
        height: 500px;
    }

    .planity-modal {
        padding: 10px;
    }

    .planity-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }

    .planity-modal-header {
        padding: 20px 15px 10px;
    }

    .planity-modal-logo {
        height: 40px;
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px 50px;
    }

    .hero-logo {
        max-width: 160px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
        margin-bottom: 15px;
    }

    .hero-cta {
        max-width: 240px;
        gap: 10px;
    }

    .hero .btn {
        padding: 12px 20px;
        font-size: 0.65rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .planity-embed iframe {
        height: 450px;
    }
}

/* ========================================
   Disco Effects - Hero Section
   ======================================== */

/* Disco Ball */
.disco-ball {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 70px;
    height: 70px;
    background: url('../assets/disco-ball.png') center/contain no-repeat;
    animation: discoBallFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(151, 117, 238, 0.6)) drop-shadow(0 0 40px rgba(208, 156, 250, 0.4));
}

/* Glowing pulse effect */
.disco-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(208, 156, 250, 0.3) 0%, transparent 70%);
    animation: discoPulse 2s ease-in-out infinite;
    z-index: -1;
}

/* String/Wire holding the ball */
.disco-ball::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, rgba(150,150,150,0.3), rgba(150,150,150,0.8));
}

@keyframes discoBallFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateX(-50%) translateY(-8px) rotate(2deg);
    }
}

@keyframes discoPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Light reflections from disco ball */
.disco-ball-reflections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.reflection {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: reflectionMove 3s ease-in-out infinite;
}

.reflection:nth-child(1) { top: 8%; left: 30%; animation-delay: 0s; animation-duration: 4s; }
.reflection:nth-child(2) { top: 5%; left: 70%; animation-delay: 0.5s; animation-duration: 3.5s; }
.reflection:nth-child(3) { top: 15%; left: 20%; animation-delay: 1s; animation-duration: 4.5s; }
.reflection:nth-child(4) { top: 12%; left: 80%; animation-delay: 1.5s; animation-duration: 3s; }
.reflection:nth-child(5) { top: 3%; left: 40%; animation-delay: 2s; animation-duration: 5s; }
.reflection:nth-child(6) { top: 10%; left: 60%; animation-delay: 2.5s; animation-duration: 3.8s; }

@keyframes reflectionMove {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Disco Light Rays */
.disco-lights {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.disco-ray {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 300px;
    transform-origin: top center;
    opacity: 0.4;
    filter: blur(2px);
}

.disco-ray-1 {
    background: linear-gradient(to bottom, #d09cfa, transparent);
    animation: rayMove1 6s ease-in-out infinite;
}

.disco-ray-2 {
    background: linear-gradient(to bottom, #9775ee, transparent);
    animation: rayMove2 7s ease-in-out infinite;
}

.disco-ray-3 {
    background: linear-gradient(to bottom, #e8d5f7, transparent);
    animation: rayMove3 5s ease-in-out infinite;
}

.disco-ray-4 {
    background: linear-gradient(to bottom, #bca5d5, transparent);
    animation: rayMove4 8s ease-in-out infinite;
}

.disco-ray-5 {
    background: linear-gradient(to bottom, #d09cfa, transparent);
    animation: rayMove5 6.5s ease-in-out infinite;
}

.disco-ray-6 {
    background: linear-gradient(to bottom, #9775ee, transparent);
    animation: rayMove6 7.5s ease-in-out infinite;
}

@keyframes rayMove1 {
    0%, 100% { transform: rotate(-60deg); opacity: 0.3; }
    50% { transform: rotate(-20deg); opacity: 0.6; }
}

@keyframes rayMove2 {
    0%, 100% { transform: rotate(-40deg); opacity: 0.4; }
    50% { transform: rotate(10deg); opacity: 0.5; }
}

@keyframes rayMove3 {
    0%, 100% { transform: rotate(-10deg); opacity: 0.3; }
    50% { transform: rotate(30deg); opacity: 0.6; }
}

@keyframes rayMove4 {
    0%, 100% { transform: rotate(20deg); opacity: 0.4; }
    50% { transform: rotate(50deg); opacity: 0.5; }
}

@keyframes rayMove5 {
    0%, 100% { transform: rotate(40deg); opacity: 0.3; }
    50% { transform: rotate(0deg); opacity: 0.6; }
}

@keyframes rayMove6 {
    0%, 100% { transform: rotate(60deg); opacity: 0.4; }
    50% { transform: rotate(20deg); opacity: 0.5; }
}

/* Sparkles */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple-primary), 0 0 20px var(--purple-light);
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; left: 85%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 35%; left: 15%; animation-delay: 1s; }
.sparkle:nth-child(4) { top: 50%; left: 80%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 25%; left: 50%; animation-delay: 2s; }
.sparkle:nth-child(6) { top: 65%; left: 20%; animation-delay: 2.5s; }
.sparkle:nth-child(7) { top: 45%; left: 90%; animation-delay: 3s; }
.sparkle:nth-child(8) { top: 75%; left: 45%; animation-delay: 3.5s; }

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Responsive disco effects */
@media (max-width: 768px) {
    .disco-ball {
        top: -10px;
        width: 50px;
        height: 50px;
    }

    .disco-ray {
        height: 150px;
    }

    .sparkle {
        width: 4px;
        height: 4px;
    }

    .reflection {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .disco-ball {
        width: 40px;
        height: 40px;
        top: -5px;
    }

    .disco-ray {
        height: 100px;
    }
}
