/* =============================================
   BARBER & CO. — WARM DARK BROWN THEME
   Matches reference design
   ============================================= */

:root {
    --bg-body: #f5f7fb;
    --bg-card: #ffffff;
    --bg-card-light: #f0f4fa;
    --bg-input: #f5f7fb;
    --bg-input-focus: #eef2fa;

    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.1);
    --accent-glow-strong: rgba(37, 99, 235, 0.18);

    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --border-accent: rgba(37, 99, 235, 0.3);

    --whatsapp: #25D366;
    --whatsapp-dark: #1fa855;
    --danger: #e05050;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

    --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;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

input {
    font-family: inherit;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.3px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-cta {
    background: var(--accent);
    color: #ffffff;
    border: none;
}

.btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-cta.active-page {
    background: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
    padding: 120px 0 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image-wrapper {
    flex: 0 0 45%;
}

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

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

.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.badge-star {
    color: var(--accent);
    font-size: 14px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-title em {
    font-style: italic;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   INFO CARDS
   ============================================= */
.info-section {
    padding: 0 0 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

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

.info-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--accent-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.info-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.info-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
}

.info-link:hover {
    color: var(--accent-light);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
}

.section-title em {
    font-style: italic;
    color: var(--text-primary);
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
}

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

.service-card.highlight {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, var(--bg-card), rgba(37, 99, 235, 0.05));
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.service-badge.popular {
    background: var(--accent);
    color: #ffffff;
}

.service-badge.luxury {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.check {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all var(--transition);
}

.btn-service:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-service-highlight {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: #ffffff;
    transition: all var(--transition);
}

.btn-service-highlight:hover {
    background: var(--accent-light);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
    padding: 80px 0;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* =============================================
   VISIT SECTION
   ============================================= */
.visit-section {
    padding: 40px 0 100px;
}

.visit-card {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.visit-content {
    flex: 1;
    padding: 48px;
}

.visit-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.visit-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 380px;
}

.btn-directions {
    border-radius: var(--radius-sm);
}

.visit-image {
    flex: 0 0 40%;
}

.visit-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    pointer-events: none;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--accent);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image-wrapper {
        flex: none;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visit-card {
        flex-direction: column;
    }

    .visit-image {
        flex: none;
        width: 100%;
    }

    .visit-image img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245, 247, 251, 0.95);
        backdrop-filter: blur(16px);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

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

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

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

    .hero-image img {
        height: 280px;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }
}

.logo-icon {
  width: 15%;
  height: 15%;
  object-fit: contain; 
}