/* =============================================================
   LUMINA Estetikos Studija - Boutique Editorial Styling
   Pure craftsmanship. No AI Slop. No synthetic neons.
   ============================================================= */

:root {
    --bg-page: #FAF8F5;
    --bg-card: #FFFFFF;
    --bg-muted: #F4EFEA;
    --bg-surface: #EDE7DE;
    --text-primary: #1E1B18;
    --text-secondary: #5C5650;
    --text-muted: #8C847C;
    --accent-gold: #B89260;
    --accent-gold-hover: #9E7949;
    --accent-gold-subtle: #FBF7F0;
    --accent-dark: #1A1715;
    --border-color: #E8E2D8;
    --border-hover: #D4CBC0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 4px 24px -2px rgba(30, 27, 24, 0.04);
    --shadow-hover: 0 12px 36px -4px rgba(30, 27, 24, 0.08);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Prototype Bar */
.gw-demo-banner {
    background-color: #111827;
    color: #F9FAFB;
    padding: 0.45rem 1.25rem;
    font-size: 0.82rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 42px;
    display: flex;
    align-items: center;
}

.gw-demo-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.gw-badge {
    background-color: rgba(184, 146, 96, 0.25);
    color: #E2C29B;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.gw-text strong {
    color: #fff;
}

.gw-demo-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.gw-demo-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gw-btn {
    background-color: #fff;
    color: #111827;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gw-btn:hover {
    background-color: #E5E7EB;
}

.gw-admin-link {
    color: #94A3B8;
    font-size: 0.76rem;
    font-weight: 500;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.gw-admin-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.08);
}

.gw-admin-text-mobile {
    display: none;
}

.gw-btn-mobile {
    display: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6.5rem 0;
}

/* Typography Helpers */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.18;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc, .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
}

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

.section-header-center .section-desc,
.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--text-primary);
    color: #FAF8F5;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(184, 146, 96, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-card);
}

.btn-light {
    background-color: #FAF8F5;
    color: var(--text-primary);
}

.btn-light:hover {
    background-color: #fff;
    transform: translateY(-1px);
}

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

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(250, 248, 245, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 42px;
    z-index: 1000;
    transition: all 0.2s ease;
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-phone svg {
    color: var(--accent-gold);
}

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

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    padding: 5.5rem 0 4.5rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(184, 146, 96, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.85rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.25rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.75rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-rating {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.stat-rating .stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.stat-rating .stat-num {
    font-weight: 700;
    font-size: 0.95rem;
}

.stat-highlight {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

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

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.hero-floating-card {
    position: absolute;
    bottom: -1.75rem;
    left: -1.75rem;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 380px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

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

.floating-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.floating-subtitle {
    font-size: 0.75rem;
    color: #16A34A;
    font-weight: 600;
}

.floating-btn {
    background-color: var(--accent-gold-subtle);
    color: var(--accent-gold);
    border: 1px solid rgba(184, 146, 96, 0.3);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.floating-btn:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

/* About / Experience Section */
.about-section {
    background-color: var(--bg-muted);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
}

.about-visuals {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius-md);
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    width: 85%;
}

.about-img-sub {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--bg-muted);
}

.about-img-sub img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.feat-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.about-quote {
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}

.quote-author {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.65rem;
}

/* Services & Tabs */
.services-section {
    background-color: var(--bg-page);
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.45rem;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

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

.tab-btn.active {
    background-color: var(--text-primary);
    color: #FAF8F5;
    border-color: var(--text-primary);
}

.services-tab-content {
    display: none;
}

.services-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-row {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-soft);
}

.service-row:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

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

.service-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-popular-badge {
    background-color: var(--accent-gold-subtle);
    color: var(--accent-gold);
    border: 1px solid rgba(184, 146, 96, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.45rem;
}

.service-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Masters / Specialists */
.masters-section {
    background-color: var(--bg-muted);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.master-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.master-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.master-img-wrap {
    overflow: hidden;
    aspect-ratio: 1/1;
}

.master-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.master-card:hover .master-img-wrap img {
    transform: scale(1.03);
}

.master-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.master-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.master-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    margin-bottom: 0.85rem;
}

.master-bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Gallery */
.gallery-section {
    background-color: var(--bg-page);
}

.instagram-link {
    color: var(--accent-gold);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.item-wide {
    grid-column: span 2;
}

/* Reviews */
.reviews-section {
    background-color: var(--bg-muted);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #F59E0B;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.author-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Voucher Box */
.voucher-section {
    padding: 5rem 0;
    background-color: var(--bg-page);
}

.voucher-box {
    background: linear-gradient(135deg, #1E1B18 0%, #2A241F 100%);
    border-radius: var(--radius-lg);
    padding: 4.5rem 3.5rem;
    color: #FAF8F5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.voucher-box::after {
    content: '✦';
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 8rem;
    color: rgba(184, 146, 96, 0.08);
    pointer-events: none;
}

.voucher-content {
    max-width: 620px;
    margin: 0 auto;
}

.eyebrow-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.voucher-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.voucher-desc {
    color: #D4CBC0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Contact & Location */
.contact-section {
    background-color: var(--bg-page);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.25rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-muted);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

.nav-links-row {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.nav-app-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 146, 96, 0.2);
}

.nav-app-link:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #F0FDF4;
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    min-height: 440px;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    display: block;
}

.map-overlay-card {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 1.15rem 1.5rem;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border-color);
    z-index: 10;
}

.map-overlay-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
}

.map-overlay-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: #FAF8F5;
    padding: 5rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: #A8A29E;
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.65;
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links h4, .footer-social h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links a, .footer-social a {
    color: #A8A29E;
    font-size: 0.92rem;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #78716C;
}

.gw-crafted a {
    color: var(--accent-gold);
    font-weight: 600;
}

/* =============================================================
   24/7 Booking Modal Styles
   ============================================================= */
.booking-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 27, 24, 0.65);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.booking-modal-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    padding: 2.75rem 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-backdrop.active .booking-modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background-color: var(--bg-muted);
    color: var(--text-primary);
}

/* Steps Indicator */
.booking-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.step-indicator.active {
    opacity: 1;
}

.step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.step-line {
    width: 30px;
    height: 1px;
    background-color: var(--border-color);
}

.modal-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.modal-subheading {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* Service Options in Modal */
.booking-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.booking-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.booking-service-item:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-muted);
}

.booking-service-item:has(input:checked) {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
}

.booking-service-item input {
    margin-right: 0.5rem;
    accent-color: var(--accent-gold);
}

.item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.item-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Specialist Radio */
.form-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.specialist-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.specialist-radio {
    cursor: pointer;
}

.specialist-radio input {
    display: none;
}

.spec-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s;
}

.specialist-radio:hover .spec-card {
    background-color: var(--bg-muted);
}

.specialist-radio input:checked + .spec-card {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-subtle);
    box-shadow: 0 0 0 1px var(--accent-gold);
}

.spec-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.4rem;
}

.spec-avatar.any-spec {
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.spec-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.spec-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Date Selector */
.date-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.date-chip {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.65rem 0.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s;
}

.date-chip:hover {
    border-color: var(--text-primary);
}

.date-chip.active {
    background-color: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
}

.day-name {
    font-size: 0.75rem;
    font-weight: 500;
}

.day-date {
    font-size: 0.88rem;
    font-weight: 700;
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.time-slot {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
}

.time-slot:hover {
    border-color: var(--text-primary);
}

.time-slot.active {
    background-color: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.time-slot.booked,
.time-slot:disabled {
    background-color: #F3F4F6;
    border-color: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.65;
}

.time-slot.booked:hover,
.time-slot:disabled:hover {
    border-color: #E5E7EB;
    background-color: #F3F4F6;
}

.time-slot .slot-status-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    margin-top: 2px;
}

.time-slot.booked .slot-status-tag {
    color: #DC2626;
}

/* Step 3 Form */
.booking-summary-box {
    background-color: var(--bg-muted);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.s-label {
    color: var(--text-muted);
}

.s-val {
    font-weight: 600;
    color: var(--text-primary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--text-primary);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

/* Success View */
.success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ECFDF5;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem auto;
}

#booking-success {
    text-align: center;
}

.sms-preview-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: left;
    margin: 1.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sms-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748B;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sms-text {
    font-size: 0.92rem;
    color: #1E293B;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-visuals {
        max-width: 500px;
        margin: 0 auto;
    }

    .masters-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Compact GreitasWeb Demo Banner */
    .gw-demo-banner {
        padding: 0.32rem 0.85rem;
        min-height: 32px;
    }

    .gw-demo-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .gw-text {
        display: none !important;
    }

    .gw-badge {
        font-size: 0.66rem;
        padding: 0.18rem 0.5rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .gw-btn {
        font-size: 0.72rem;
        padding: 0.22rem 0.65rem;
        white-space: nowrap;
    }

    .gw-btn-full {
        display: none;
    }

    .gw-btn-mobile {
        display: inline;
    }

    .gw-admin-link {
        font-size: 0.7rem;
        padding: 0.18rem 0.45rem;
    }

    /* Compact Sticky Header & Nav */
    .header {
        top: 32px;
    }

    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }

    .logo-title {
        font-size: 1.45rem;
        letter-spacing: 0.08em;
    }

    .logo-subtitle {
        font-size: 0.52rem;
        letter-spacing: 0.16em;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    /* Round Phone Icon Button */
    .nav-phone {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: var(--accent-gold-subtle);
        border: 1px solid rgba(184, 146, 96, 0.28);
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .nav-phone svg {
        width: 17px;
        height: 17px;
    }

    .nav-phone:hover,
    .nav-phone:active {
        background-color: var(--accent-gold);
    }

    .nav-phone:hover svg,
    .nav-phone:active svg {
        color: #fff;
    }

    .nav-phone .phone-number {
        display: none !important;
    }

    .open-booking-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.82rem;
        white-space: nowrap;
        gap: 0.25rem;
    }

    .mobile-toggle {
        display: flex;
        padding: 4px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #FAF8F5;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        gap: 1.15rem;
    }

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

    .container {
        padding: 0 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
    }

    .hero-title {
        font-size: 2.35rem;
        line-height: 1.15;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.75rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding-top: 1.25rem;
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 0;
        text-align: left;
    }

    .stat-highlight {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .stat-rating .stars {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .stat-rating .stat-num {
        font-size: 0.8rem;
    }

    .hero-location-badge {
        max-width: 100%;
        font-size: 0.76rem;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
    }

    .hero-floating-card {
        position: static;
        margin-top: 1.25rem;
        width: 100%;
        max-width: 100%;
        padding: 1.15rem 1rem;
        gap: 0.85rem;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

    .hero-floating-card .floating-btn {
        width: 100%;
        margin-top: 0.25rem;
    }

    .section-title {
        font-size: 2.1rem;
        overflow-wrap: break-word;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.25rem 1rem;
        width: 100%;
    }

    .service-action {
        width: 100%;
        justify-content: space-between;
    }

    .masters-grid {
        width: 100%;
        max-width: 100%;
    }

    .master-card {
        width: 100%;
    }

    .master-content {
        padding: 1.35rem 1.15rem;
    }

    .reviews-grid {
        width: 100%;
        max-width: 100%;
    }

    .about-visuals {
        width: 100%;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.item-wide {
        grid-column: span 2;
    }

    .voucher-box {
        padding: 2.75rem 1.25rem;
    }

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

    .booking-modal-card {
        padding: 2rem 1.25rem;
    }

    .map-overlay-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .map-overlay-card .btn {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .gw-demo-banner {
        padding: 0.25rem 0.5rem;
    }

    .gw-badge {
        font-size: 0.62rem;
        padding: 0.15rem 0.4rem;
    }

    .gw-admin-link {
        font-size: 0.66rem;
        padding: 0.15rem 0.35rem;
    }

    .gw-admin-text-full {
        display: none;
    }

    .gw-admin-text-mobile {
        display: inline;
    }

    .gw-btn {
        font-size: 0.66rem;
        padding: 0.18rem 0.45rem;
    }

    .btn-time-tag {
        display: none;
    }

    .logo-title {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.46rem;
    }

    .open-booking-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.78rem;
    }

    .nav-phone {
        width: 34px;
        height: 34px;
    }

    .nav-phone svg {
        width: 15px;
        height: 15px;
    }

    .nav-actions {
        gap: 0.35rem;
    }
}
