/* ============================================================
   BEST CUT HAIR SALON — Spring Valley Green Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green:        #4a7c59;
    --green-light:  #5e9e6e;
    --green-dark:   #3a6347;
    --green-deeper: #2d5a3a;
    --green-pale:   #e8f0ea;
    --green-mist:   #f2f7f3;
    --cream:        #faf9f6;
    --white:        #ffffff;
    --charcoal:     #2c2c2c;
    --text:         #444444;
    --text-light:   #6b6b6b;
    --text-muted:   #999999;
    --border:       #e0e0e0;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
    --radius:       8px;
    --radius-lg:    16px;
    --transition:   all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

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

.script-text {
    font-family: 'Allura', cursive;
    font-weight: 400;
    color: var(--green);
    font-size: 0.85em;
}

/* ---------- Section Helpers ---------- */
.section-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .script-text {
    color: var(--green);
    font-size: 1.15em;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,124,89,0.3);
}

.btn-secondary {
    background: var(--green-pale);
    color: var(--green-dark);
    border-color: var(--green-pale);
}

.btn-secondary:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--green-pale);
    border-color: var(--green-pale);
    transform: translateY(-2px);
    color: var(--green-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-2px);
}

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

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(215,215,215,0.95), rgba(255,255,255,0.95) 70%, rgba(92,138,101,0.08));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: linear-gradient(90deg, rgba(215,215,215,0.98), rgba(255,255,255,0.98) 70%, rgba(92,138,101,0.08));
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    padding: 12px 20px 12px 12px;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo-script {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--green);
    line-height: 1;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

/* Nav links */
.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: var(--green);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74,124,89,0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 24px 30px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--green);
    padding-left: 8px;
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 50px;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-salon-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow:
        -1px -1px 0 #555,
        1px -1px 0 #555,
        -1px 1px 0 #555,
        1px 1px 0 #555,
        -2px 0 0 #555,
        2px 0 0 #555,
        0 -2px 0 #555,
        0 2px 0 #555;
}

.hero-slogan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .script-text {
    color: var(--green);
    font-size: 0.85em;
    display: inline;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}

.hero .btn-primary:hover {
    background: var(--green-pale);
    border-color: var(--green-pale);
    color: var(--green-dark);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--white);
}

.hero-scroll i {
    font-size: 14px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
    padding: 80px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

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

.highlight-card {
    text-align: center;
    padding: 40px 24px;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-size: 24px;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-mist));
    color: var(--green);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

.about-image-placeholder i {
    font-size: 48px;
    opacity: 0.6;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--green);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 0;
}

.about-content .section-tagline,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 32px;
    padding: 24px;
    background: var(--green-mist);
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
}

.about-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.about-detail i {
    color: var(--green);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.about-title-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.about-profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 100px 0;
    background: var(--green-mist);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-size: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services by Category - Pricing List */
.services-by-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.category-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green);
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--green-dark);
    margin: 0;
}

.category-services {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 12px;
    border-bottom: 1px dotted var(--border);
    margin: 0 -12px;
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.service-item:hover {
    background: var(--green-pale);
    padding-left: 16px;
}

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

.service-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    flex: 1;
    line-height: 1.4;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
}

.price-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.services-note {
    margin-top: 50px;
    text-align: center;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px dashed var(--green);
}

.services-note p {
    font-size: 14px;
    color: var(--text);
}

.services-note i {
    color: var(--green);
    margin-right: 6px;
}

.services-note a {
    font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
    background: var(--green-mist);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-pale);
}

.testimonial-stars {
    color: #e8b923;
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--green);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--green);
    transform: scale(1.2);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(74,124,89,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-size: 24px;
}

.gallery-overlay span {
    font-size: 13px;
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Placeholder */
.gallery-placeholder {
    text-align: center;
}

.gallery-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-placeholder-item {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--green);
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.gallery-placeholder-item i {
    font-size: 36px;
    opacity: 0.6;
}

.gallery-placeholder-item:hover {
    background: var(--green-pale);
    border-style: solid;
}

.gallery-coming-soon {
    font-size: 15px;
    color: var(--text-light);
}

.gallery-coming-soon a {
    font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green) 50%, var(--green-light) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-title .script-text {
    color: var(--green-pale);
    font-size: 1.1em;
}

.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.contact-item a {
    font-weight: 500;
}

.contact-note {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.contact-link {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.contact-link:hover i {
    transform: translateX(4px);
}

.contact-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
    background: var(--green-mist);
}

.contact-map iframe {
    display: block;
    min-height: 500px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-script {
    color: var(--green-light);
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    max-width: 250px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--green-light);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 16px rgba(74,124,89,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid,
    .gallery-placeholder-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

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

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .header-inner {
        height: auto;
        padding: 3px 12px;
    }

    .logo-image {
        height: 65px;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-salon-name {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-card {
        padding: 30px 20px;
    }

    .about {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content .section-tagline,
    .about-content .section-title {
        text-align: center;
    }

    .about-title-section {
        flex-direction: column;
        gap: 12px;
    }

    .about-content {
        text-align: center;
    }

    .about-details {
        align-items: center;
    }

    .about-content .btn {
        margin: 0 auto;
    }

    .services {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-by-category {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery {
        padding: 70px 0;
    }

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

    .contact {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .testimonial-card {
        padding: 36px 24px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .cta-banner {
        padding: 70px 0;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .gallery-placeholder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .section-title {
        font-size: 28px;
    }
}
