/**
 * Infinity Salón Madrid - Stylesheet
 * Elegant, luxurious beauty salon design
 * Color Palette: Rose Gold + Deep Burgundy + Cream
 */

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Primary Colors - Rose Gold Elegance */
    --rose-gold: #b8967a;
    --rose-gold-light: #d4b59a;
    --rose-gold-dark: #9a7a62;
    
    /* Accent Colors - Deep Burgundy */
    --burgundy: #722f37;
    --burgundy-light: #8a3d47;
    --burgundy-dark: #5a252c;
    
    /* Neutral Colors - Warm Creams */
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --ivory: #fffef9;
    --sand: #e8e0d5;
    
    /* Dark Colors */
    --charcoal: #2d2a26;
    --graphite: #3d3a36;
    --slate: #5a5650;
    
    /* Semantic Colors */
    --success: #4a7c59;
    --warning: #c9a227;
    --error: #c44536;
    
    /* Text Colors */
    --text-primary: #2d2a26;
    --text-secondary: #5a5650;
    --text-muted: #8a857d;
    --text-light: #fffef9;
    
    /* Gradients */
    --gradient-rose: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    --gradient-burgundy: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    --gradient-warm: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
    --gradient-hero: linear-gradient(135deg, #faf7f2 0%, #f5ede3 50%, #ede3d5 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(45, 42, 38, 0.05);
    --shadow-md: 0 4px 12px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 8px 30px rgba(45, 42, 38, 0.12);
    --shadow-xl: 0 20px 50px rgba(45, 42, 38, 0.15);
    --shadow-glow: 0 0 40px rgba(184, 150, 122, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

em {
    font-style: italic;
    color: var(--rose-gold-dark);
}

strong {
    font-weight: 600;
}

/* ============================================
   Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.btn i {
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-rose);
    color: var(--text-light);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(184, 150, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(184, 150, 122, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--sand);
}

.btn-outline:hover {
    background: var(--cream);
    border-color: var(--rose-gold-light);
    color: var(--rose-gold-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: var(--ivory);
    color: var(--burgundy);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
    background: var(--charcoal);
    color: var(--text-light);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    text-align: center;
}

.announcement-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.announcement-bar a {
    color: var(--rose-gold-light);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.announcement-bar a:hover {
    color: var(--rose-gold);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 150, 122, 0.1);
    transition: all var(--transition-base);
    margin-top: 36px;
}

.header.scrolled {
    margin-top: 0;
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--rose-gold);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-phone:hover {
    color: var(--rose-gold-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 150, 122, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 47, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(184, 150, 122, 0.1) 0%, transparent 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--ivory);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.hero-badge i {
    color: var(--warning);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-pre {
    display: block;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.hero-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hero-features .feature i {
    font-size: 1.25rem;
    color: var(--rose-gold);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.hero-info .info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-info .info-item i {
    color: var(--rose-gold);
}

.hero-info .status-open {
    color: var(--success);
}

.hero-info .status-open i {
    color: var(--success);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 42, 38, 0.2) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--ivory);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 1.25rem;
}

.hero-floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.hero-floating-card .card-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-floating-card .card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-rating {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-services {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--sand);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.hero-scroll a:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--ivory);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
}

.trust-item i {
    font-size: 2rem;
    color: var(--rose-gold);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.125rem;
    color: var(--charcoal);
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(184, 150, 122, 0.15);
    color: var(--rose-gold-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.services-tabs {
    margin-bottom: var(--space-2xl);
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    padding: var(--space-sm);
    background: var(--ivory);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--cream);
}

.tab-btn.active {
    background: var(--gradient-rose);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-gold-light);
}

.service-card.popular {
    border-color: var(--rose-gold);
}

.service-card.promo {
    border-color: var(--burgundy-light);
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-popular {
    background: var(--rose-gold);
    color: var(--text-light);
}

.badge-promo {
    background: var(--burgundy);
    color: var(--text-light);
}

.service-content {
    flex: 1;
    margin-bottom: var(--space-md);
}

.service-name {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
    padding-right: 80px;
}

.service-meta {
    display: flex;
    gap: var(--space-md);
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--sand);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--burgundy);
}

.services-cta {
    text-align: center;
    padding-top: var(--space-xl);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--ivory);
}

.about-image-accent img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    top: var(--space-xl);
    left: -30px;
    display: flex;
    gap: var(--space-md);
    background: var(--ivory);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-stats .stat {
    text-align: center;
    padding: 0 var(--space-md);
}

.about-stats .stat:not(:last-child) {
    border-right: 1px solid var(--sand);
}

.about-stats .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--rose-gold-dark);
}

.about-stats .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    color: var(--text-secondary);
}

.about-features {
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.about-feature i {
    font-size: 1.25rem;
    color: var(--success);
}

/* ============================================
   Team Section
   ============================================ */
.team {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.team-card {
    background: var(--ivory);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand);
    transition: all var(--transition-base);
}

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

.team-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.team-rating {
    position: absolute;
    bottom: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--ivory);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.team-rating i {
    color: var(--warning);
}

.team-info {
    margin-bottom: var(--space-lg);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--rose-gold-dark);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.team-specialty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
    overflow: hidden;
}

.reviews-summary {
    margin-top: var(--space-lg);
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.summary-rating .rating-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--charcoal);
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--warning);
    font-size: 1.25rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.reviews-slider {
    margin: var(--space-2xl) 0;
    overflow: visible;
}

.reviews-track {
    display: flex;
    gap: var(--space-lg);
    animation: scroll 40s linear infinite;
}

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

.review-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--sand);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.review-author {
    display: flex;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    font-weight: 600;
    color: var(--text-light);
}

.author-info {
    display: flex;
    flex-direction: column;
}

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

.review-service {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 2px;
    color: var(--warning);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-md);
}

.review-footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg .cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-burgundy);
}

.cta-content {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.cta-title em {
    color: var(--rose-gold-light);
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--cream);
}

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

.faq-item {
    margin-bottom: var(--space-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    border: 1px solid var(--sand);
    transition: all var(--transition-base);
}

.faq-question:hover {
    border-color: var(--rose-gold-light);
}

.faq-question[aria-expanded="true"] {
    border-color: var(--rose-gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--rose-gold);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: var(--space-lg);
    background: var(--ivory);
    border: 1px solid var(--rose-gold);
    border-top: none;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Location Section
   ============================================ */
.location {
    padding: var(--space-4xl) 0;
    background: var(--ivory);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.location-info .section-title {
    text-align: left;
}

.location-details {
    margin: var(--space-xl) 0;
}

.location-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--sand);
}

.location-item:last-child {
    border-bottom: none;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--rose-gold);
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.location-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.location-hours {
    margin: var(--space-xl) 0;
}

.location-hours h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    border-bottom: 1px dashed var(--sand);
}

.hours-list li.closed {
    color: var(--text-muted);
}

.hours-list .day {
    color: var(--text-secondary);
}

.hours-list .time {
    font-weight: 500;
    color: var(--charcoal);
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.location-map iframe {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    background: var(--charcoal);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--ivory);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.footer-brand .logo-light .logo-icon {
    color: var(--rose-gold-light);
}

.footer-brand .logo-light .logo-name {
    color: var(--text-light);
}

.footer-brand .logo-light .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    margin: var(--space-md) 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-rating .stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
}

.footer-rating .rating-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--rose-gold-light);
}

.footer-contact .contact-list li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-contact .contact-list i {
    font-size: 1.25rem;
    color: var(--rose-gold-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact .contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .contact-list a:hover {
    color: var(--rose-gold-light);
}

.footer-map {
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Floating CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 100;
}

.btn-float {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: auto;
    min-width: 56px;
    height: 56px;
    padding: 0 var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.btn-float i {
    font-size: 1.5rem;
}

.btn-float span {
    display: inline;
}

.floating-cta .btn-primary {
    background: var(--gradient-rose);
    color: var(--text-light);
}

.btn-whatsapp {
    width: 56px;
    padding: 0;
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    border: 2px solid var(--sand);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--text-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 6 - var(--space-lg) * 6)); }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
    
    .about-grid {
        gap: var(--space-2xl);
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--ivory);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-info {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        max-width: 400px;
        margin: 0 auto var(--space-xl);
    }
    
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .header {
        margin-top: 0;
    }
    
    .announcement-bar {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: var(--space-xs);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: var(--space-sm) var(--space-md);
        flex-shrink: 0;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact .contact-list {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-cta {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .btn-float span {
        display: none;
    }
    
    .btn-float {
        width: 56px;
        padding: 0;
    }
    
    .back-to-top {
        left: var(--space-md);
        bottom: var(--space-md);
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --space-4xl: 4rem;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        position: static;
        margin-top: var(--space-lg);
        justify-content: center;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        width: 300px;
    }
}

