/* =====================================================
   FixUp Hair – Main Stylesheet
   Dark luxury theme: Charcoal + Gold
   ===================================================== */

/* ── Variables ── */
:root {
    --gold:        #c9a84c;
    --gold-light:  #e4c97e;
    --gold-dark:   #a07830;
    --dark:        #0f0f0f;
    --dark-2:      #1a1a1a;
    --dark-3:      #242424;
    --dark-alt:    #161616;
    --text:        #e8e8e8;
    --text-muted:  #aaa;
    --border:      #2e2e2e;
    --white:       #ffffff;
    --wa-green:    #25d366;
    --wa-dark:     #128c7e;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 8px 32px rgba(0,0,0,.45);
    --shadow-sm:   0 4px 16px rgba(0,0,0,.3);
    --trans:       .25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

.text-gold { color: var(--gold) !important; }
.bg-gold   { background: var(--gold) !important; }
.bg-dark-subtle { background: var(--dark-3) !important; }

/* ── Top Bar ── */
.topbar {
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: .8rem;
}
.topbar-link {
    color: var(--text-muted);
    transition: color var(--trans);
}
.topbar-link:hover { color: var(--gold); }
.topbar-sep { color: var(--border); margin: 0 10px; }
.lang-toggle {
    color: var(--gold);
    font-weight: 600;
    font-size: .8rem;
    border: 1px solid var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    transition: all var(--trans);
}
.lang-toggle:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ── Navbar Language Pill Switcher ── */
.lang-pill-switcher {
    display: flex;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(201,168,76,.35);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}
.lang-pill {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    color: rgba(255,255,255,.55) !important;
    transition: all var(--trans);
    white-space: nowrap;
}
.lang-pill:hover { color: var(--white) !important; }
.lang-pill-active {
    background: var(--gold) !important;
    color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(201,168,76,.4);
}

/* ── Hero Language Switcher ── */
.hero-lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(201,168,76,.3);
    border-radius: 50px;
    padding: 6px 6px 6px 18px;
}
.hero-lang-label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
}
.hero-lang-pills {
    display: flex;
    gap: 4px;
}
.hero-lang-pill {
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.6) !important;
    transition: all var(--trans);
    white-space: nowrap;
}
.hero-lang-pill:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,.1);
}
.hero-lang-pill.active {
    background: var(--gold);
    color: var(--dark) !important;
    box-shadow: 0 3px 14px rgba(201,168,76,.45);
}

/* ── Navbar ── */
#mainNav {
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all var(--trans);
}
#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.nav-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}
.navbar-nav .nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all var(--trans);
    letter-spacing: .3px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201,168,76,.08);
}

/* ── Buttons ── */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark) !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: .6rem 1.8rem;
    transition: all var(--trans);
    letter-spacing: .4px;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
    color: var(--dark) !important;
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: .6rem 1.8rem;
    font-weight: 600;
    transition: all var(--trans);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.btn-wa {
    background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-dark) 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: .6rem 1.8rem;
    transition: all var(--trans);
}
.btn-wa:hover {
    background: linear-gradient(135deg, #2eeb72 0%, var(--wa-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
    color: #fff !important;
}
.nav-wa-btn { font-size: .85rem; padding: .45rem 1.2rem !important; }

/* ── Hero ── */
.hero {
    position: relative;
    background: var(--dark);
    display: flex;
    align-items: center;
}
/* Full image — natural size, not cropped */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    display: block;
}
/* Push hero to be at least as tall as the image's natural ratio */
.hero::before {
    content: '';
    display: block;
    width: 100%;
    /* Use padding-top trick to match the image's aspect ratio.
       fixuphair shower.jpg natural ratio: adjust if needed */
    padding-top: max(100vh, 56.25vw);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100%);
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}
.min-vh-hero { min-height: unset; }

.hero-badge {
    background: rgba(201,168,76,.18);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    line-height: 1.75;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 40px 0; }
.bg-dark-alt    { background: var(--dark-alt); }

.section-header { }
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* ── Brand Showcase ── */
.brand-showcase { background: var(--dark-alt); }
.brand-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s ease;
}
.brand-showcase-img:hover { transform: scale(1.02); }

/* ── Feature Cards ── */
.feature-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: all var(--trans);
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,.12);
    border: 1.5px solid rgba(201,168,76,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}
.feature-title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.feature-desc  { font-size: .88rem; }

/* ── Swim Banner ── */
.swim-banner { background: var(--dark-2); overflow: hidden; }
.swim-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.swim-content { background: var(--dark-3); }
.swim-title { font-size: 1.9rem; font-weight: 700; }
.swim-text  { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ── Product Cards ── */
.product-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
}
.product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.03); }
.product-body { flex: 1; display: flex; flex-direction: column; }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wa-green);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.badge-gold  { background: var(--gold); color: var(--dark); }
.badge-dark  { background: var(--dark-3); border: 1px solid var(--border); color: var(--text); }
.product-body { padding: 1.4rem; }
.product-title { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.product-desc  { font-size: .85rem; line-height: 1.6; }
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* ── Gallery ── */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark-3);
    cursor: pointer;
}
.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    opacity: 0;
    transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .8rem; font-weight: 600; }

/* ── Models Section ── */
.models-grid { position: relative; }
.models-img-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.models-img-sm {
    width: 60%;
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: auto;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    padding: 5px 0;
    font-size: .93rem;
    color: rgba(255,255,255,.8);
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a140a 50%, #0d0d0d 100%);
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 80px 0;
}
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-sub { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ── Page Hero ── */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a130a 40%, #0f0f0f 100%);
    border-bottom: 1px solid rgba(201,168,76,.18);
    padding: 90px 0 55px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 50%, rgba(201,168,76,.04) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-sm { padding: 70px 0 45px; }
.page-hero-overlay { display: none; }
.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Product Gallery (detail) ── */
.main-product-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    display: block;
}
.product-gallery-thumbs { gap: 8px; }
.gallery-thumb {
    width: 80px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: border-color var(--trans);
    opacity: .65;
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

/* ── Price Tag ── */
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--radius);
    padding: 14px 20px;
    width: fit-content;
}
.price-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── Alert Note ── */
.alert-note {
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.25);
    color: rgba(255,255,255,.75);
    border-radius: var(--radius);
    font-size: .88rem;
}

/* ── Base Cards ── */
.base-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--trans);
}
.base-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.base-img-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark-2);
}
.base-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .5s;
}
.base-card:hover .base-img { transform: scale(1.03); }
.base-name { font-size: .95rem; font-weight: 600; }
.base-desc { font-size: .8rem; }

/* ── Service Badges ── */
.service-badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.service-step-badge {
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
}

/* ── Measure Page ── */
.step-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color var(--trans);
}
.step-card:hover { border-color: var(--gold); }
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201,168,76,.15);
    line-height: 1;
    margin-bottom: .5rem;
}
.step-title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }

.meas-img-card { position: relative; }
.meas-img-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px 4px 0 0;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.meas-tip-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
}
.meas-tip-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,168,76,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.meas-help-box {
    background: linear-gradient(135deg, var(--dark-3), #1a140a);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

/* ── Accessories Page ── */
.acc-img-wrap { position: relative; background: var(--dark-2); border-radius: var(--radius-lg); }
.acc-img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    display: block;
}
.acc-img-thumb-row { }
.acc-thumb { width: 100px; height: 80px; object-fit: contain; background: var(--dark-2); cursor: pointer; opacity: .65; border: 2px solid transparent; border-radius: 8px; transition: all var(--trans); }
.acc-thumb:hover { opacity: 1; border-color: var(--gold); }
.acc-thumb.active-thumb { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,.3); }

.product-page-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin: .5rem 0 1rem;
}

.acc-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.acc-feat-item {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    padding: 6px 0;
}
.acc-size-badge, .acc-note-badge {
    display: inline-block;
    background: var(--dark-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .8rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.acc-sizes-row { font-size: .9rem; }

.border-bottom-gold {
    border-bottom: 1px solid rgba(201,168,76,.2) !important;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.acc-product-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: visible;          /* never clip image */
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}
.acc-product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.acc-product-img-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;           /* clip only at top corners */
    background: var(--dark-2);
    flex-shrink: 0;
}
.acc-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .4s;
}
.acc-product-card:hover .acc-product-img { transform: scale(1.02); }
.acc-product-body {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.acc-product-title { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }

/* ── Contact Page ── */
.contact-form-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-input {
    background: var(--dark-2) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: 10px !important;
    padding: .75rem 1rem !important;
    transition: border-color var(--trans) !important;
}
.contact-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,.12) !important;
    outline: none !important;
}
.contact-input::placeholder { color: #555 !important; }
.contact-input option { background: var(--dark-2); color: var(--text); }

.contact-info-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}
.bg-success { background: var(--wa-green) !important; }
.bg-gold    { background: var(--gold) !important; }
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 2px; }
.contact-info-value { font-size: .95rem; font-weight: 500; color: var(--text); }
.contact-info-item .text-muted { color: #b0b0b0 !important; }

/* ── Math CAPTCHA ── */
.captcha-box {
    background: rgba(201,168,76,.06);
    border: 1.5px solid rgba(201,168,76,.3);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.captcha-question {
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    white-space: nowrap;
}
.captcha-math {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,168,76,.1);
    padding: 2px 14px;
    border-radius: 8px;
    margin-left: 6px;
    letter-spacing: 1px;
}
.captcha-input {
    max-width: 130px;
    text-align: center;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}
@media (max-width: 480px) {
    .captcha-box { flex-direction: column; align-items: flex-start; }
    .captcha-input { max-width: 100%; }
}

.wa-quick-card {
    background: linear-gradient(135deg, #0a1f0a, #0d280d);
    border: 1px solid rgba(37,211,102,.25);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.wa-quick-icon {
    width: 50px;
    height: 50px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}
.footer-desc { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }
.footer-heading {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 10px;
}
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list li,
.footer-contact-list a,
.footer-contact-list span { color: #b0b0b0; }
.footer p.text-muted,
.footer .small.text-muted { color: #b0b0b0 !important; }
.footer-divider { border-color: var(--border); margin: 2rem 0 1.5rem; }
.footer-bottom { padding-bottom: 1.5rem; }
.footer-social { }
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--trans);
}
.wa-btn {
    background: var(--wa-green);
    color: #fff !important;
}
.wa-btn:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    color: #fff !important;
}

/* ── Floating WhatsApp Button ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--wa-green);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: all var(--trans);
    animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
    background: #1ea952;
    transform: scale(1.12);
    color: #fff !important;
}
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
    50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ── Override Bootstrap muted text for dark background ── */
.text-muted {
    color: #aaa !important;
}
.footer .text-muted,
.contact-info-card .text-muted,
.wa-quick-card .text-muted {
    color: #b0b0b0 !important;
}

/* ── Form Labels ── */
.form-label {
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 500;
    margin-bottom: .4rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero { min-height: 85vh; }
    .swim-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; }
    .swim-content { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    .acc-features-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 1.5rem; }
}

@media (max-width: 767px) {
    .section-pad { padding: 50px 0; }
    .hero-title { font-size: 2rem; }
    .topbar .topbar-left { font-size: .72rem; }
    .topbar-sep { margin: 0 6px; }
    .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.4rem; }
    .acc-features-grid { grid-template-columns: 1fr; }
    .price-value { font-size: 1.6rem; }
    .hero-lang-switcher { flex-wrap: wrap; padding: 8px 14px; gap: 8px; border-radius: 16px; }
    .hero-lang-label { font-size: .75rem; }
    .hero-lang-pill { padding: 5px 14px; font-size: .8rem; }
}

@media (max-width: 575px) {
    .hero-btns .btn { width: 100%; }
    .gallery-item { border-radius: 8px; }
    .contact-form-card { padding: 1.2rem; }
    .cta-section { padding: 50px 0; }
}

/* ── Page Hero with Background Image (haircut.php) ── */
.page-hero[style*="background-image"] {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    padding: 120px 0 80px;
}
.page-hero[style*="background-image"]::before { display: none; }
.page-hero-overlay {
    display: block !important;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}
.page-hero-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #111008 50%, #0f0f0f 100%) !important;
}

/* ── Breadcrumb Bar ── */
.breadcrumb-bar {
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.breadcrumb { margin-bottom: 0; background: transparent; padding: 0; }

/* ── Content Cards ── */
.content-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    color: var(--text);
}
.content-card p:last-child { margin-bottom: 0; }

/* ── Notice / Warning Card ── */
.notice-card {
    background: rgba(201,168,76,.06);
    border: 1px solid rgba(201,168,76,.28);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
}
.notice-title {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: .75rem;
}

/* ── Alert WhatsApp Custom ── */
.alert-wa-custom {
    background: rgba(37,211,102,.08);
    border: 1px solid rgba(37,211,102,.25);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: var(--text);
}

/* ── Service Item List ── */
.service-item {
    padding: .6rem .25rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: var(--text);
    font-size: .93rem;
}
.service-item:last-child { border-bottom: none; }

/* ── Scissors Comparison Cards ── */
.scissors-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.scissors-card-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}
.scissors-card-body {
    padding: 0 1.5rem 2rem;
    color: var(--text);
}
.scissors-card-body p { margin-bottom: 0; }
.scissors-thinning .scissors-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e1a10 100%);
}
.scissors-thinning { background: var(--dark-2); }
.scissors-thinning .scissors-card-header i { color: var(--gold); }
.scissors-thinning .scissors-card-title { color: var(--gold-light); font-size: 1.3rem; }
.scissors-cutting .scissors-card-header {
    background: linear-gradient(135deg, #0d1a10 0%, #0a1a0d 100%);
}
.scissors-cutting { background: var(--dark-2); }
.scissors-cutting .scissors-card-header i { color: #4caf7d; }
.scissors-cutting .scissors-card-title { color: #7de0a4; font-size: 1.3rem; }

/* ── Gold Gradient Utility ── */
.gold-gradient-bg {
    background: var(--gold-gradient, linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%));
}

/* ── Gold gradient variable fix ── */
:root { --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e4c97e 100%); }

/* ── Dropdown dark styling fix for nav ── */
.navbar .dropdown-menu-dark {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 230px;
}
.navbar .dropdown-menu-dark .dropdown-item {
    color: var(--text);
    font-size: .9rem;
    padding: .55rem 1.1rem;
    transition: all var(--trans);
}
.navbar .dropdown-menu-dark .dropdown-item:hover,
.navbar .dropdown-menu-dark .dropdown-item.active {
    background: rgba(201,168,76,.12);
    color: var(--gold-light);
}
.navbar .dropdown-toggle::after {
    border-color: var(--gold) transparent transparent;
}

/* ── About Page – Service Cards ── */
.about-service-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all var(--trans);
}
.about-service-card:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,.06);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.about-service-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,168,76,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}
.about-service-title {
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .4rem;
}
.about-service-desc { line-height: 1.5; }

/* ── Video Section ── */
.video-section { background: var(--dark-alt); }
.video-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 380px;
}
.site-video {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    background: #000;
    display: block;
}
.video-stats {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.vstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.vstat-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .3rem;
}

/* ── Women's Hair Section ── */
.women-section { background: var(--dark-alt); }
.women-img-wrap { position: relative; }
.women-hero-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) !important;
}
.women-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 2px rgba(201,168,76,.2);
    pointer-events: none;
}

@media (max-width: 767px) {
    .video-wrap { max-width: 100%; }
    .site-video { max-height: 420px; border-radius: 12px; }
    .vstat-num { font-size: 1.3rem; }
}

/* ── Custom vs Ready Made Comparison Cards ── */
.cvr-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.cvr-card-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}
.cvr-custom .cvr-card-header {
    background: linear-gradient(135deg, #1e1800 0%, #2a2000 60%, #1a1500 100%);
    border-bottom: 2px solid var(--gold);
}
.cvr-ready .cvr-card-header {
    background: linear-gradient(135deg, #060e1a 0%, #0a1628 60%, #060e18 100%);
    border-bottom: 2px solid #4a7cdc;
}
.cvr-crown i, .cvr-lightning i {
    font-size: 2rem;
    display: block;
    margin-bottom: .75rem;
}
.cvr-crown i { color: var(--gold); }
.cvr-lightning i { color: #4a7cdc; }
.cvr-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .4rem;
}
.cvr-custom .cvr-card-title { color: var(--gold-light); }
.cvr-ready .cvr-card-title { color: #7eaaff; }
.cvr-card-sub {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-style: italic;
}
.cvr-card-body {
    padding: 1.75rem 2rem;
    flex: 1;
    background: var(--dark-2);
}
.cvr-card-cta {
    padding: 1.25rem 2rem 1.75rem;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
}
.cvr-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.cvr-feature-item:last-of-type { border-bottom: none; }
.cvr-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.cvr-icon-gold { background: rgba(201,168,76,.15); color: var(--gold); }
.cvr-icon-blue { background: rgba(74,124,220,.15); color: #7eaaff; }
.cvr-feature-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
}
.cvr-feature-desc {
    font-size: .83rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}
.cvr-best-for {
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: .88rem;
    color: var(--text);
}
.cvr-best-gold {
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.25);
}
.cvr-best-gold i { color: var(--gold); }
.cvr-best-blue {
    background: rgba(74,124,220,.08);
    border: 1px solid rgba(74,124,220,.25);
}
.cvr-best-blue i { color: #4a7cdc; }
.cvr-best-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .7;
    display: block;
}

/* VS Badge */
.cvr-vs-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}
/* Need relative positioning on the row parent */
.cvr-vs-overlay + .row,
section .container .row.align-items-stretch { position: relative; }
.cvr-vs-badge {
    width: 52px;
    height: 52px;
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: var(--gold);
    letter-spacing: .05em;
}
.cvr-vs-badge-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-weight: 800;
    font-size: .85rem;
    color: var(--gold);
}

/* Trust Strip */
.cvr-trust-strip {
    background: var(--dark-3);
    border-top: 1px solid rgba(201,168,76,.15);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 3rem 0;
}
.cvr-trust-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold-light);
    font-weight: 600;
}
.cvr-trust-badge {
    padding: 1rem .5rem;
}
.cvr-trust-icon {
    font-size: 1.6rem;
    color: var(--gold);
    display: block;
}
.cvr-trust-text {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}
.cvr-footer-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: .04em;
}

@media (max-width: 991px) {
    .page-hero[style*="background-image"] { padding: 90px 0 60px; }
    .scissors-card-header { padding: 1.5rem 1.25rem 1rem; }
    .cvr-card-header { padding: 1.5rem 1.5rem 1rem; }
    .cvr-card-body { padding: 1.25rem 1.5rem; }
    .cvr-card-cta { padding: 1rem 1.5rem 1.5rem; }
}
