:root {
    /* Couleurs basées sur le logo Destination Piscine */
    --color-ocean: #4A4A4A;
    --color-ocean-deep: #3D3D3D;
    --color-aqua: #5BBAD5;
    --color-aqua-light: #8DD3E8;
    --color-foam: #E8F6FA;
    --color-sand: #F7F9FA;
    --color-sunset: #5BBAD5;
    --color-gold: #7AC8E0;
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    --color-charcoal: #4A4A4A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-soft: 0 4px 20px rgba(10, 77, 104, 0.08);
    --shadow-medium: 0 8px 40px rgba(10, 77, 104, 0.12);
    --shadow-strong: 0 16px 60px rgba(10, 77, 104, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 100%);
}

/* Animated Background - removed, replaced by video */
.bg-animated {
    display: none;
}

/* Water ripple effect */
.ripple-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    z-index: -1;
    opacity: 0.4;
}

.ripple {
    position: absolute;
    bottom: -100px;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2390E0EF' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    animation: wave 15s linear infinite;
}

.ripple:nth-child(2) {
    bottom: -120px;
    animation: wave 12s linear infinite reverse;
    opacity: 0.5;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-ocean-deep);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--color-foam);
    padding: 0.25rem;
    border-radius: 50px;
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--color-ocean);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(91, 186, 213, 0.2);
}

.lang-btn.active {
    background: var(--color-aqua);
    color: white;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-ocean);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--color-sunset);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-aqua-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    max-width: 500px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.location-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: white;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
    stroke: #10B981;
    stroke-width: 3;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-aqua) 0%, #4AA8C4 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(91, 186, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 186, 213, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-ocean);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Hero Services - Mini Cards */
.hero-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.mini-service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.mini-service-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-aqua);
}

.mini-service-card.popular {
    border-color: var(--color-aqua);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-foam) 100%);
}

.mini-service-card.vacation-card {
    border-color: #6EDABB;
}

.mini-popular-tag {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-aqua-light));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mini-new-tag {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, #3ECFA7, #6EDABB);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mini-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.essential-icon {
    background: rgba(91, 186, 213, 0.15);
}
.essential-icon svg {
    stroke: var(--color-aqua);
}

.standard-icon {
    background: rgba(91, 186, 213, 0.2);
}
.standard-icon svg {
    stroke: var(--color-aqua);
}

.premium-icon {
    background: rgba(74, 74, 74, 0.1);
}
.premium-icon svg {
    stroke: var(--color-charcoal);
}

.vacation-icon {
    background: rgba(62, 207, 167, 0.15);
}
.vacation-icon svg {
    stroke: #3ECFA7;
}

.mini-service-info {
    flex: 1;
}

.mini-service-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    margin-bottom: 0.15rem;
}

.mini-service-info p {
    font-size: 0.85rem;
    color: #6b7c8a;
    margin-bottom: 0.25rem;
}

.mini-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-aqua);
}

.mini-service-arrow {
    width: 32px;
    height: 32px;
    background: var(--color-foam);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mini-service-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-aqua);
}

.mini-service-card:hover .mini-service-arrow {
    background: var(--color-aqua);
}

.mini-service-card:hover .mini-service-arrow svg {
    stroke: white;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-ocean);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.service-card.essential::before {
    background: linear-gradient(90deg, var(--color-aqua), var(--color-aqua-light));
}

.service-card.standard::before {
    background: linear-gradient(90deg, var(--color-ocean), var(--color-aqua));
}

.service-card.premium::before {
    background: linear-gradient(90deg, #3D3D3D, var(--color-charcoal));
}

.service-card.vacation::before {
    background: linear-gradient(90deg, #3ECFA7, #6EDABB);
}

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

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

.service-badge-wrapper {
    margin-bottom: 1.5rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card.essential .service-badge {
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-ocean);
}

.service-card.standard .service-badge {
    background: rgba(10, 77, 104, 0.1);
    color: var(--color-ocean-deep);
}

.service-card.premium .service-badge {
    background: rgba(74, 74, 74, 0.1);
    color: var(--color-charcoal);
}

.service-card.vacation .service-badge {
    background: rgba(62, 207, 167, 0.1);
    color: #2BB88A;
}

.popular-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-aqua-light));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.new-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #3ECFA7, #6EDABB);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 0.95rem;
    color: #6b7c8a;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
}

.price-period {
    font-size: 1rem;
    color: #6b7c8a;
    font-weight: 400;
}

.price-note {
    font-size: 0.85rem;
    color: #6b7c8a;
    margin-top: 0.25rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    stroke: white;
    stroke-width: 3;
}

.service-cta {
    width: 100%;
    justify-content: center;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: var(--color-white);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-foam);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-aqua);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.5rem;
    box-shadow: var(--shadow-soft);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-aqua);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-ocean-deep);
    margin-bottom: 0.75rem;
}

.step p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 3rem;
}

.step-arrow svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-aqua);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: var(--color-foam);
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    color: #F4A261;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-aqua-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-ocean-deep);
}

.author-location {
    font-size: 0.85rem;
    color: #6b7c8a;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background: var(--color-white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    transition: color 0.3s ease;
}

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

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-aqua);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #5A5A5A 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.promo-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-aqua-light));
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
    box-shadow: 0 4px 20px rgba(91, 186, 213, 0.4);
}

.promo-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.promo-deadline {
    font-size: 1rem;
    color: var(--color-aqua-light);
    font-weight: 600;
    margin-bottom: 2rem;
}

.promo-spots {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.spots-icon {
    width: 40px;
    height: 40px;
    background: var(--color-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spots-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.spots-text {
    color: white;
    font-weight: 600;
}

.spots-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-aqua-light);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--color-foam);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-ocean));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-label {
    font-size: 0.85rem;
    color: #6b7c8a;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
}

/* Footer */
footer {
    background: var(--color-charcoal);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 41, 64, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 2rem 2rem 1.5rem;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.modal.essential .modal-header::before {
    background: linear-gradient(90deg, var(--color-aqua), var(--color-aqua-light));
}

.modal.standard .modal-header::before {
    background: linear-gradient(90deg, var(--color-ocean), var(--color-aqua));
}

.modal.premium .modal-header::before {
    background: linear-gradient(90deg, #3D3D3D, var(--color-charcoal));
}

.modal.vacation .modal-header::before {
    background: linear-gradient(90deg, #3ECFA7, #6EDABB);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-foam);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-ocean-deep);
    stroke-width: 2;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modal.essential .modal-badge {
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-ocean);
}

.modal.standard .modal-badge {
    background: rgba(10, 77, 104, 0.1);
    color: var(--color-ocean-deep);
}

.modal.premium .modal-badge {
    background: rgba(74, 74, 74, 0.1);
    color: var(--color-charcoal);
}

.modal.vacation .modal-badge {
    background: rgba(62, 207, 167, 0.1);
    color: #2BB88A;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-ocean-deep);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #6b7c8a;
    font-size: 1rem;
}

.modal-body {
    padding: 0 2rem 2rem;
}

.modal-price-box {
    background: var(--color-foam);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.modal-price-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.modal-price-label {
    color: #6b7c8a;
}

.modal-price-value {
    font-weight: 700;
    color: var(--color-ocean-deep);
    font-size: 1.1rem;
}

.modal-features-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-ocean-deep);
    margin-bottom: 1rem;
}

.modal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-cta .btn {
    justify-content: center;
}

.modal-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7c8a;
}

/* Floating Referral Banner */
.referral-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-aqua) 0%, #4AABCB 100%);
    color: white;
    padding: 1rem 2rem;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.referral-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.referral-icon {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.referral-text {
    font-size: 1rem;
    font-weight: 500;
}

.referral-text strong {
    font-weight: 700;
}

.referral-btn {
    background: white;
    color: var(--color-aqua);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.referral-btn:hover {
    background: var(--color-foam);
    transform: scale(1.05);
}

.referral-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.referral-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.referral-close svg {
    width: 16px;
    height: 16px;
}

.referral-banner.hidden {
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

@media (max-width: 600px) {
    .referral-banner {
        padding: 1rem;
        padding-right: 3rem;
    }
    
    .referral-text {
        font-size: 0.9rem;
    }
    
    .referral-icon {
        font-size: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 0;
    }

    .hero-services {
        order: 1;
        margin-top: 2rem;
    }

    .hero-locations {
        justify-content: center;
    }

    .hero-benefits {
        align-items: flex-start;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-phone span {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .mini-service-card {
        padding: 1rem;
    }

    .mini-service-info h4 {
        font-size: 1rem;
    }

    .promo-banner {
        padding: 3rem 1rem;
    }

    .modal {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .modal-header, .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .how-it-works, .testimonials, .faq {
        padding: 3rem 1rem;
    }

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

    .faq-question {
        font-size: 1rem;
    }
}
