@import url('variables.css');
@import url('components.css');
@import url('hero-section.css');
@import url('locations-section.css');
@import url('services-section.css');
@import url('services-highlight.css');
@import url('how-to-book.css');
@import url('footer.css');
@import url('barbers.css');
@import url('location.css');
@import url('tattoo.css');
@import url('contact.css');
@import url('legal.css');
@import url('error.css');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
   background-color:#202b35;
   overflow-x: hidden;
}

/* section {
   background-color: #202b35;
 
} */
/* Announcement Bar - Sleek & Minimal */
.announcement-bar {
    background-color: var(--bs-accent);
    color: var(--bs-primary);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(30, 39, 48, 0.1);
}

.announcement-bar::before,
.announcement-bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.announcement-bar::before {
    left: 0;
    background: linear-gradient(to right, rgba(212,168,10,1), rgba(212,168,10,0));
}

.announcement-bar::after {
    right: 0;
    background: linear-gradient(to left, rgba(212,168,10,1), rgba(212,168,10,0));
}

.announcement-slider {
    position: relative;
    z-index: 1;
    padding: 0 90px; 
    will-change: transform;
    display: flex;
    animation: scroll 25s linear infinite;
}

.announcement-item {
    flex-shrink: 0;
    padding: 0 80px;
    font-weight: 500;
    font-size: 12px;
    font-family: var(--font-heading), 'TwCenMT', 'Tw Cen MT', serif; 
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Main Navigation - Luxury & Modern */
.main-nav {
    background-color: var(--bs-primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 12px 56px rgba(2,8,15,0.35), 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}

/* ========================================
   NAV CONTAINER
   ======================================== */

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-logo img:hover {
    opacity: 0.8;
}

/* ========================================
   NAV LINKS — top-level items only
   > li > a scopes rules so they never
   cascade into the dropdown location items
   ======================================== */

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-nav-logo {
    display: none;
}

.nav-links li {
    position: relative;
}

/* Shared base — top-level anchors and the trigger button only */
.nav-links > li > a,
.dropdown-trigger {
    font-family: var(--font-heading), 'TwCenMT', 'Tw Cen MT', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--bs-white);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Underline — top-level only */
.nav-links > li > a::after,
.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bs-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover + open — trigger stays lit while its menu is open */
.nav-links > li > a:hover,
.dropdown-trigger:hover,
.nav-dropdown.open .dropdown-trigger {
    color: var(--bs-accent);
}

.nav-links > li > a:hover::after,
.dropdown-trigger:hover::after,
.nav-dropdown.open .dropdown-trigger::after {
    width: 100%;
}

/* ========================================
   DROPDOWN ARROW — single source of truth
   ======================================== */

.dropdown-arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU — JS-controlled via .open
   ======================================== */

.nav-dropdown {
    position: static;
}

.dropdown-menu {
    position: fixed;
    top: 80px; /* must match nav height exactly — prevents gap that breaks mouse tracking */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* ========================================
   DROPDOWN CONTENT PANEL
   ======================================== */

.dropdown-content {
    background: linear-gradient(135deg, rgba(24, 31, 38, 0.98) 0%, rgba(32, 43, 53, 0.98) 100%);
    border: 1px solid rgba(253, 193, 12, 0.15);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    display: flex;
    width: 720px;
    backdrop-filter: blur(20px);
}

/* Left — location list */
.dropdown-locations {
    display: flex;
    flex-direction: column;
    background: rgba(20, 26, 32, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 220px;
    padding: 24px 0;
}

.dropdown-header {
    color: var(--bs-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 24px 16px;
    margin-bottom: 8px;
    font-family: var(--font-heading), 'TwCenMT', 'Tw Cen MT', serif;
    border-bottom: 1px solid rgba(253, 193, 12, 0.1);
}

/* ========================================
   LOCATION ITEMS — fully isolated
   No inheritance from .nav-links > li > a
   ======================================== */

.location-item {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-family: var(--font-heading), 'TwCenMT', 'Tw Cen MT', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    position: relative;
    box-sizing: border-box;
    text-align: left;
}

/* Block the top-level underline from ever touching location items */
.location-item::after {
    display: none !important;
}

/* Fill sweep on hover */
.location-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(253, 193, 12, 0.05);
    transition: width 0.3s ease;
}

.location-item:hover {
    color: var(--bs-white);
}

.location-item:hover::before {
    width: 100%;
}

.location-item.active {
    color: var(--bs-accent);
    border-left-color: var(--bs-accent);
    background: rgba(253, 193, 12, 0.08);
}

/* ========================================
   DROPDOWN PREVIEW — right panel
   ======================================== */

.dropdown-preview {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-preview {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    height: 100%;
}

.location-preview.active {
    display: flex;
    opacity: 1;
}

.preview-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(1.05);
}

.preview-footer {
    display: flex;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(20, 26, 32, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.info-icon {
    color: var(--bs-accent);
    flex-shrink: 0;
}

.preview-address,
.preview-phone {
    font-family: var(--font-sans);
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.preview-phone {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ========================================
   NAV ACTIONS
   ======================================== */

.nav-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ========================================
   MOBILE HAMBURGER
   ======================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bs-white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 40px;
    }

    .nav-links {
        gap: 32px;
    }

    .dropdown-content {
        width: 640px;
    }
}

/* ========================================
   RESPONSIVE — 768px mobile nav
   ======================================== */

@media (max-width: 768px) {

    .nav-container {
        padding: 0 20px;
        height: 64px;
        justify-content: space-between;
    }

    .nav-logo img {
        height: 36px;
    }

    /* Hide the Book Now button from the nav actions on mobile */
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 22px;
        padding: 0;
        position: relative;
        z-index: 1003;
        background: none;
        border: none;
        color: var(--bs-white);
        flex-shrink: 0;
    }

    /* backdrop-filter creates a stacking context that traps position:fixed
       children — removing it lets the overlay escape to cover the viewport */
    .main-nav {
        z-index: 1003;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Full-screen overlay — starts below the sticky nav bar so the logo
       and ✕ in the nav bar remain fully visible and perfectly aligned */
    .nav-links {
        display: flex;
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        background-color: var(--bs-primary);
        flex-direction: column;
        gap: 0;
        padding: 0 32px 48px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        z-index: 1002;
        overflow-y: auto;
        justify-content: flex-start;
    }

    /* Hidden — the real nav bar logo + ✕ are always visible above the overlay */
    .mobile-nav-logo {
        display: none !important;
    }

    /* Book Now pinned to the bottom inside the full-screen nav */
    .mobile-book-now {
        display: flex !important;
        justify-content: center;
        margin-top: auto;
        padding-top: 28px;
        border-bottom: none !important;
        flex-shrink: 0;
    }

    .mobile-book-now .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 13px;
        justify-content: center;
        border-radius: 4px;
        background-color: var(--bs-accent) !important;
        color: var(--bs-primary) !important;
        border-color: var(--bs-accent) !important;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Top-level links — larger touch targets */
    .nav-links > li > a,
    .dropdown-trigger {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    /* Trigger keeps flex so arrow stays right-aligned */
    .dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* No underline animation on touch */
    .nav-links > li > a::after,
    .dropdown-trigger::after {
        display: none;
    }

    /* Dropdown — inline accordion */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease,
                    opacity 0.25s ease,
                    visibility 0.25s ease;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 4px;
        margin-top: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: none !important;
        max-height: 400px;
        margin-top: 4px;
        margin-bottom: 8px;
    }

    /* Preview panel hidden on mobile — list only */
    .dropdown-preview {
        display: none !important;
    }

    .dropdown-content {
        flex-direction: column !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .dropdown-locations {
        width: 100%;
        min-width: unset;
        padding: 4px 0;
        background: none;
        border: none;
    }

    .dropdown-header {
        padding: 10px 16px 6px;
        font-size: 9px;
    }

    /* Location items on mobile */
    .location-item {
        padding: 14px 16px;
        font-size: 14px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

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

    .location-item:hover,
    .location-item.active {
        border-left: none;
        background: rgba(253, 193, 12, 0.06);
    }

    /* Disable fill sweep — no hover state on touch */
    .location-item::before {
        display: none;
    }

    /* Announcement bar smaller on mobile */
    .announcement-item {
        font-size: 9px;
        padding: 0 40px;
        letter-spacing: 0.3px;
    }

    .announcement-bar {
        padding: 8px 0;
    }
}

/* === CTA BANNER - iMESSAGE STYLE (refined / compact) === */
.cta-banner-section {
    background-color: var(--bs-primary-dark);
    padding: 40px 0;            /* much smaller height — acts as a divider */
    position: relative;
    overflow: visible;
    margin: -40px 0;            /* small overlap with neighbor sections */
    z-index: 10;
    clip-path: polygon(
        0 6%,
        45% 6%,
        50% 0%,
        55% 6%,
        100% 6%,
        100% 94%,
        55% 94%,
        50% 100%,
        45% 94%,
        0 94%
    );
}

.cta-banner-section::before {
        content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(236, 246, 253, 0.01) 600px,
    rgba(236, 246, 253, 0.01) 20px
  );
    pointer-events: none;
}

/* Container kept centered and compact */
.cta-banner-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Thin framed wrapper around the bubbles */
.message-thread-wrapper {
    position: relative;
    padding: 18px 20px;        /* compact padding */
    margin: 0 auto 12px;       /* smaller bottom spacing */
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    max-width: 760px;
    box-shadow: none;
}

/* Clean centered thread with narrower bubbles */
.message-thread {
    display: flex;
    flex-direction: column;
    gap: 10px;                 /* bubbles closer together */
    padding: 6px 8px;
    max-width: 520px;          /* narrower thread */
    margin: 0 auto;
}

/* compact bubble style */
.message-bubble {
    width: clamp(220px, 48%, 320px); /* tighter, more consistent widths */
    padding: 12px 16px;
    border-radius: 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    letter-spacing: 0.2px;
}

/* Left bubbles — accent colour */
.message-bubble.left {
    background: var(--bs-accent);
    color: var(--bs-primary);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

/* Right bubbles — white */
.message-bubble.right {
    background: var(--bs-white);
    color: var(--bs-primary);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

/* short staggered reveals (kept subtle) */
.message-bubble[data-delay="1"] { animation-delay: 0.12s; }
.message-bubble[data-delay="2"] { animation-delay: 0.28s; }
.message-bubble[data-delay="3"] { animation-delay: 0.44s; }

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

/* Overlapping headline — use same scale / treatment as other section headings */
.cta-headline-wrapper {
    position: relative;
    margin: -32px 0 12px;      /* negative margin to overlap the bubble container */
    z-index: 4;
    pointer-events: none;
}





.services-header-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    margin-bottom: 16px;
}



/* match services / locations heading scale for visual parity */
.cta-headline {
    font-family: var(--font-display);
    color: var(--bs-accent);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 3px 8px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* script emphasis sits overlapping and in white */
.cta-headline-emphasis {
      font-family: var(--font-style);
    color: var(--bs-white);
    font-size: clamp(3.5rem, 4vw, 5rem);
    font-weight: 400;
    margin: 0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.7),
        0 3px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* small helper line */
.cta-subline {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin: 6px auto 18px;
    max-width: 480px;
}



/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .cta-banner-section { padding: 36px 0; margin: -28px 0; }
    .message-thread-wrapper { padding: 14px 16px; margin-bottom: 10px; }
    .message-thread { max-width: 420px; gap: 8px; }
    .message-bubble { width: clamp(200px, 62%, 300px); padding: 10px 14px; font-size: 14px; }
    .cta-headline { font-size: clamp(3.5rem, 9vw, 5rem); margin: -26px 0 8px; }
    .cta-headline-emphasis { font-size: clamp(2.8rem, 7vw, 4rem); margin-top: -6px; }
}

@media (max-width: 480px) {
    .cta-banner-section { padding: 28px 0; margin: -20px 0; }
    .message-thread { max-width: 320px; }
    .message-bubble { width: 100%; }
    .cta-headline { font-size: clamp(3rem, 10vw, 4rem); margin: -20px 0 6px; }
    .cta-headline-emphasis { font-size: clamp(2.4rem, 8vw, 3.2rem); }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: var(--bs-primary);
    padding: var(--space-3xl) 0;  /* Reduced from 4xl */
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-xl);  /* Reduced from 2xl */
}

.testimonials-header-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    margin-bottom: var(--space-md);
}

.testimonials-heading {
    font-family: var(--font-display);
    color: var(--bs-accent);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: var(--shadow-text);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonials-heading-script {
    font-family: var(--font-style);
    color: var(--bs-white);
    font-size: clamp(3.5rem, 4vw, 5rem);
    font-weight: 400;
    margin: 0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: var(--shadow-text-strong);
    z-index: 2;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.testimonials-subheading {
    font-family: var(--font-sans);
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
    text-align: center;
    max-width: 520px;
}

/* Rating Stats - Smaller like hero */
.testimonials-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);  /* Reduced from 3xl */
    flex-wrap: wrap;
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 6px;  /* Tighter spacing */
}



/* Scrolling Rows Container */
.testimonials-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);  /* Reduced from lg */
    position: relative;
}


.testimonials-row {
    display: flex;
    gap: var(--space-md);  /* Reduced from lg */
    overflow: hidden;
    position: relative;
}

/* Auto-scroll animations */
.testimonials-row-right .testimonials-track {
    animation: scrollRight 60s linear infinite;
}

.testimonials-row-left .testimonials-track {
    animation: scrollLeft 60s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.testimonials-row:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonials-track {
    display: flex;
    gap: var(--space-md);  /* Reduced from lg */
    padding: 0 var(--space-xl);
}

/* Testimonial Card - Smaller & More Compact */
.testimonial-card {
    flex: 0 0 340px;  /* Reduced from 420px */
    background: var(--bs-primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: var(--space-lg);  /* Reduced from xl */
    display: flex;
    flex-direction: column;
    gap: var(--space-md);  /* Reduced from lg */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--bs-accent) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card:hover::after {
    opacity: 1;
}

/* Rating at Top */
.testimonial-rating {
    display: flex;
    gap: 3px;
    font-size: 14px;  /* Smaller stars */
    color: var(--bs-accent);
    opacity: 0.9;
}

/* Review Text - More Compact */
.testimonial-text {
    font-family: var(--font-sans);
    font-size: 14px;  /* Reduced from 15px */
    line-height: 1.6;  /* Tighter line-height */
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    flex: 1;
    letter-spacing: 0.2px;
}

/* Customer Info */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: var(--space-sm);  /* Reduced from md */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 13px;  /* Slightly smaller */
    font-weight: 600;
    color: var(--bs-white);
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
}

.author-location {
    font-family: var(--font-sans);
    font-size: 11px;  /* Slightly smaller */
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .testimonials-heading {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }

    .testimonials-heading-script {
        font-size: clamp(3rem, 6vw, 4rem);
        bottom: -12px;
    }
    
    .testimonials-stats {
        gap: var(--space-sm);
    }
    
    .testimonials-rows::before,
    .testimonials-rows::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--space-2xl) 0;  /* Further reduced */
    }
    
    .testimonials-container {
        padding: 0 var(--space-lg);
    }
    
    .testimonials-header {
        margin-bottom: var(--space-lg);
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 4px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .testimonials-track {
        padding: 0 var(--space-lg);
        gap: var(--space-sm);
    }
    
    .testimonial-card {
        flex: 0 0 300px;  /* Smaller on mobile */
        padding: var(--space-md);
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .testimonials-rows::before,
    .testimonials-rows::after {
        width: 60px;
    }
}

@media (max-width: 600px) {
    .testimonials-heading {
        font-size: clamp(3rem, 18vw, 4rem);
    }

    .testimonials-heading-script {
        font-size: clamp(2.6rem, 8vw, 3.5rem);
        bottom: -10px;
    }
    
    .testimonials-subheading {
        font-size: 14px;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .stat-stars {
        font-size: 13px;
    }
    
    .stat-text {
        font-size: 11px;
    }
    
    .testimonials-rows::before,
    .testimonials-rows::after {
        width: 40px;
    }
}

/* === BARBERS SECTION === */
.barbers-section {
    background: var(--bs-primary-dark);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.barbers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Header */
.barbers-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.barbers-header-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    margin-bottom: var(--space-md);
}

.barbers-heading {
    font-family: var(--font-display);
    color: var(--bs-accent);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: var(--shadow-text);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.barbers-heading-script {
    font-family: var(--font-style);
    color: var(--bs-white);
    font-size: clamp(3.5rem, 4vw, 5rem);
    font-weight: 400;
    margin: 0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: var(--shadow-text-strong);
    z-index: 2;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.barbers-subheading {
    font-family: var(--font-sans);
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: var(--space-sm) auto 0;
    line-height: 1.6;
    text-align: center;
    max-width: 560px;
}

/* Scrolling Container Wrapper */
.barbers-scroll-wrapper {
    position: relative;
    margin: 0 calc(-1 * var(--space-xl));
}

.barbers-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--bs-primary-dark) 0%,
        rgba(37, 47, 58, 0.8) 30%,
        transparent 100%
    );
}

.barbers-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--bs-primary-dark) 0%,
        rgba(37, 47, 58, 0.8) 30%,
        transparent 100%
    );
}

/* Horizontal Scroll Container */
.barbers-scroll {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: var(--space-md) var(--space-xl) var(--space-2xl);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.barbers-scroll::-webkit-scrollbar {
    display: none;
}

.barbers-scroll:active {
    cursor: grabbing;
}

/* Barber Card */
.barber-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3 / 4;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.barber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 1;
    transition: opacity var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.barber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.barber-card:hover::before {
    opacity: 0.9;
}

/* Barber Image */
.barber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.barber-card:hover .barber-image {
    transform: scale(1.05);
}

/* Barber Info Overlay */
.barber-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 2;
    transform: translateY(0);
    transition: transform var(--transition-smooth);
}

.barber-card:hover .barber-info {
    transform: translateY(-4px);
}

.barber-name {
    font-family: var(--font-style);
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--bs-accent);
    font-weight: 400;
    margin: 0 0 4px 0;
    line-height: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.barber-location {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--bs-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* Navigation Arrows (Desktop) */
.barbers-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.barbers-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 18px;
}

.barbers-nav-btn:hover {
    background: rgba(253, 193, 12, 0.15);
    border-color: var(--bs-accent);
    color: var(--bs-accent);
    transform: scale(1.05);
}

.barbers-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Scroll Progress Dots */
.barbers-progress {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: 1rem;
}

.barbers-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.barbers-progress-dot.active {
    background: var(--bs-accent);
    width: 24px;
}

/* === RESPONSIVE === */
@media (min-width: 1024px) {
    .barbers-nav {
        display: flex;
    }
    
    .barber-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 900px) {
    .barbers-heading {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }

    .barbers-heading-script {
        font-size: clamp(3rem, 6vw, 4rem);
        bottom: -12px;
    }
    
    .barbers-scroll-wrapper::before,
    .barbers-scroll-wrapper::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .barbers-section {
        padding: var(--space-3xl) 0;
    }
    
    .barbers-container {
        padding: 0 var(--space-lg);
    }
    
    .barbers-header {
        margin-bottom: var(--space-lg);
    }
    
    .barbers-scroll-wrapper {
        margin: 0 calc(-1 * var(--space-lg));
    }
    
    .barbers-scroll {
        padding: var(--space-sm) var(--space-lg) var(--space-xl);
        gap: var(--space-md);
    }
    
    .barber-card {
        flex: 0 0 280px;
    }
    
    .barber-info {
        padding: var(--space-md);
    }
    
    .barber-name {
        font-size: 1.8rem;
    }
    
    .barber-location {
        font-size: 11px;
    }
    
    .barbers-scroll-wrapper::before,
    .barbers-scroll-wrapper::after {
        width: 40px;
    }
}

@media (max-width: 600px) {
    .barbers-heading {
        font-size: clamp(3rem, 18vw, 4rem);
    }

    .barbers-heading-script {
        font-size: clamp(2.6rem, 8vw, 3.5rem);
        bottom: -10px;
    }
    
    .barbers-subheading {
        font-size: 14px;
    }
    
    .barber-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .barber-card {
        flex: 0 0 240px;
        aspect-ratio: 3 / 4.2;
    }
    
    .barber-info {
        padding: var(--space-sm) var(--space-md);
    }
    
    .barber-name {
        font-size: 1.6rem;
    }
    
    .barber-location {
        font-size: 10px;
    }
    
    .barbers-progress {
        margin-top: var(--space-lg);
    }
    
    .barbers-scroll-wrapper::before,
    .barbers-scroll-wrapper::after {
        width: 30px;
    }
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--bs-primary);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.faq-header-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    margin-bottom: var(--space-md);
}

.faq-heading {
    font-family: var(--font-display);
    color: var(--bs-accent);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: var(--shadow-text);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.faq-heading-script {
    font-family: var(--font-style);
    color: var(--bs-white);
    font-size: clamp(3.5rem, 4vw, 5rem);
    font-weight: 400;
    margin: 0;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: var(--shadow-text-strong);
    z-index: 2;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.faq-subheading {
    font-family: var(--font-sans);
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: var(--space-lg) auto 0;
    line-height: 1.6;
    text-align: center;
    max-width: 560px;
}

/* FAQ Category Navigation */
.faq-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.faq-nav-btn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-nav-btn:hover {
    color: var(--bs-white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.faq-nav-btn.active {
    color: var(--bs-primary);
    background: var(--bs-accent);
    border-color: var(--bs-accent);
}

/* FAQ Groups */
.faq-groups {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/* .faq-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
    transparent 0%, 
    var(--bs-accent) 50%, 
    transparent 100%
  );
} */

/* FAQ Group */
/* .faq-group {
    background: var(--bs-primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    scroll-margin-top: 100px;
} */

.faq-group-title {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--bs-accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 var(--space-lg);
    display: block;
}

/* FAQ Items - Two Column Grid */
.faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

/* FAQ Item */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    border-color: rgba(253, 193, 12, 0.2);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(253, 193, 12, 0.05);
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--bs-white);
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--bs-accent);
    transition: all var(--transition-base);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: var(--space-lg) var(--space-md);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* FAQ Contact Callout */
.faq-contact-callout {
    margin-top: var(--space-2xl);
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(253, 193, 12, 0.05);
    border: 1px solid rgba(253, 193, 12, 0.15);
    border-radius: 4px;
}

.faq-callout-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--bs-white);
    font-weight: 600;
    margin: 0 0 var(--space-md);
    letter-spacing: 0.3px;
}

.faq-callout-subtext {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--space-lg);
    line-height: 1.6;
}



/* === RESPONSIVE === */
@media (max-width: 900px) {
    .faq-heading {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }

    .faq-heading-script {
        font-size: clamp(3rem, 6vw, 4rem);
        bottom: -12px;
    }
    
    .faq-items {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--space-3xl) 0;
    }
    
    .faq-container {
        padding: 0 var(--space-lg);
    }
    
    .faq-header {
        margin-bottom: var(--space-xl);
    }
    
    .faq-nav {
        gap: var(--space-sm);
        margin-bottom: var(--space-2xl);
    }
    
    .faq-nav-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .faq-groups {
        gap: var(--space-xl);
    }
    

    
    .faq-items {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: var(--space-sm) var(--space-md);
    }
    
    .faq-question-text {
        font-size: 13px;
    }
    
    .faq-answer-content {
        padding: 0 var(--space-md) var(--space-sm);
        font-size: 12px;
    }
    
    .faq-contact-callout {
        padding: var(--space-xl);
    }
    
    .faq-callout-text {
        font-size: 15px;
    }
    
    .faq-callout-subtext {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .faq-heading {
        font-size: clamp(3rem, 18vw, 4rem);
    }

    .faq-heading-script {
        font-size: clamp(2.6rem, 8vw, 3.5rem);
        bottom: -10px;
    }
    
    .faq-subheading {
        font-size: 14px;
    }
    
    .faq-group-title {
        font-size: 10px;
    }
    
    .faq-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-nav-btn {
        width: 100%;
        text-align: center;
    }
}

.gallery-section {
    background: var(--bs-primary-dark);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center; /* Changed from stretch to center for vertical alignment */
}

.gallery-item {
    background: var(--bs-primary-dark);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    display: block;
    aspect-ratio: 3 / 4;
    transition: transform 0.3s ease;
}

/* Middle gallery item - 20% lower */
.gallery-item:nth-child(2) {
    transform: translateY(15%);
}



/* image fills tile, simple and consistent */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* responsive: 2 cols then 1 col */
@media (max-width: 1000px) {
    .gallery-container { 
        grid-template-columns: repeat(2, 1fr); 
        padding: 0 28px; 
        gap: 16px; 
    }
    .gallery-item { 
        border-radius: 6px; 
    }
    
    /* Reset middle item transform on smaller screens */
    .gallery-item:nth-child(2) {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .gallery-container { 
        grid-template-columns: 1fr; 
        padding: 0 20px; 
        gap: 12px; 
    }
    .gallery-item { 
        border-radius: 8px; 
    }
}


/* ========================================
   BARBER HELP SECTION
   ======================================== */


.barber-help-intro {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: var(--space-xl) auto var(--space-2xl);
    font-weight: 400;
    max-width: 700px;

    text-align: center;
}

.barber-help-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.barber-help-card {
    background: var(--bs-primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.barber-help-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    background: rgba(32, 43, 53, 0.5);
}

.barber-help-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.barber-help-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: var(--bs-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.barber-help-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-white);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.barber-help-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.barber-help-link {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--bs-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.barber-help-link:hover {
    color: var(--bs-white);
    gap: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    
    .barber-help-intro {
        font-size: 14px;
        margin-bottom: var(--space-xl);
    }
    
    .barber-help-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .barber-help-card {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .barber-help-intro {
        font-size: 13px;
    }
    
    .barber-help-title {
        font-size: 16px;
    }
    
    .barber-help-desc {
        font-size: 13px;
    }
}
