/* ============================================
   MOHICANZ UNISEX SALON - LUXURY PREMIUM THEME
   Dark Emerald + Gold Premium Design
   ============================================ */

/* ============ CSS Variables ============ */
:root {
    --emerald: #0B3D2E;
    --emerald-dark: #072A1F;
    --emerald-light: #145C44;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #A68B1B;
    --ivory: #F9F7F3;
    --beige: #E8DCCB;
    --dark: #1E1E1E;
    --dark-2: #2A2A2A;
    --charcoal: #1F1F1F;
    --text-primary: #1F1F1F;
    --text-secondary: #555555;
    --text-light: #F9F7F3;
    --text-muted: #888888;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(11, 61, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(11, 61, 46, 0.1);
    --shadow-lg: 0 20px 60px rgba(11, 61, 46, 0.15);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

/* ============ Typography ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
}

/* ============ Section Header ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

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

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(11, 61, 46, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(11, 61, 46, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.3);
}

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

/* ============ Preloader ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--emerald-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ Header / Navigation ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(11, 61, 46, 0.08);
}

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

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

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header.scrolled .nav-link {
    color: var(--charcoal);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--emerald);
}

.header.scrolled .nav-link::after {
    background: var(--emerald);
}

.nav-book-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--charcoal) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.nav-book-btn::after {
    display: none !important;
}

.nav-book-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4) !important;
}

.nav-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--white);
    z-index: 100;
}

.header.scrolled .nav-toggle {
    color: var(--charcoal);
}

.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--charcoal);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 42, 31, 0.88) 0%, rgba(11, 61, 46, 0.72) 50%, rgba(30, 30, 30, 0.6) 100%);
}

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

.hero-subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-down span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 28px; opacity: 0.3; }
}

/* ============ About Section ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--ivory);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    padding-left: 20px;
}

.about-heading {
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 20px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    font-size: 1.3rem;
    color: var(--emerald);
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ============ Services Section ============ */
.services {
    background: var(--white);
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(11, 61, 46, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

.service-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(11, 61, 46, 0.15));
    pointer-events: none;
}

.service-content {
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 14px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(11, 61, 46, 0.12);
    position: relative;
    z-index: 2;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald);
    border-color: var(--emerald);
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--emerald);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 1.1rem;
    color: var(--emerald);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-hover-line {
    display: none;
}

/* ============ Gallery Section ============ */
.gallery {
    background: var(--ivory);
}

.gallery-slider {
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.7), rgba(201, 162, 39, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Swiper customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--emerald) !important;
    background: var(--white);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--emerald) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--gold) !important;
}

/* ============ Products Section ============ */
.products {
    background: var(--white);
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img-wrapper {
    height: 280px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* ============ Why Choose Us ============ */
.why-us {
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us .section-subtitle {
    color: var(--gold-light);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-line {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ============ Reviews Section ============ */
.reviews {
    background: var(--ivory);
}

.review-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 46, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    margin-bottom: 16px;
}

.review-stars i {
    color: var(--gold);
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-avatar span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    font-family: var(--font-body);
}

.review-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============ Transformations ============ */
.transformations {
    background: var(--white);
}

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

.transform-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.transform-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.transform-card:hover img {
    transform: scale(1.1);
}

.transform-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(11, 61, 46, 0.9) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============ Stylists Section ============ */
.stylists {
    background: var(--white);
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stylist-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--ivory);
    border: 1px solid rgba(11, 61, 46, 0.06);
    transition: var(--transition);
}

.stylist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.2);
}

.stylist-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #0a0a0a;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.stylist-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.stylist-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylist-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.stylist-card h4 {
    font-size: 1.05rem;
    color: var(--emerald);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.stylist-card span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stylist-card p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.6;
}

/* ============ Beauty Tips ============ */
.beauty-tips {
    background: var(--ivory);
}

.tip-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 61, 46, 0.05);
    transition: var(--transition);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tip-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
}

.tip-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.tip-card h4 {
    font-size: 1rem;
    color: var(--emerald);
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.tip-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ FAQ Section ============ */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(11, 61, 46, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(11, 61, 46, 0.15);
}

.faq-item.active {
    border-color: var(--emerald);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    background: var(--ivory);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--emerald);
}

.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--charcoal);
}

.faq-item.active .faq-question h4 {
    color: var(--white);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--emerald);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.faq-answer p {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============ Timing Section ============ */
.timing {
    background: var(--ivory);
    padding: 80px 0;
}

.timing-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 61, 46, 0.06);
}

.timing-clock {
    flex-shrink: 0;
}

.clock-face {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--ivory);
    border: 3px solid var(--emerald);
    box-shadow: var(--shadow-sm);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 4px;
}

.hour-hand {
    width: 3px;
    height: 36px;
    background: var(--emerald);
    margin-left: -1.5px;
}

.minute-hand {
    width: 2px;
    height: 48px;
    background: var(--emerald-light);
    margin-left: -1px;
}

.second-hand {
    width: 1px;
    height: 52px;
    background: var(--gold);
    margin-left: -0.5px;
}

.clock-number {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
}

.n12 { top: 8px; left: 50%; transform: translateX(-50%); }
.n3 { right: 12px; top: 50%; transform: translateY(-50%); }
.n6 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.n9 { left: 12px; top: 50%; transform: translateY(-50%); }

.timing-info h2 {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 20px;
}

.timing-schedule {
    margin-bottom: 16px;
}

.timing-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.timing-day {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timing-hours {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--emerald);
    background: rgba(11, 61, 46, 0.06);
    padding: 4px 12px;
    border-radius: 20px;
}

.timing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ Location Section ============ */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-map iframe {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.location-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-item i {
    font-size: 1.3rem;
    color: var(--emerald);
    margin-top: 2px;
}

.location-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    font-family: var(--font-body);
    margin-bottom: 2px;
}

.location-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.shop-exterior-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.shop-exterior-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.shop-exterior-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* ============ Contact Section ============ */
.contact {
    background: var(--ivory);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact-item a:hover {
    color: var(--emerald);
}

.contact-social h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--charcoal);
}

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(11, 61, 46, 0.1);
    transition: var(--transition);
}

.social-link i {
    font-size: 1.1rem;
    color: var(--emerald);
}

.social-link:hover {
    background: var(--emerald);
    border-color: var(--emerald);
    transform: translateY(-3px);
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(11, 61, 46, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--ivory);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group label {
    display: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============ Instagram Section ============ */
.instagram {
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

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

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

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.7), rgba(201, 162, 39, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.insta-overlay i {
    font-size: 1.8rem;
    color: var(--white);
}

/* ============ Footer ============ */
.footer {
    background: var(--emerald-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo-img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

.footer-social a i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-social a:hover i {
    color: var(--charcoal);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============ Floating Buttons ============ */
.floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.float-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.float-btn i {
    font-size: 1.3rem;
    color: var(--white);
}

.booking-float-btn {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.call-btn i {
    color: var(--charcoal);
}

/* ============ Back to Top ============ */
.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* ============ Responsive Design ============ */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transformations-grid,
    .stylists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timing-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-link {
        color: var(--charcoal) !important;
        font-size: 1rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--emerald) !important;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 200px;
        margin-top: 16px;
        border: none;
    }
    
    .about-experience {
        position: relative;
        top: auto;
        left: auto;
        display: inline-flex;
        flex-direction: column;
        margin-top: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .transformations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stylists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-exterior-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stylists-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timing-card {
        padding: 30px 20px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .floating-buttons {
        right: 16px;
        bottom: 16px;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
    }
}
