/* =============================================
   BookOasi v2 — Global Stylesheet
   Fresha-inspired, clean & modern
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colors — vibrant electric blue */
    --primary: #0066FF;
    --primary-dark: #0050cc;
    --primary-light: #3d8bff;
    --primary-lighter: #e6f0ff;
    --accent: #c94432;
    --accent-light: #f8e8e6;
    --warm: #e6b44c;
    --warm-light: #fef3d0;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-50: #f0f2f5;
    --gray-100: #e4e7ec;
    --gray-200: #c9ced6;
    --gray-300: #98a2b3;
    --gray-400: #667085;
    --gray-500: #475467;
    --gray-600: #344054;
    --gray-700: #1d2939;
    --black: #0f1419;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Secular One', 'Inter', sans-serif;

    /* Spacing */
    --section-py: 6rem;
    --container-max: 1200px;
    --container-px: 1.5rem;

    /* Misc */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Dynamic Animated Background ---------- */
.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.dynamic-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobMove 20s ease-in-out infinite alternate;
}

.dynamic-bg .blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -5%;
    animation-duration: 22s;
}

.dynamic-bg .blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: 10%;
    left: -8%;
    animation-duration: 26s;
    animation-delay: -5s;
}

.dynamic-bg .blob-3 {
    width: 350px;
    height: 350px;
    background: var(--warm);
    top: 40%;
    right: 20%;
    opacity: 0.15;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes blobMove {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(60px, -40px) scale(1.1); }
    50%  { transform: translate(-30px, 50px) scale(0.95); }
    75%  { transform: translate(40px, 20px) scale(1.05); }
    100% { transform: translate(-20px, -30px) scale(1); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ---------- Section Helpers ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.tag-light {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.navbar.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
}
.logo-icon {
    width: 36px;
    height: 36px;
}
.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--black);
    line-height: 1;
}
.logo-oasi {
    height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 10;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
}
.mobile-menu a:hover {
    color: var(--primary);
}
.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 80%;
    max-width: 280px;
}

/* ==================== HERO ==================== */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.hero > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge { margin-bottom: 1.25rem; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* Search Box */
.hero-search { margin-bottom: 1.5rem; }
.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 0.4rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    max-width: 560px;
}
.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 90, 138, 0.1);
}
.search-icon {
    padding: 0 0.75rem;
    color: var(--gray-300);
    flex-shrink: 0;
}
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--gray-700);
    min-width: 0;
    padding: 0.6rem 0;
    background: transparent;
}
.search-box input::placeholder {
    color: var(--gray-300);
}
.search-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    color: var(--primary);
    cursor: pointer;
    white-space: nowrap;
    border-left: 1px solid var(--gray-100);
    flex-shrink: 0;
}
.search-location:hover {
    color: var(--primary-dark);
}
.search-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    flex-shrink: 0;
}
.search-btn:hover {
    background: var(--primary-dark);
}

/* Tags */
.hero-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tag-label {
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 500;
}
.tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

/* Hero Visual — Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup {
    position: relative;
}

.mockup-phone {
    width: 280px;
    background: var(--white);
    border-radius: 32px;
    border: 3px solid var(--gray-100);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    background: var(--off-white);
    border-radius: 20px;
    padding: 20px;
    min-height: 400px;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.mockup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.mockup-info { flex: 1; }
.mockup-name {
    width: 100px;
    height: 12px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 6px;
}
.mockup-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--warm);
}
.mockup-reviews {
    color: var(--gray-400);
    font-weight: 600;
}

.mockup-services {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.mockup-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}
.mockup-service span:first-child {
    width: 80px;
    height: 10px;
    background: var(--gray-200);
    border-radius: 4px;
}
.mockup-service span:last-child {
    width: 36px;
    height: 10px;
    background: var(--gray-200);
    border-radius: 4px;
}
.mockup-service.active {
    border-color: var(--primary);
    background: var(--primary-lighter);
}
.mockup-service.active span:first-child {
    background: var(--primary);
}
.mockup-service.active span:last-child {
    background: var(--primary-light);
}

.mockup-calendar { margin-bottom: 24px; }
.mockup-days {
    display: flex;
    gap: 6px;
}
.mockup-day {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 10px 4px;
    border-radius: var(--radius-sm);
}
.mockup-day.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mockup-cta {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}
.float-card-1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}
.float-card-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: 1.5s;
}
.float-icon { font-size: 1.25rem; }

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

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-50);
    border-bottom: 1px solid var(--gray-50);
}

.social-proof-text {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.proof-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.proof-value {
    display: flex;
    align-items: baseline;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
}

.proof-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-100);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--white);
}

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

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    background: var(--primary-lighter);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== FEATURES ==================== */
.features {
    padding: var(--section-py) 0;
    background: rgba(248, 249, 251, 0.85);
    backdrop-filter: blur(2px);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== BARBER CTA ==================== */
.barber-cta {
    padding: var(--section-py) 0;
    background: var(--white);
}

.barber-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    overflow: hidden;
    position: relative;
}

.barber-cta-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.barber-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.barber-cta-content p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.barber-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.cta-feature svg {
    flex-shrink: 0;
    color: var(--warm);
}

/* Dashboard Mockup */
.barber-cta-visual {
    position: relative;
    z-index: 1;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-100);
}

.dash-dots {
    display: flex;
    gap: 6px;
}
.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}
.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
}

.dash-body { padding: 20px; }

.dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.dash-stat {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.dash-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-lighter);
    border-radius: 4px 4px 0 0;
    transition: all var(--transition);
}

.chart-bar.active {
    background: var(--primary);
}

.dash-appointments {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-appt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-50);
}

.appt-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    min-width: 40px;
}

.appt-info { flex: 1; }
.appt-name {
    width: 80px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 4px;
}
.appt-service {
    width: 55px;
    height: 8px;
    background: var(--gray-100);
    border-radius: 3px;
}

.appt-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.appt-badge.confirmed {
    background: #ecfdf5;
    color: #059669;
}

.appt-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--section-py) 0;
    background: rgba(248, 249, 251, 0.85);
    backdrop-filter: blur(2px);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gray-100);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--warm);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.author-role {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ==================== APP CTA ==================== */
.app-cta {
    padding: var(--section-py) 0;
    background: var(--white);
}

.app-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1rem;
}

.app-cta-content p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.app-store-btn:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.app-store-btn small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
    line-height: 1.2;
}
.app-store-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Phone mockup simple */
.app-cta-phones {
    display: flex;
    justify-content: center;
}

.phone-mockup-simple {
    width: 260px;
    height: 500px;
    border-radius: 36px;
    border: 3px solid var(--gray-100);
    background: var(--off-white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--white) 50%, var(--primary-lighter) 100%);
    position: relative;
    overflow: hidden;
}
.phone-screen-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.3;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-700);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-accent { color: var(--primary-light); }
.footer-brand .logo { align-items: center; }
.footer-brand .logo-oasi {
    background: #fff;
    border-radius: 6px;
    padding: 3px 7px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links-group li + li {
    margin-top: 0.6rem;
}

.footer-links-group a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links-group a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }

    .hero > .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 2rem; }
    .search-box { max-width: 100%; }
    .hero-tags { justify-content: center; }
    .hero-visual { display: none; }

    .barber-cta-inner {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    .barber-cta-visual { display: none; }

    .app-cta-inner { grid-template-columns: 1fr; text-align: center; }
    .app-buttons { justify-content: center; }
    .app-cta-phones { display: none; }
}

@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .barber-cta-inner { padding: 2rem; }
    .barber-cta-features { grid-template-columns: 1fr; }

    .proof-stats { gap: 1.5rem; }
    .proof-divider { display: none; }

    /* Search box vertical on mobile */
    .search-box {
        flex-wrap: wrap;
    }
    .search-location {
        border-left: none;
        border-top: 1px solid var(--gray-100);
        width: 100%;
        padding: 0.5rem 0.75rem;
        justify-content: center;
    }
    .search-btn {
        width: 100%;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .search-box { flex-direction: column; padding: 0.5rem; }
    .search-icon { display: none; }
    .search-box input { padding: 0.65rem 0.75rem; }
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
    padding: 140px 0 3rem;
    text-align: center;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.content-text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-visual {
    display: flex;
    justify-content: center;
}

/* Story Card */
.story-card {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.story-card-inner {
    text-align: center;
    color: var(--white);
}
.story-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.story-label { font-size: 0.85rem; opacity: 0.8; display: block; }
.story-year {
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: block;
    line-height: 1;
}

/* ==================== TEAM ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
}
.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== VALUES ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-100);
}

.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== PRICING ==================== */
.pricing-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--primary);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.donate-badge {
    background: var(--accent);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--black);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-heart {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.4rem 0;
}

/* Donate */
.donate-amounts {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.donate-amount {
    flex: 1;
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-100);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all var(--transition);
}
.donate-amount:hover,
.donate-amount.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.donate-custom {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
}

.donate-currency {
    padding: 0 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-50);
}

.donate-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.6rem;
    font-size: 0.9rem;
}

.donate-note {
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-top: 0.75rem;
}

/* ==================== CONTACT ==================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-50);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-50);
    transition: all var(--transition);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-card-link {
    font-weight: 600;
    color: var(--primary) !important;
    margin-top: 0.25rem;
}

/* ==================== FAQ ==================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all var(--transition);
    overflow: hidden;
}
.faq-item:hover {
    border-color: var(--gray-100);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-700);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-300);
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    content: '−';
    color: var(--primary);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ==================== BLOG CARDS ==================== */
.blog-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition);
}
.blog-featured:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-100);
}

.blog-featured-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.blog-featured-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-featured-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.blog-date,
.blog-read-time {
    font-size: 0.8rem;
    color: var(--gray-300);
}

.blog-readmore {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-100);
}

.blog-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-coming-soon {
    border-style: dashed;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-card {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--gray-50);
}

.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.newsletter-card > p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input:focus {
    border-color: var(--primary);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: var(--section-py) 0;
}

.final-cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
}

.final-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.final-cta-inner p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-100);
    max-width: 560px;
    margin: 0 auto;
}

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

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== BLOG ARTICLE ==================== */
.blog-article {
    padding: 140px 0 4rem;
}

.blog-article .container {
    max-width: 740px;
}

.article-header {
    margin-bottom: 3rem;
}

.article-back {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}
.article-back:hover {
    color: var(--primary-dark);
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: var(--black);
    margin-top: 0.75rem;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 0.5rem;
}

/* Article Body */
.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}
.article-body ol li { list-style: decimal; }

.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: var(--primary-lighter);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
}

/* Article CTA */
.article-cta {
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.article-cta p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Article Author */
.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-50);
    margin-top: 2rem;
}

.article-author .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 0.7rem;
}

.article-author .author-role {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Legal Article overrides */
.legal-article {
    padding-top: 120px;
}

.legal-article .article-header {
    text-align: center;
}

.legal-article .article-body h2:first-of-type {
    margin-top: 1.5rem;
}

/* ==================== RESPONSIVE (additional) ==================== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-visual { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; text-align: center; }
    .blog-featured-icon { margin: 0 auto; }
    .newsletter-form { flex-direction: column; }
    .final-cta-inner { padding: 3rem 1.5rem; }
    .discover-salon-grid { grid-template-columns: 1fr; }
    .discover-toolbar { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .discover-hero-title { font-size: 2rem; }
}

/* ==================== FEATURED SALONS ==================== */
.featured-salons {
    padding: 0 0 3rem;
    position: relative;
}

.featured-salons-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.featured-salons-header-left {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.featured-salons-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-salons-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-salons-count {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.discover-close-search {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.discover-close-search:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.discover-close-search svg {
    flex-shrink: 0;
}

.featured-salons-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.featured-salons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .featured-salons-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-salons-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .featured-salons-grid { grid-template-columns: 1fr; }
}

/* ==================== DISCOVER PAGE ==================== */
.discover-hero {
    padding-top: 120px;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
}

.discover-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.discover-hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    line-height: 1.15;
    margin: 1rem 0 0.75rem;
}

.discover-hero-subtitle {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.discover-search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 0.35rem 0.35rem 0.35rem 1rem;
    box-shadow: var(--shadow-md);
    max-width: 520px;
    margin: 0 auto;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.discover-search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}

.discover-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    color: var(--gray-300);
}

.discover-search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--black);
    background: transparent;
    padding: 0.5rem 0;
}

.discover-search-input-wrap input::placeholder {
    color: var(--gray-300);
}

.discover-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.discover-location-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.discover-location-btn.locating {
    opacity: 0.6;
    pointer-events: none;
}

/* Results */
.discover-results {
    padding: 2rem 0 4rem;
    min-height: 400px;
}

.discover-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.discover-toolbar-left {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.discover-results-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--black);
}

.discover-results-count {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.discover-toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discover-sort {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.discover-sort select {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.discover-sort select:focus {
    border-color: var(--primary);
}

.discover-view-toggle {
    display: flex;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.discover-view-btn {
    padding: 0.4rem 0.6rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.discover-view-btn + .discover-view-btn {
    border-left: 1px solid var(--gray-100);
}

.discover-view-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Loading */
.discover-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.discover-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Map */
.discover-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.discover-map-container #map {
    height: 400px;
    width: 100%;
}

/* Salon Grid */
.discover-salon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .discover-salon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Salon Card */
.salon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.salon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.salon-card-banner {
    position: relative;
    height: 160px;
    background-color: #1a3a5c;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.04) 10px,
        rgba(255, 255, 255, 0.04) 20px
    );
    overflow: hidden;
}

.salon-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salon-card-placeholder-icon {
    width: 64px;
    height: 64px;
    opacity: 0.85;
}

.salon-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.salon-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.salon-card-desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.salon-card-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.salon-card-stars {
    color: var(--warm);
    letter-spacing: 1px;
}

.salon-card-review-count {
    color: var(--gray-400);
}

.salon-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.salon-card-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.35;
}

.salon-card-meta-item svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.salon-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.salon-card-distance {
    font-size: 0.78rem;
    color: var(--gray-300);
    font-weight: 500;
}

.salon-card-book-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    transition: background var(--transition);
}

.salon-card-book-btn:hover {
    background: var(--primary-dark);
}

/* Empty State */
.discover-empty {
    text-align: center;
    padding: 4rem 1rem;
}

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

.discover-empty h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.discover-empty p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* =============================================
   Service Type Filter & AT_HOME Components
   ============================================= */

/* ---------- Service Type Filter Buttons ---------- */
.service-type-filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.service-type-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.service-type-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter, #e6f0ff);
}

.service-type-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-type-filter-btn.active svg {
    stroke: var(--white);
}

/* ---------- Service Type Badge on Cards ---------- */
.salon-card-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.salon-card-badge.badge-mobile {
    background: rgba(254, 243, 208, 0.92);
    color: #92400e;
}

.salon-card-badge.badge-fixed {
    background: rgba(230, 240, 255, 0.92);
    color: #0050cc;
}

.salon-card-banner {
    position: relative;
}

/* ---------- Mobile Service Info (Booking Page) ---------- */
.mobile-service-info-booking {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1.5px solid #fbbf24;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.mobile-service-badge-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #92400e;
    font-size: 0.88rem;
    font-weight: 600;
}

.mobile-service-badge-inline svg {
    color: #d97706;
    flex-shrink: 0;
}

.service-area-text {
    margin: 0.35rem 0 0 0;
    font-size: 0.82rem;
    color: #78716c;
}
