/* =========================================
   Maison Megève - Conciergerie Alpine de Luxe
   Vanilla CSS (converted from Tailwind)
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0c0a09;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Background Orbs
   ========================================= */
.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.orb-amber {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 158, 11, 0.15);
}

.orb-rose {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(244, 63, 94, 0.15);
}

.orb-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: rgba(41, 37, 36, 0.5);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(12, 10, 9, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #d6d3d1;
}

.logo-monogram {
    display: inline;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    margin-right: -0.05em;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #34d399;
    transform: scale(1.05);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 1.5rem;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #fbbf24;
    border-radius: 50%;
}

.badge-text {
    font-size: 0.875rem;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-light {
    color: #e7e5e4;
}

.title-gradient {
    background: linear-gradient(to right, #fde68a, #fbbf24, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #a8a29e;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: #10b981;
    color: white;
}

.btn-whatsapp:hover {
    background: #34d399;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
}

.btn-phone {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-large .whatsapp-icon {
    width: 1.75rem;
    height: 1.75rem;
}

/* Locations */
.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.location-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #a8a29e;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #78716c;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, #78716c, transparent);
}

/* =========================================
   Services Section
   ========================================= */
.services {
    position: relative;
    padding: 6rem 1.5rem;
    z-index: 10;
}

.section-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: #fbbf24;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-top: 1rem;
    color: #f5f5f4;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Card */
.service-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5f5f4;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #a8a29e;
    margin-bottom: 1rem;
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card.active .service-details {
    max-height: 10rem;
    opacity: 1;
}

.service-details p {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d6d3d1;
}

.service-expand {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-expand span {
    font-size: 1.25rem;
    color: #a8a29e;
}

.service-card.active .service-expand {
    transform: rotate(45deg);
}

/* =========================================
   Features Section
   ========================================= */
.features {
    position: relative;
    padding: 6rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    z-index: 10;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f5f4;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #a8a29e;
}

/* =========================================
   Final CTA Section
   ========================================= */
.final-cta {
    position: relative;
    padding: 8rem 1.5rem;
    z-index: 10;
}

.cta-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

/* Quote */
.quote {
    position: relative;
    margin-bottom: 3rem;
}

.quote-mark {
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.2);
    font-family: serif;
    position: absolute;
    top: -2rem;
    left: 0;
}

.quote-text {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: #d6d3d1;
    line-height: 1.75;
    font-style: italic;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(to bottom right, #1c1917, #292524);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5f5f4;
}

.cta-subtitle {
    color: #a8a29e;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    color: #78716c;
}

.cta-phone {
    transition: color 0.2s ease;
}

.cta-phone:hover {
    color: #d6d3d1;
}

.cta-separator {
    display: none;
}

@media (min-width: 640px) {
    .cta-separator {
        display: inline;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #78716c;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #a8a29e;
}

.footer-logo .logo-monogram {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.25));
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d6d3d1;
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease;
    z-index: 50;
}

.floating-whatsapp:hover {
    background: #34d399;
    transform: scale(1.1);
}

.floating-icon {
    width: 2rem;
    height: 2rem;
}

/* =========================================
   Utilities
   ========================================= */
@media (max-width: 640px) {
    .hero {
        padding-top: 6rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}
