/* ================================================
   Parlour Website - Luxury Design System
   English Rose + Deep Plum + Warm Gold
   ================================================ */

/* CSS Variables */
:root {
    /* ========== BRAND COLORS - DO NOT CHANGE ========== */
    /* These are the primary brand colors used everywhere */
    --brand-primary: #B76E79;
    /* English rose - Main CTA buttons, primary actions */
    --brand-secondary: #8B4F6E;
    /* Deep plum - Hover states, secondary actions */
    --primary-color: #B76E79;
    /* Bootstrap compatibility - same as brand-primary */
    --secondary-color: #8B4F6E;
    /* Bootstrap compatibility - same as brand-secondary */
    --accent-gold: #C9A96E;
    /* Warm gold - Accent color */

    /* Text colors */
    --text-dark: #1C1C1E;
    --text-medium: #4A4A4F;
    --text-light: #8E8E93;

    /* Background colors */
    --bg-cream: #FDF9F7;
    /* Warm cream page background */
    --bg-white: #FFFFFF;
    --bg-blush: #F8EEEC;
    /* Card/section tint */
    --bg-light: #FAF5F3;

    /* Border */
    --border-rose: rgba(183, 110, 121, 0.2);
    --border-light: rgba(28, 28, 30, 0.08);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(28, 28, 30, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 79, 110, 0.12);
    --shadow-lg: 0 12px 40px rgba(139, 79, 110, 0.18);
    --shadow-glow: 0 8px 32px rgba(183, 110, 121, 0.25);
    --shadow-xl: 0 20px 60px rgba(139, 79, 110, 0.2);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 9999px;

    /* Status colors */
    --success: #10B981;
    --pending: #F59E0B;
    --error: #EF4444;

    /* Service category colors */
    --service-hair: #C17B74;
    --service-nails: #E8A598;
    --service-skin: #8B9EC6;
    --service-makeup: #C9A96E;
    --service-body: #7BA891;
    --service-other: #9B8B8B;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--brand-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header / Navigation */
.site-header {
    background: rgba(253, 249, 247, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border-rose);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.business-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.business-name {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--brand-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-link-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
}

.nav-link-cta:hover {
    background: var(--brand-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .nav-link-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section with Parallax */
.hero-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 4rem 0;
    background-attachment: fixed;
}

.hero-section.parallax {
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: heroFadeUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 300px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.feature-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Quiz Section (NEW - Unique Feature) */
.quiz-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F8EEEC 0%, var(--bg-cream) 100%);
    border-top: 1px solid var(--border-rose);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    perspective: 1000px;
}

.quiz-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: none;
    animation: slideInUp 0.5s ease-out;
    text-align: center;
}

.quiz-card.active {
    display: block;
}

.quiz-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quiz-option {
    padding: 1.5rem;
    background: var(--bg-blush);
    border: 2px solid var(--border-rose);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: var(--brand-primary);
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), transparent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quiz-option i {
    font-size: 2rem;
    color: var(--brand-primary);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 2rem 0;
}

.service-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 0.95rem;
}

.filter-pill:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.filter-pill.active {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out backwards;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--service-other);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.service-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.7rem;
}

.service-category.hair {
    background: var(--service-hair);
}

.service-category.nails {
    background: var(--service-nails);
}

.service-category.skin {
    background: var(--service-skin);
}

.service-category.makeup {
    background: var(--service-makeup);
}

.service-category.body {
    background: var(--service-body);
}

.service-category.other {
    background: var(--service-other);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
}

.service-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-rose);
    border-bottom: 1px solid var(--border-rose);
    margin-bottom: 1.5rem;
}

.service-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-meta-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-duration {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.service-availability {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-availability.unavailable {
    color: var(--error);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, #6B3A54 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary:hover {
    background: var(--brand-secondary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.btn-secondary:hover {
    background: var(--brand-secondary);
    color: white;
    border-color: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-secondary);
    color: white;
    border-color: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Forms */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-rose);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    font-size: 1.25rem;
}

.form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--error);
}

.form-control {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-rose);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
    background: var(--bg-light);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    position: relative;
}

.booking-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-blush);
    border: 2px solid var(--border-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-medium);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.booking-step.active .booking-step-circle {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 var(--brand-primary);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(183, 110, 121, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(183, 110, 121, 0);
    }
}

.booking-step.completed .booking-step-circle {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.booking-step-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.booking-step.active .booking-step-label {
    color: var(--brand-primary);
    font-weight: 600;
}

.booking-step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: calc(100% + 1rem);
    height: 2px;
    background: var(--border-rose);
    z-index: 5;
}

.booking-step:last-child::after {
    display: none;
}

.booking-step.active~.booking-step::after {
    background: var(--border-rose);
}

/* Alerts */
.alert {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #DBEAFE;
    color: #0C4A6E;
    border: 1px solid var(--success);
}

.alert-error {
    background: #FEE2E2;
    color: #7F1D1D;
    border: 1px solid var(--error);
}

.alert.show {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #92400E;
}

.status-confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #065F46;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #7F1D1D;
}

/* Appointment Detail */
.appointment-hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.checkmark-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.detail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--brand-primary);
}

.detail-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-rose);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 600;
}

/* Before/After Gallery Section (NEW - Unique Visual) */
.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #F8EEEC 100%);
}

.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.before-after-item {
    text-align: center;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    cursor: pointer;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-img-before {
    z-index: 1;
}

.ba-img-after {
    z-index: 2;
    overflow: hidden;
    transition: width 0.1s ease;
}

.ba-slider-handle {
    cursor: col-resize;
}

.ba-label {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
}

/* Product Cards Section (NEW - Revenue Feature) */
.products-section {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-rose);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-blush);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-rose);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Business Info Section */
.business-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    margin-top: 4rem;
}

/* Horizontal Contact Layout */
.info-contact-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.contact-item-simple {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-item-simple i {
    font-size: 2.5rem;
    color: var(--brand-primary);
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.contact-value {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-value-small {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin: 0;
}

.contact-subtext {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Legacy styles for backwards compatibility */
.info-contact-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--brand-primary);
    min-width: 40px;
    text-align: center;
    margin-top: 0.25rem;
}

.contact-item div {
    flex: 1;
}

.contact-item a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--brand-secondary);
}

.info-contact-right {
    display: flex;
    align-items: center;
}

.booking-cta {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.booking-cta h3 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem 0;
    color: white;
}

.booking-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.booking-cta .btn {
    background: white;
    color: var(--brand-primary);
    font-weight: 600;
    width: 100%;
    border: none;
}

.booking-cta .btn:hover {
    background: var(--bg-light);
    transform: none;
}

@media (max-width: 768px) {
    .info-contact-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-contact-horizontal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-cta {
        padding: 2rem 1.5rem;
    }

    .booking-cta h3 {
        font-size: 1.5rem;
    }
}

/* Map */
.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--brand-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    display: inline-block;
}

.footer-powered {
    opacity: 0.6;
    font-size: 0.85rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-call-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-primary);
    border-radius: 4px;
    color: white !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-call-btn:hover {
    background: var(--brand-secondary);
    transform: translateY(-2px);
}

/* Error Pages */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
    opacity: 0.8;
}

.error-content h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Landing Page */
.landing-page {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.landing-content h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.landing-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.landing-form {
    margin-bottom: 2rem;
}

.form-group-landing {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-landing i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-primary);
}

.landing-code {
    padding-left: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .detail-cards {
        grid-template-columns: 1fr;
    }

    .service-filters {
        gap: 0.5rem;
    }

    .filter-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .main-content {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .form-container {
        padding: 1.5rem;
    }

    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .landing-content {
        padding: 2rem;
    }
}

/* Mobile Drawer Navigation */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.mobile-drawer-overlay.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-drawer-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 300px);
    height: 100vh;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    z-index: 100;
    flex-direction: column;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
}

.mobile-drawer-panel.open {
    display: flex;
}

.drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
}

.drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.drawer-link {
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.drawer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.5);
}

.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 50;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-15deg);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Appointment Search Styles */
.search-track-bar {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.search-track-bar input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-rose);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.search-track-bar input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Footer Enhancements */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-powered {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Print Styles */
@media print {

    .site-header,
    .site-footer,
    .main-nav,
    .hamburger,
    .mobile-drawer-overlay,
    .mobile-drawer-panel,
    .whatsapp-float,
    .btn,
    .service-filters {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    .detail-cards {
        grid-template-columns: 1fr;
    }
}