/* =============================================
   BEAUTY STUDIO AYLIN - Main Stylesheet
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #c4a882;
    --primary-dark: #a8896a;
    --primary-light: #d4bfa8;
    --accent: #d4a574;
    --gold: #c9a96e;
    --rose: #d4a5a5;

    --bg-cream: #faf6f2;
    --bg-warm: #f3ece4;
    --bg-blush: #ecddd3;

    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;

    --white: #ffffff;
    --black: #1a1a1a;

    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.top-bar a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar p,
.top-bar-text {
    margin: 0;
    font-size: inherit;
    letter-spacing: inherit;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: all var(--transition);
}

.navbar.scrolled {
    height: 68px;
    box-shadow: var(--shadow-md);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--black);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}

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

.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    letter-spacing: 2px !important;
    transition: all var(--transition) !important;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all var(--transition);
    display: block;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 2px;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

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

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--primary);
    margin: 20px auto;
}

.section-desc {
    font-size: 14px;
    color: var(--text-medium);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 42px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--black);
}

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

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 80px 100px;
    background: var(--bg-cream);
    z-index: 2;
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-size: 62px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
    color: var(--primary);
}

.hero-desc {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 440px;
    margin-bottom: 44px;
    line-height: 1.9;
    font-weight: 300;
}

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

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 65%;
    height: 70%;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 200px 200px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    z-index: 3;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--primary);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--bg-blush);
    padding: 100px 40px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.08);
}

.page-header h1 {
    font-size: 52px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 12px;
}

.page-header .section-divider {
    margin: 16px auto;
}

.breadcrumb {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--primary);
}

/* ===== SERVICE / TREATMENT CARDS ===== */
.card-grid {
    display: grid;
    gap: 30px;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.service-card-image img,
.service-card-image .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card-image .placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.service-card:hover .service-card-image img,
.service-card:hover .service-card-image .placeholder {
    transform: scale(1.06);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    padding: 50px 24px 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.service-card-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
}

.service-card-info {
    padding: 20px 0;
}

.service-card-title {
    font-size: 22px;
    color: var(--black);
}

.service-card-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Treatment Cards (with body text) */
.treatment-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.treatment-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.treatment-card-image img,
.treatment-card-image .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.treatment-card:hover .treatment-card-image img,
.treatment-card:hover .treatment-card-image .placeholder {
    transform: scale(1.08);
}

.treatment-card-body {
    padding: 28px;
}

.treatment-card-title {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 10px;
}

.treatment-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}

.treatment-card-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.treatment-card:hover .treatment-card-link {
    gap: 14px;
    color: var(--primary-dark);
}

/* ===== PRICING ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--bg-blush);
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all var(--transition);
    color: var(--text-medium);
}

.pricing-tab.active,
.pricing-tab:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.pricing-category {
    margin-bottom: 48px;
}

.pricing-category-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--black);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-blush);
    margin-bottom: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--bg-warm);
    transition: background var(--transition);
}

.pricing-item:hover {
    background: var(--bg-cream);
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
}

.pricing-item-left {
    flex: 1;
}

.pricing-item-name {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.pricing-item-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 3px;
    font-weight: 300;
}

.pricing-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--bg-blush);
    margin: 0 20px;
    min-width: 40px;
}

.pricing-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: 500;
    white-space: nowrap;
}

/* ===== LOOKBOOK GRID ===== */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 12px;
}

.lookbook-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.lookbook-item img,
.lookbook-item .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.lookbook-item:hover img,
.lookbook-item:hover .placeholder {
    transform: scale(1.05);
}

.lookbook-item .lookbook-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lookbook-item:hover .lookbook-overlay {
    background: rgba(0,0,0,0.3);
}

.lookbook-overlay-content {
    color: var(--white);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.lookbook-item:hover .lookbook-overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.lookbook-overlay-content span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.lookbook-span-2 { grid-column: span 2; }
.lookbook-span-row { grid-row: span 2; }

/* ===== SHOP CARDS ===== */
.shop-card {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.shop-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.shop-card-image img,
.shop-card-image .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.shop-card:hover .shop-card-image img,
.shop-card:hover .shop-card-image .placeholder {
    transform: scale(1.06);
}

.shop-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    font-weight: 500;
    z-index: 2;
}

.shop-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px;
    transform: translateY(100%);
    transition: transform var(--transition);
    text-align: center;
}

.shop-card:hover .shop-card-actions {
    transform: translateY(0);
}

.shop-card-body {
    padding: 20px;
    text-align: center;
}

.shop-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.shop-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--primary-dark);
}

.shop-card-price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
    margin-right: 8px;
}

/* ===== APPOINTMENT FORM ===== */
.appointment-section {
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.appointment-section .section-label { color: rgba(255,255,255,0.7); }
.appointment-section .section-title { color: var(--white); }
.appointment-section .section-divider { background: rgba(255,255,255,0.4); }
.appointment-section .section-desc { color: rgba(255,255,255,0.8); }

.appointment-form {
    max-width: 740px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    transition: all var(--transition);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-input:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.2);
}

.form-input option {
    color: var(--text-dark);
    background: var(--white);
}

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

/* Light form variant */
.form-light .form-input {
    border: 1px solid var(--bg-blush);
    background: var(--white);
    color: var(--text-dark);
}

.form-light .form-input::placeholder {
    color: var(--text-light);
}

.form-light .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.1);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image img,
.about-image .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; font-size: 42px; }
.about-content .section-divider { margin: 20px 0; }

.about-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 300;
}

.usp-list li {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.usp-list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

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

.testimonial-author {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--black);
}

.contact-detail {
    padding: 18px 0;
    border-bottom: 1px solid var(--bg-warm);
}

.contact-detail-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--primary-dark);
}

.contact-detail-value a:hover {
    color: var(--primary);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 46px;
    height: 46px;
    border: 1px solid var(--bg-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
    color: var(--text-medium);
}

.social-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.contact-map {
    width: 100%;
    min-height: 450px;
    background: var(--bg-warm);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

.contact-map .placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ===== INSTAGRAM FEED ===== */
.insta-section {
    padding: 60px 0 0;
    text-align: center;
    background: var(--bg-cream);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 30px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.insta-item img,
.insta-item .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.insta-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
}

.insta-item:hover::after {
    background: rgba(0,0,0,0.2);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--black);
    padding: 80px 40px;
    text-align: center;
}

.cta-banner .section-label { color: var(--gold); }
.cta-banner .section-title { color: var(--white); font-size: 42px; }
.cta-banner .section-divider { background: var(--gold); }
.cta-banner .section-desc { color: rgba(255,255,255,0.6); }

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    padding: 80px 60px 30px;
}

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

.footer-brand .logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.9;
    font-weight: 300;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
    color: var(--primary);
}

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

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

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

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

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

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 99;
    font-size: 18px;
}

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

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    fill: #ffffff;
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
    text-decoration: none;
}

/* ===== PLACEHOLDER BACKGROUNDS ===== */
.placeholder-bg-1 { background: linear-gradient(135deg, #e8d5c4, #d4bfa8); }
.placeholder-bg-2 { background: linear-gradient(135deg, #d4c5b9, #c4b0a0); }
.placeholder-bg-3 { background: linear-gradient(135deg, #dcc8b8, #c9b5a3); }
.placeholder-bg-4 { background: linear-gradient(135deg, #e0d0c2, #cbb8a6); }
.placeholder-bg-5 { background: linear-gradient(135deg, #d8c4b4, #c4afa0); }
.placeholder-bg-6 { background: linear-gradient(135deg, #e4d4c6, #d0bfad); }
.placeholder-bg-dark-1 { background: linear-gradient(135deg, #3d3028, #5a4a3a); }
.placeholder-bg-dark-2 { background: linear-gradient(135deg, #4a3f35, #6b5d4f); }
.placeholder-bg-dark-3 { background: linear-gradient(135deg, #5a4a3a, #3d3028); }
.placeholder-bg-dark-4 { background: linear-gradient(135deg, #6b5d4f, #4a3f35); }

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Extra placeholder backgrounds used by pages */
.placeholder-bg {
    width: 100%;
    height: 100%;
}
.placeholder-bg-hero { background: linear-gradient(135deg, var(--bg-blush) 0%, var(--primary) 50%, var(--primary-dark) 100%); }
.placeholder-bg-about { background: linear-gradient(135deg, var(--bg-blush), var(--bg-warm)); }
.placeholder-bg-insta-1 { background: linear-gradient(135deg, #d4bfa8, #c4a882); }
.placeholder-bg-insta-2 { background: linear-gradient(135deg, #c9b5a3, #b8a090); }
.placeholder-bg-insta-3 { background: linear-gradient(135deg, #dcc8b8, #c4b0a0); }
.placeholder-bg-insta-4 { background: linear-gradient(135deg, #c4afa0, #b89e8e); }
.placeholder-bg-insta-5 { background: linear-gradient(135deg, #d8c4b4, #c4b0a0); }
.placeholder-bg-insta-6 { background: linear-gradient(135deg, #e0d0c2, #cbb8a6); }

/* ===== NAVBAR INNER (agent pages structure) ===== */
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

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

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

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

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--black);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 2px;
}

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

.mobile-nav-cta {
    margin-top: 16px;
}

/* ===== HERO GRID (agent pages structure) ===== */
.hero-grid {
    display: flex;
    min-height: 85vh;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
}

.hero-label {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-grid .hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 28px;
}

.hero-grid .hero-desc {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
}

.hero-grid .hero-image {
    flex: 1;
    min-height: 500px;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.hero-grid .hero-image .placeholder-bg {
    border-radius: 200px 200px 0 0;
}

/* ===== SERVICE CARD BODY (extra classes) ===== */
.service-card-body {
    padding: 20px 0;
}

.service-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 6px;
    font-weight: 300;
}

/* ===== USP ITEMS (agent variant) ===== */
.usp-item {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.usp-icon {
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.usp-list {
    margin-bottom: 32px;
}

/* ===== TESTIMONIAL EXTRAS ===== */
.testimonial-name {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-role {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.star {
    color: var(--gold);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--black);
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-weight: 400;
}

/* ===== CTA BANNER INNER ===== */
.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== INSTAGRAM OVERLAY ===== */
.insta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
    z-index: 2;
}

.insta-item:hover .insta-overlay {
    background: rgba(0,0,0,0.3);
}

.insta-icon {
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

/* ===== FOOTER EXTRAS ===== */
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.9;
    font-weight: 300;
    max-width: 320px;
    color: rgba(255,255,255,0.5);
}

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

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

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

.footer-col-title {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 300;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

.footer-contact-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

/* ===== BACKGROUND UTILITY ===== */
.bg-cream { background-color: var(--bg-cream); }
.bg-warm { background-color: var(--bg-warm); }
.bg-white { background-color: var(--white); }

/* ===== FAQ DETAILS/SUMMARY ===== */
details {
    border-bottom: 1px solid var(--bg-warm);
}

details summary {
    padding: 18px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: transform var(--transition);
}

details[open] summary::after {
    content: '-';
}

details .faq-answer,
details p {
    padding: 0 0 18px;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== BTN SECONDARY ===== */
.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE EXTRAS ===== */
@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }
    .hero-grid .hero-image {
        min-height: 400px;
        width: 100%;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-grid .hero-title { font-size: 38px; }
    .hero-grid { gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-number, .stat-suffix { font-size: 36px; }
    .cta-banner-title { font-size: 32px; }
    .mobile-nav-overlay.open { display: flex; }
}

@media (max-width: 480px) {
    .hero-grid .hero-title { font-size: 32px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-number, .stat-suffix { font-size: 30px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .navbar { padding: 0 40px; }
    .footer { padding: 60px 40px 24px; }
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; min-height: auto; }
    .hero-left { padding: 60px 40px; }
    .hero-title { font-size: 46px; }
    .hero-right { min-height: 50vh; }
    .hero-scroll { left: 40px; }

    .section { padding: 80px 0; }

    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .about-grid { flex-direction: column; gap: 40px; }
    .about-image { width: 100%; }

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

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .navbar { padding: 0 24px; height: 68px; }

    .hero-left { padding: 40px 24px; }
    .hero-title { font-size: 38px; }
    .hero-desc { font-size: 14px; }
    .hero-scroll { display: none; }

    .section { padding: 60px 0; }
    .container, .container-narrow, .container-wide { padding: 0 20px; }

    .section-title { font-size: 36px; }
    .page-header h1 { font-size: 38px; }
    .page-header { padding: 80px 24px 50px; }

    .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }

    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .lookbook-span-2 { grid-column: span 2; }

    .shop-card { max-width: 100%; }

    .appointment-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer { padding: 40px 24px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .btn { padding: 14px 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 30px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }
    .pricing-tabs { gap: 6px; }
    .pricing-tab { padding: 8px 16px; font-size: 10px; }
    .lookbook-grid { grid-template-columns: 1fr; }
    .lookbook-span-2 { grid-column: span 1; }
}
