/*=========================================================
  HAIRBIGAIL V2
  PART 1 — FOUNDATION
=========================================================*/

/*==============================
GOOGLE FONTS
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Great+Vibes&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/*==============================
CSS RESET
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Manrope",sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    transition:
    background .35s ease,
    color .35s ease;
}

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

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

button,
input,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

ul{
    list-style:none;
}

/*==============================
DESIGN TOKENS
==============================*/

:root{

    /* Colors */

    --bg:#120A1F;
    --surface:#1A112B;
    --card:#221638;
    --card-hover:#2A1C42;

    --text:#F7F4FF;
    --muted:#B7AEC9;

    --gold:#D8A84E;
    --gold-dark:#BB8B35;

    --purple:#C8A7FF;

    --border:rgba(255,255,255,.08);

    /* Radius */

    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:30px;
    --radius-pill:100px;

    /* Shadows */

    --shadow-sm:
    0 8px 20px rgba(0,0,0,.08);

    --shadow-md:
    0 18px 40px rgba(0,0,0,.12);

    --shadow-lg:
    0 30px 70px rgba(0,0,0,.18);

    /* Width */

    --container:1200px;

    /* Animation */

    --transition:.35s ease;

}

/*==============================
LIGHT MODE
==============================*/

body.light{

    --bg:#FFFFFF;

    --surface:#F8F5FD;

    --card:#FFFFFF;

    --card-hover:#F4EEFF;

    --text:#231738;

    --muted:#726483;

    --border:#E6DCF6;

}

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

.container{

    width:min(92%, var(--container));

    margin:auto;

}

/*==============================
SECTION SPACING
==============================*/

section{

    padding:110px 0;

}

@media(max-width:768px){

section{

    padding:80px 0;

}

}

/*==============================
TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4{

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

    line-height:1.1;

    color:var(--text);

}

h1{

    font-size:clamp(3rem,7vw,6rem);

}

h2{

    font-size:clamp(2.3rem,5vw,4rem);

}

h3{

    font-size:clamp(1.5rem,3vw,2rem);

}

p{

    color:var(--muted);

    line-height:1.9;

    font-size:1rem;

}

/*==============================
TEXT HELPERS
==============================*/

.gold{

    color:var(--gold);

}

.signature{

    font-family:"Great Vibes",cursive;

    color:var(--gold);

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.8rem;

    color:var(--purple);

}

.section-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--gold);

}

/*==============================
BUTTONS
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    border-radius:var(--radius-pill);

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--gold);

    color:#120A1F;

}

.btn-primary:hover{

    background:var(--gold-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    border:1px solid var(--border);

    color:var(--text);

}

.btn-secondary:hover{

    border-color:var(--gold);

    color:var(--gold);

}

/*==============================
CARD
==============================*/

.card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius-lg);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    background:var(--card-hover);

}

/*==============================
UTILITY CLASSES
==============================*/

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}

/*==============================
SELECTION
==============================*/

::selection{

    background:var(--gold);

    color:#120A1F;

}
/*=========================================================
  PART 2 — HEADER • NAVBAR • LOADER • MOBILE MENU
=========================================================*/

/*==============================
HEADER
==============================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:.35s ease;
}

.header.scrolled{
    backdrop-filter:blur(20px);
    background:rgba(18,10,31,.82);
    border-bottom:1px solid var(--border);
}

body.light .header.scrolled{
    background:rgba(255,255,255,.88);
}

/*==============================
NAVBAR
==============================*/

.navbar{

    width:min(92%,1200px);

    height:82px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==============================
LOGO
==============================*/

.logo a{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    font-weight:700;

    display:flex;

    align-items:center;

}

.logo .hair{

    color:var(--purple);

}

.logo .bigail{

    color:var(--gold);

    font-style:italic;

    margin-left:2px;

}

/*==============================
DESKTOP NAV
==============================*/

.desktop-nav{

    display:flex;

    align-items:center;

    gap:38px;

}

.desktop-nav a{

    position:relative;

    font-size:.95rem;

    transition:.35s;

}

.desktop-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.desktop-nav a:hover{

    color:var(--gold);

}

.desktop-nav a:hover::after,
.desktop-nav a.active::after{

    width:100%;

}

/*==============================
RIGHT SIDE
==============================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:14px;

}

/*==============================
THEME BUTTON
==============================*/

.theme-toggle{

    width:44px;

    height:44px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--card);

    border:1px solid var(--border);

    transition:.35s;

}

.theme-toggle:hover{

    transform:rotate(180deg);

    background:var(--gold);

    color:#120A1F;

}

/*==============================
MENU BUTTON
==============================*/

.menu-btn{

    width:44px;

    height:44px;

    display:none;

    align-items:center;

    justify-content:center;

    background:var(--card);

    border-radius:50%;

    border:1px solid var(--border);

}

.menu-btn span{

    position:relative;

    width:20px;

    height:2px;

    background:var(--text);

    transition:.35s;

}

.menu-btn span::before,
.menu-btn span::after{

    content:"";

    position:absolute;

    left:0;

    width:20px;

    height:2px;

    background:var(--text);

    transition:.35s;

}

.menu-btn span::before{

    top:-6px;

}

.menu-btn span::after{

    top:6px;

}

/* X Animation */

.menu-btn.active span{

    background:transparent;

}

.menu-btn.active span::before{

    top:0;

    transform:rotate(45deg);

}

.menu-btn.active span::after{

    top:0;

    transform:rotate(-45deg);

}

/*==============================
MOBILE MENU
==============================*/

.mobile-menu{

    position:fixed;

    top:82px;

    left:0;

    width:100%;

    background:var(--surface);

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

    border-bottom:1px solid var(--border);

    z-index:999;

}

.mobile-menu.active{

    max-height:600px;

}

.mobile-inner{

    width:min(92%,1200px);

    margin:auto;

    padding:25px 0 40px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.mobile-inner a{

    padding:14px 0;

    border-bottom:1px solid var(--border);

    transition:.3s;

}

.mobile-inner a:hover{

    color:var(--gold);

    padding-left:10px;

}

.mobile-book{

    margin-top:15px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.desktop-nav{

display:none;

}

.menu-btn{

display:flex;

}

}

@media(min-width:993px){

.mobile-menu{

display:none;

}

}
/*=========================================================
  PART 3 — PREMIUM HERO
=========================================================*/

/*==============================
HERO SECTION
==============================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/*==============================
BACKGROUND SLIDER
==============================*/

.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:heroZoom 12s linear infinite;
}

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/*==============================
OVERLAY
==============================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(18,10,31,.92) 0%,
        rgba(18,10,31,.75) 35%,
        rgba(18,10,31,.45) 70%,
        rgba(18,10,31,.20) 100%
    );

    z-index:1;

}

/*==============================
CONTENT
==============================*/

.hero-content{

    position:relative;

    z-index:5;

    width:min(92%,1200px);

    margin:auto;

    display:flex;

    align-items:center;

    min-height:100vh;

}

.hero-text{

    max-width:650px;

    padding-top:80px;

}

/*==============================
BADGE
==============================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:100px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:28px;

    color:#fff;

    letter-spacing:3px;

    font-size:.78rem;

    text-transform:uppercase;

}

.hero-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--gold);

}

/*==============================
TITLE
==============================*/

.hero-title{

    margin-bottom:24px;

    line-height:.95;

}

.hero-title span{

    display:block;

}

.hero-title .gold{

    font-style:italic;

    font-weight:400;

}

/*==============================
SUBTITLE
==============================*/

.hero-subtitle{

    max-width:540px;

    margin-bottom:42px;

    font-size:1.05rem;

    line-height:2;

}

/*==============================
BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/*==============================
SCROLL INDICATOR
==============================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

}

.scroll-indicator span{

    display:block;

    width:2px;

    height:55px;

    background:rgba(255,255,255,.25);

    overflow:hidden;

    position:relative;

}

.scroll-indicator span::after{

    content:"";

    position:absolute;

    left:0;

    width:100%;

    height:14px;

    background:var(--gold);

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        transform:translateY(-18px);

        opacity:0;

    }

    50%{

        opacity:1;

    }

    100%{

        transform:translateY(55px);

        opacity:0;

    }

}

/*==============================
DECORATIVE BLURS
==============================*/

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.25;

    pointer-events:none;

}

.hero-glow.one{

    width:280px;

    height:280px;

    background:var(--gold);

    top:10%;

    right:5%;

}

.hero-glow.two{

    width:320px;

    height:320px;

    background:#8A5CFF;

    bottom:-100px;

    left:-100px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.hero-text{

max-width:100%;

}

.hero-title{

font-size:4.5rem;

}

}

@media(max-width:768px){

.hero-content{

text-align:center;

justify-content:center;

}

.hero-text{

padding-top:90px;

}

.hero-title{

font-size:3.2rem;

}

.hero-subtitle{

margin-left:auto;

margin-right:auto;

font-size:.95rem;

}

.hero-buttons{

justify-content:center;

}

.hero-badge{

font-size:.68rem;

letter-spacing:2px;

}

}

@media(max-width:480px){

.hero-title{

font-size:2.7rem;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

}
/*======================================
CTA SECTION
======================================*/

.cta-section {
    padding: 100px 0;
    background: var(--bg);
}

.cta-card {
    max-width: 900px;
    margin: auto;
    padding: 70px 50px;
    text-align: center;
    border-radius: 30px;
}

.cta-card h2 {
    margin: 20px 0;
}

.cta-card p {
    max-width: 620px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

@media(max-width:768px) {
    
    .cta-card {
        padding: 45px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
    
}
/* ==========================================
HOMEPAGE LAYOUT POLISH
========================================== */

.container {
    width: min(92%, 1200px);
    margin-inline: auto;
}

section {
    padding: 110px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 620px;
    margin: auto;
    line-height: 1.9;
}

/*=====================================
WELCOME SECTION
=====================================*/

.welcome {
    padding: 120px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.welcome-image img {
    width: 100%;
    display: block;
    border-radius: 30px;
    transition: .6s ease;
}

.welcome-image:hover img {
    transform: scale(1.04);
}

.welcome-content {
    max-width: 540px;
}

.welcome-content h2 {
    margin: 18px 0 24px;
    font-size: 3.6rem;
    line-height: 1.05;
}

.welcome-content p {
    margin-bottom: 22px;
    line-height: 1.9;
    font-size: 1rem;
}

.welcome-content .hero-buttons {
    margin-top: 35px;
}

@media(max-width:992px) {
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .welcome-image {
        max-width: 600px;
        margin: auto;
    }
    
    .welcome-content {
        max-width: 100%;
        text-align: center;
    }
    
    .welcome-content .hero-buttons {
        justify-content: center;
    }
    
}

@media(max-width:768px) {
    
    .welcome {
        padding: 80px 0;
    }
    
    .welcome-content h2 {
        font-size: 2.7rem;
    }
    
}

/* Better spacing for buttons */

.hero-buttons {
    margin-top: 32px;
}

.service-content .btn {
    margin-top: 10px;
}

/* Mobile spacing */

@media(max-width:768px) {
    
    section {
        padding: 80px 0;
    }
    
    .section-heading {
        margin-bottom: 45px;
    }
    
}
/*======================================
SERVICES PREVIEW
======================================*/

.services-preview {
    padding: 110px 0;
    background: var(--surface);
}

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

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.service-image {
    overflow: hidden;
    aspect-ratio: 4/5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-category {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(200, 155, 60, .12);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-content h3 {
    margin-bottom: 14px;
    font-size: 1.7rem;
}

.service-content p {
    color: var(--muted);
    line-height: 1.8;
    flex: 1;
}

.service-footer {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.service-footer span {
    color: var(--gold);
    font-size: .9rem;
    font-weight: 600;
}

.service-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: .3s;
}

.service-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Tablet */

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

/* Mobile */

@media(max-width:768px) {
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
}
/*======================================
STATISTICS
======================================*/

.statistics {
    padding: 110px 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
}
@media (max-width:768px) {
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 20px 8px;
        border-radius: 16px;
    }
    
    .stat-card h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .stat-card p {
        font-size: .72rem;
        line-height: 1.3;
    }
    
}

/*======================================
THE ARTIST BEHIND HAIRBIGAIL
======================================*/

.stylist-section {
    
    padding: 120px 0;
    
    background: var(--bg-secondary);
    
}

.stylist-content {
    
    max-width: 760px;
    
    margin: 0 auto;
    
    text-align: center;
    
}

.stylist-content h2 {
    
    margin: 20px 0 28px;
    
}

.stylist-content p {
    
    margin: 0 auto 22px;
    
    max-width: 650px;
    
    line-height: 1.9;
    
}

.stylist-content blockquote {
    
    max-width: 620px;
    
    margin: 40px auto;
    
    padding: 28px;
    
    border-left: 4px solid var(--gold);
    
    background: rgba(216, 168, 78, .08);
    
    border-radius: 18px;
    
    font-style: italic;
    
    line-height: 1.8;
    
}

.stylist-content .btn {
    
    margin-top: 20px;
    
}
.stylist-content .section-tag {
    
    display: inline-block;
    
}

.stylist-content .btn {
    
    display: inline-flex;
    
}
/*======================================
FOOTER
======================================*/

.footer {
    background: #0d0818;
    padding: 90px 0 35px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    max-width: 320px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer h4 {
    margin-bottom: 22px;
    font-size: 1.25rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 14px;
}

.footer a {
    color: var(--text);
    transition: .3s;
}

.footer a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    transition: .35s;
}

.footer-social a:hover {
    background: var(--gold);
    color: #120A1F;
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media(max-width:992px) {
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
    
}

@media(max-width:768px) {
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
}
/*======================================
ABOUT HERO
======================================*/

.about-hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    text-align: center;
    
    background:
        linear-gradient(rgba(18, 10, 31, .82), rgba(18, 10, 31, .88)),
        url("images/about-hero.jpg") center/cover no-repeat;
}

.page-hero-content {
    max-width: 760px;
    margin: auto;
}

.page-hero-content h1 {
    margin: 24px 0;
    line-height: 1.1;
}

.page-hero-content p {
    max-width: 650px;
    margin: auto;
    font-size: 1.05rem;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(216, 168, 78, .08);
    border-radius: 50%;
    filter: blur(90px);
    
    top: -120px;
    left: -100px;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(124, 69, 212, .10);
    border-radius: 50%;
    filter: blur(80px);
    
    right: -80px;
    bottom: -80px;
}

@media(max-width:768px) {
    
    .about-hero {
        padding: 150px 0 90px;
    }
    
    .page-hero-content h1 {
        font-size: 3rem;
    }
    
    .page-hero-content p {
        font-size: .95rem;
    }
    
}
/* ==========================================
ABOUT HERO
========================================== */

.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero {
    
    background:
        linear-gradient(rgba(10, 10, 10, .65),
            rgba(10, 10, 10, .70)),
        url("../images/IMG_1595.jpeg");
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-content {
    
    max-width: 760px;
    margin: auto;
    position: relative;
    z-index: 2;
    
}

.page-hero-content h1 {
    
    font-size: clamp(2.8rem, 6vw, 5rem);
    
    margin: 25px 0;
    
    line-height: 1.1;
    
}

.page-hero-content p {
    
    max-width: 650px;
    
    margin: 0 auto 40px;
    
    font-size: 1.08rem;
    
    line-height: 1.9;
    
    color: rgba(255, 255, 255, .82);
    
}

.hero-buttons {
    
    display: flex;
    
    justify-content: center;
    
    gap: 18px;
    
    flex-wrap: wrap;
    
}
/*======================================
OUR STORY
======================================*/

.our-story {
    
    padding: 120px 0;
    
    background: var(--bg);
    
}

.story-grid {
    
    display: grid;
    
    grid-template-columns: 1fr 1fr;
    
    gap: 80px;
    
    align-items: center;
    
}

.story-image {
    
    overflow: hidden;
    
    border-radius: 28px;
    
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    
}

.story-image img {
    
    width: 100%;
    
    height: 620px;
    
    object-fit: cover;
    
    transition: .6s ease;
    
}

.story-image:hover img {
    
    transform: scale(1.05);
    
}

.story-content {
    
    max-width: 560px;
    
}

.story-content h2 {
    
    margin: 20px 0;
    
}

.story-content p {
    
    margin-bottom: 24px;
    
    line-height: 1.9;
    
}

.story-content .btn {
    
    margin-top: 12px;
    
}

@media(max-width:900px) {
    
    .story-grid {
        
        grid-template-columns: 1fr;
        
        gap: 50px;
        
    }
    
    .story-content {
        
        max-width: 100%;
        
        text-align: center;
        
    }
    
    .story-image img {
        
        height: 450px;
        
    }
    
    .story-content .btn {
        
        margin: auto;
        
        display: inline-flex;
        
    }
    
}
/*======================================
MISSION & VISION
======================================*/

.mission-section {
    
    padding: 120px 0;
    
    background: var(--bg-secondary);
    
}

.mission-grid {
    
    display: grid;
    
    grid-template-columns: repeat(2, 1fr);
    
    gap: 30px;
    
    margin-top: 60px;
    
}

.mission-card {
    
    padding: 45px;
    
    text-align: left;
    
    transition: .4s ease;
    
}

.mission-card:hover {
    
    transform: translateY(-10px);
    
}

.mission-icon {
    
    width: 70px;
    
    height: 70px;
    
    border-radius: 50%;
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    background: rgba(216, 168, 78, .12);
    
    color: var(--gold);
    
    font-size: 1.6rem;
    
    margin-bottom: 24px;
    
}

.mission-card h3 {
    
    margin-bottom: 18px;
    
}

.mission-card p {
    
    line-height: 1.9;
    
}

@media(max-width:768px) {
    
    .mission-grid {
        
        grid-template-columns: 1fr;
        
    }
    
    .mission-card {
        
        padding: 35px;
        
    }
    
}
/*======================================
WHY CHOOSE HAIRBIGAIL
======================================*/

.why-choose {
    
    padding: 120px 0;
    
    background: var(--bg);
    
}

.why-grid {
    
    display: grid;
    
    grid-template-columns: repeat(4, 1fr);
    
    gap: 28px;
    
    margin-top: 60px;
    
}

.why-card {
    
    padding: 40px 30px;
    
    text-align: center;
    
}

.why-card i {
    
    width: 72px;
    
    height: 72px;
    
    margin: 0 auto 24px;
    
    border-radius: 50%;
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    font-size: 1.5rem;
    
    color: var(--gold);
    
    background: rgba(216, 168, 78, .12);
    
}

.why-card h3 {
    
    margin-bottom: 16px;
    
    font-size: 1.35rem;
    
}

.why-card p {
    
    line-height: 1.8;
    
}

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

@media(max-width:768px) {
    
    .why-grid {
        
        grid-template-columns: 1fr;
        
        gap: 22px;
        
    }
    
    .why-card {
        
        padding: 34px 26px;
        
    }
    
}
/*======================================
LUXURY CTA
======================================*/

.luxury-cta {
    
    position: relative;
    
    padding: 140px 0;
    
    background:
        linear-gradient(rgba(12, 12, 12, .78),
            rgba(12, 12, 12, .78)),
        url("../images/IMG_1595.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-attachment: scroll;
    
    overflow: hidden;
    
}

.cta-content {
    
    position: relative;
    
    z-index: 2;
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.cta-content h2 {
    
    margin: 22px 0;
    
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    
    line-height: 1.15;
    
}

.cta-content p {
    
    max-width: 620px;
    
    margin: 0 auto 40px;
    
    line-height: 1.9;
    
    color: rgba(255, 255, 255, .85);
    
}

.cta-buttons {
    
    display: flex;
    
    justify-content: center;
    
    gap: 18px;
    
    flex-wrap: wrap;
    
}
/*======================================
SERVICES HERO
======================================*/

.services-hero {
    
    background:
        linear-gradient(rgba(10, 10, 10, .72),
            rgba(10, 10, 10, .72)),
        url("../images/IMG_0933.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-repeat: no-repeat;
    
}
/*======================================
SERVICES INTRO
======================================*/

.services-intro {
    
    padding: 120px 0 70px;
    
    background: var(--bg);
    
}

.services-intro .section-heading {
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.services-intro p {
    
    max-width: 650px;
    
    margin: 28px auto 0;
    
    line-height: 1.9;
    
}
/*======================================
PREMIUM SERVICES
======================================*/

.services-grid-section {
    
    padding: 0 0 120px;
    
    background: var(--bg);
    
}

.services-grid {
    
    display: grid;
    
    gap: 30px;
    
}

.service-card {
    
    background: var(--card-bg);
    
    border: 1px solid rgba(255, 255, 255, .08);
    
    border-radius: 24px;
    
    padding: 40px 30px;
    
    transition: .35s ease;
    
}

.service-card:hover {
    
    transform: translateY(-8px);
    
    border-color: rgba(216, 168, 78, .35);
    
}

.service-icon {
    
    width: 70px;
    
    height: 70px;
    
    border-radius: 50%;
    
    background: rgba(216, 168, 78, .12);
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    color: var(--gold);
    
    font-size: 1.5rem;
    
    margin-bottom: 24px;
    
}

.service-card h3 {
    
    margin-bottom: 18px;
    
}

.service-card p {
    
    line-height: 1.9;
    
    margin-bottom: 28px;
    
}

.service-meta {
    
    display: flex;
    
    justify-content: space-between;
    
    align-items: center;
    
    flex-wrap: wrap;
    
    gap: 12px;
    
    margin-bottom: 30px;
    
    color: var(--text-muted);
    
    font-size: .95rem;
    
}

.service-meta span {
    
    display: flex;
    
    align-items: center;
    
    gap: 8px;
    
}

.service-card .btn {
    
    width: 100%;
    
    justify-content: center;
    
}

@media(min-width:768px) {
    
    .services-grid {
        
        grid-template-columns: repeat(3, 1fr);
        
    }
    
}
/*======================================
SERVICE FILTER
======================================*/

.service-filter {
    
    padding: 20px 0 60px;
    
    background: var(--bg);
    
}

.filter-buttons {
    
    display: flex;
    
    gap: 14px;
    
    justify-content: center;
    
    flex-wrap: wrap;
    
}

.filter-btn {
    
    padding: 14px 28px;
    
    border-radius: 999px;
    
    border: 1px solid rgba(216, 168, 78, .25);
    
    background: transparent;
    
    color: var(--text);
    
    font-size: .95rem;
    
    font-weight: 600;
    
    cursor: pointer;
    
    transition: .35s ease;
    
}

.filter-btn:hover {
    
    background: rgba(216, 168, 78, .10);
    
    border-color: var(--gold);
    
}

.filter-btn.active {
    
    background: var(--gold);
    
    color: #111;
    
    border-color: var(--gold);
    
}
/*======================================
SERVICE SHOWCASE
======================================*/

.services-showcase {
    
    padding: 0 0 120px;
    
    background: var(--bg);
    
}

.services-gallery {
    
    display: grid;
    
    gap: 32px;
    
}

.service-card {
    
    overflow: hidden;
    
    border-radius: 24px;
    
    background: var(--card-bg);
    
    border: 1px solid rgba(255, 255, 255, .08);
    
    transition: .35s ease;
    
}

.service-card:hover {
    
    transform: translateY(-8px);
    
    border-color: rgba(216, 168, 78, .35);
    
}

.service-image {
    
    width: 100%;
    
    height: 250px;
    
    object-fit: cover;
    
    display: block;
    
}

.service-body {
    
    padding: 30px;
    
    text-align: left;
    
}

.service-body h3 {
    
    margin-bottom: 16px;
    
}

.service-body p {
    
    line-height: 1.8;
    
}

.service-info {
    
    margin: 24px 0;
    
}

.service-info p {
    
    margin: 0;
    
    font-weight: 700;
    
}

.service-info span {
    
    display: block;
    
    margin-bottom: 18px;
    
    color: var(--text-muted);
    
}

.service-body .btn {
    
    width: 100%;
    
    justify-content: center;
    
}

@media(min-width:768px) {
    
    .services-gallery {
        
        grid-template-columns: repeat(2, 1fr);
        
    }
    
}

@media(min-width:1100px) {
    
    .services-gallery {
        
        grid-template-columns: repeat(3, 1fr);
        
    }
    
}
/*======================================
SERVICE FILTER ANIMATION
======================================*/

.service-card {
    
    transition:
        opacity .35s ease,
        transform .35s ease;
    
}

.service-card.hide {
    
    display: none;
    
}

.filter-btn.active {
    
    background: var(--gold);
    
    color: #111;
    
    border-color: var(--gold);
    
}
/*======================================
YOUR HAIR JOURNEY
======================================*/

.hair-journey {
    
    padding: 120px 0;
    
    background: var(--bg-secondary);
    
}

.journey-grid {
    
    display: grid;
    
    gap: 30px;
    
    margin-top: 70px;
    
}

.journey-card {
    
    background: var(--card-bg);
    
    border: 1px solid rgba(255, 255, 255, .08);
    
    border-radius: 24px;
    
    padding: 40px 30px;
    
    transition: .35s ease;
    
}

.journey-card:hover {
    
    transform: translateY(-8px);
    
    border-color: rgba(216, 168, 78, .35);
    
}

.journey-number {
    
    width: 70px;
    
    height: 70px;
    
    border-radius: 50%;
    
    background: rgba(216, 168, 78, .12);
    
    color: var(--gold);
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    font-size: 1.4rem;
    
    font-weight: 700;
    
    margin-bottom: 24px;
    
}

.journey-card h3 {
    
    margin-bottom: 18px;
    
}

.journey-card p {
    
    line-height: 1.9;
    
}

@media(min-width:768px) {
    
    .journey-grid {
        
        grid-template-columns: repeat(2, 1fr);
        
    }
    
}
/*======================================
BOOKING CTA
======================================*/

.booking-cta {
    
    padding: 120px 0;
    
    background:
        linear-gradient(rgba(10, 10, 10, .82),
            rgba(10, 10, 10, .82)),
        url("../images/IMG_1595.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-repeat: no-repeat;
    
}

.booking-cta-content {
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.booking-cta-content h2 {
    
    margin: 20px 0 28px;
    
}

.booking-cta-content p {
    
    max-width: 620px;
    
    margin: 0 auto 40px;
    
    line-height: 1.9;
    
}

.booking-buttons {
    
    display: flex;
    
    justify-content: center;
    
    gap: 20px;
    
    flex-wrap: wrap;
    
}
/*======================================
GALLERY HERO
======================================*/

.gallery-hero {
    
    background:
        linear-gradient(rgba(10, 10, 10, .72),
            rgba(10, 10, 10, .72)),
        url("../images/IMG_2102.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-repeat: no-repeat;
    
}
/*======================================
GALLERY INTRO
======================================*/

.gallery-intro {
    
    padding: 120px 0 40px;
    
    background: var(--bg);
    
}

.gallery-intro .section-heading {
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.gallery-intro p {
    
    max-width: 650px;
    
    margin: 28px auto 0;
    
    line-height: 1.9;
    
}

/*======================================
GALLERY FILTER
======================================*/

.gallery-filter {
    
    padding: 20px 0 70px;
    
    background: var(--bg);
    
}
/*======================================
PINTEREST GALLERY
======================================*/

.gallery-showcase{

    padding:0 0 120px;

    background:var(--bg);

}

.gallery-grid{

    column-count:2;

    column-gap:18px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    margin-bottom:18px;

    break-inside:avoid;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    display:block;

    border-radius:18px;

    transition:.45s ease;

}

.gallery-item:hover img{

    transform:scale(1.06);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent 60%
    );

    opacity:0;

    transition:.3s;

}

.gallery-item:hover::after{

    opacity:1;

}

.gallery-tag{

    position:absolute;

    left:16px;

    bottom:16px;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:.85rem;

    opacity:0;

    transition:.3s;

}

.gallery-item:hover .gallery-tag{

    opacity:1;

}

@media(min-width:768px){

.gallery-grid{

column-count:3;

}

}

@media(min-width:1200px){

.gallery-grid{

column-count:4;

}

}
/*======================================
LIGHTBOX
======================================*/

.lightbox {
    
    position: fixed;
    
    inset: 0;
    
    background: rgba(0, 0, 0, .94);
    
    display: flex;
    
    justify-content: center;
    
    align-items: center;
    
    opacity: 0;
    
    visibility: hidden;
    
    transition: .35s ease;
    
    z-index: 9999;
    
}

.lightbox.active {
    
    opacity: 1;
    
    visibility: visible;
    
}

.lightbox img {
    
    width: 92%;
    
    max-width: 650px;
    
    max-height: 88vh;
    
    object-fit: contain;
    
    border-radius: 18px;
    
}

.lightbox-close {
    
    position: absolute;
    
    top: 30px;
    
    right: 30px;
    
    width: 55px;
    
    height: 55px;
    
    border: none;
    
    border-radius: 50%;
    
    cursor: pointer;
    
    background: rgba(255, 255, 255, .15);
    
    color: white;
    
    font-size: 1.3rem;
    
}
/*======================================
LIGHTBOX NAVIGATION
======================================*/

.lightbox-prev,
.lightbox-next {
    
    position: absolute;
    
    top: 50%;
    
    transform: translateY(-50%);
    
    width: 56px;
    
    height: 56px;
    
    border: none;
    
    border-radius: 50%;
    
    background: rgba(255, 255, 255, .15);
    
    color: #fff;
    
    cursor: pointer;
    
    font-size: 1.2rem;
    
    transition: .3s ease;
    
}

.lightbox-prev:hover,
.lightbox-next:hover {
    
    background: var(--gold);
    
    color: #111;
    
}

.lightbox-prev {
    
    left: 30px;
    
}

.lightbox-next {
    
    right: 30px;
    
}
/*======================================
GALLERY FILTER ANIMATION
======================================*/

.gallery-item {
    
    transition:
        opacity .35s ease,
        transform .35s ease;
    
}

.gallery-item.hide {
    
    display: none;
    
}
/*======================================
PORTFOLIO CTA
======================================*/

.portfolio-cta {
    
    padding: 120px 0;
    
    background:
        linear-gradient(rgba(8, 8, 8, .82),
            rgba(8, 8, 8, .82)),
        url("../images/IMG_0933.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-repeat: no-repeat;
    
}

.portfolio-cta-content {
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.portfolio-cta-content h2 {
    
    margin: 20px 0 28px;
    
}

.portfolio-cta-content p {
    
    max-width: 640px;
    
    margin: 0 auto 40px;
    
    line-height: 1.9;
    
}

.portfolio-buttons {
    
    display: flex;
    
    justify-content: center;
    
    gap: 20px;
    
    flex-wrap: wrap;
    
}
/*======================================
FLOATING WHATSAPP
======================================*/

.whatsapp-float{

    position:fixed;

    right:24px;

    bottom:24px;

    width:64px;

    height:64px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    z-index:999;

    transition:.3s ease;

    animation:whatsappFloat 2.5s infinite;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

}

@keyframes whatsappFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

@media(max-width:768px){

.whatsapp-float{

width:58px;

height:58px;

font-size:1.8rem;

right:18px;

bottom:18px;

}

}
/*======================================
BOOKING HERO
======================================*/

.booking-hero {
    
    background:
        linear-gradient(rgba(10, 10, 10, .72),
            rgba(10, 10, 10, .72)),
        url("../images/IMG_1595.jpg");
    
    background-size: cover;
    
    background-position: center;
    
    background-repeat: no-repeat;
    
}
/*======================================
BOOKING INTRO
======================================*/

.booking-intro {
    
    padding: 120px 0 60px;
    
    background: var(--bg);
    
}

.booking-intro .section-heading {
    
    max-width: 760px;
    
    margin: auto;
    
    text-align: center;
    
}

.booking-intro p {
    
    max-width: 650px;
    
    margin: 28px auto 0;
    
    line-height: 1.9;
    
}
/*======================================
BOOKING FORM
======================================*/

.booking-form-section {
    
    padding: 0 0 120px;
    
    background: var(--bg);
    
}

.booking-layout {
    
    display: grid;
    
    gap: 40px;
    
}

.booking-form-card,
.booking-summary {
    
    background: var(--card-bg);
    
    border: 1px solid rgba(255, 255, 255, .08);
    
    border-radius: 24px;
    
    padding: 35px;
    
}

.booking-form-card h3,
.booking-summary h3 {
    
    margin-bottom: 30px;
    
}

.form-group {
    
    margin-bottom: 22px;
    
}

.form-group label {
    
    display: block;
    
    margin-bottom: 10px;
    
    font-weight: 600;
    
}

.form-group input,
.form-group select,
.form-group textarea {
    
    width: 100%;
    
    padding: 16px;
    
    border-radius: 14px;
    
    border: 1px solid rgba(255, 255, 255, .10);
    
    background: transparent;
    
    color: var(--text);
    
    font-size: 1rem;
    
}

.summary-item {
    
    display: flex;
    
    justify-content: space-between;
    
    margin-bottom: 24px;
    
    padding-bottom: 16px;
    
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    
}

@media(min-width:992px) {
    
    .booking-layout {
        
        grid-template-columns: 2fr 1fr;
        
        align-items: start;
        
    }
    
    .booking-summary {
        
        position: sticky;
        
        top: 110px;
        
    }
    
}