/* ============================================
   GLOW BEAUTY SALON - Premium Growth Tier
   styles.css - The Foundation of Luxury
   ============================================ */

/* 1. DESIGN TOKENS & VARIABLES */
:root {
    /* Color Palette - Refined & Sophisticated */
    --blush: #FDF2F8;
    --blush-dark: #FCE7F3;
    --mauve: #4A1A2C;
    --mauve-soft: #6B3A4E;
    --mauve-light: #8A5A6E;
    --rose-gold: #B76E79;
    --rose-gold-dark: #9E5C66;
    --rose-gold-light: #D49CA5;
    --cream: #FFF5EB;
    --cream-dark: #FFF0E0;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #F3F4F6;
    
    /* Typography */
    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1280px;
    --section-padding: clamp(60px, 8vw, 120px);
    --container-padding: clamp(20px, 4vw, 40px);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Premium Shadows (Layered for depth) */
    --shadow-sm: 0 4px 6px -1px rgba(74, 26, 44, 0.05), 0 2px 4px -1px rgba(74, 26, 44, 0.03);
    --shadow-md: 0 10px 30px -10px rgba(183, 110, 121, 0.15), 0 4px 10px -5px rgba(183, 110, 121, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(183, 110, 121, 0.2), 0 8px 20px -8px rgba(74, 26, 44, 0.1);
    --shadow-glow: 0 0 20px rgba(183, 110, 121, 0.3);
    
    /* Transitions - "Expensive" Easing */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-base: 0.4s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--mauve);
    background-color: var(--blush);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.8s var(--ease-smooth) forwards;
}

@keyframes pageLoad {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose-gold-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-gold); }

/* Selection Color */
::selection { background: var(--rose-gold); color: var(--white); }

/* 3. TYPOGRAPHY & FLUID SCALE */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--mauve);
    line-height: 1.15;
    font-weight: 600;
}

.section-label {
    font-family: var(--font-body);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.section-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--mauve);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtext {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--mauve-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 4. LAYOUT & UTILITIES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-center { text-align: center; }
.section-blush { background: var(--blush); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-mauve { background: var(--mauve); color: var(--cream); }
.section-mauve h2, .section-mauve h3, .section-mauve h4 { color: var(--cream); }
.section-rose { background: var(--rose-gold); color: var(--white); }
.section-rose h2 { color: var(--white); }

/* Elegant Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 40px;
    width: 100%;
    max-width: 200px;
}

.divider.center { margin: 24px auto 40px; }

.divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    opacity: 0.5;
}

.divider .diamond {
    color: var(--rose-gold);
    font-size: 12px;
    opacity: 0.8;
    transform: rotate(45deg);
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid var(--rose-gold);
}

/* 5. BUTTONS & INTERACTIVE ELEMENTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover {
    background: var(--rose-gold-dark);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

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

.btn-outline-rose {
    background: transparent;
    color: var(--rose-gold);
    border: 1.5px solid var(--rose-gold);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-outline-rose:hover {
    background: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--rose-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--cream);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* 6. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(253, 242, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(74, 26, 44, 0.05);
    padding: 16px 0;
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.header.scrolled .logo { color: var(--mauve); }

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.header.scrolled .nav-links a { color: var(--mauve); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: var(--rose-gold);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

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

.nav-links a:hover { color: var(--rose-gold); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.header.scrolled .hamburger { background: rgba(183, 110, 121, 0.1); }

.hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.header.scrolled .hamburger span { background: var(--mauve); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253, 242, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 600;
    color: var(--mauve);
    transform: translateY(20px);
    transition: var(--transition-base);
    opacity: 0;
}

.mobile-menu.active a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose-gold); }

/* 7. HERO SECTION */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80');
}

/* Fallback for mobile where fixed attachment can be buggy */
@media (max-width: 768px) { .hero { background-attachment: scroll; } }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(74, 26, 44, 0.3) 0%, 
        rgba(74, 26, 44, 0.6) 50%, 
        rgba(74, 26, 44, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--container-padding);
    animation: heroFadeUp 1s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    display: block;
}

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px auto;
    width: 100%;
    max-width: 200px;
}

.hero-divider .line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent);
}

.hero-divider .diamond {
    color: var(--rose-gold-light);
    font-size: 12px;
    transform: rotate(45deg);
    display: inline-block;
    width: 8px; height: 8px;
    border: 1px solid var(--rose-gold-light);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    text-transform: uppercase;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.5s infinite;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover { opacity: 1; }

.scroll-indicator svg {
    width: 28px; height: 28px;
    stroke: var(--rose-gold-light);
    stroke-width: 1.5;
    fill: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Page Heroes */
.page-hero { height: 50vh; min-height: 450px; }
.page-hero-sm { height: 40vh; min-height: 350px; }
.page-hero .hero-heading { font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.hero-subtext {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--cream);
    margin-top: 16px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* 8. WELCOME SECTION */
.welcome-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content .section-heading { font-size: clamp(32px, 4vw, 44px); }

.welcome-text {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--mauve-soft);
    line-height: 1.9;
    margin-top: 24px;
    font-weight: 400;
}

/* 9. CARDS (Services, Features, Testimonials, Team) */
/* Base Card Styles */
.card-base {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(183, 110, 121, 0.05);
}

.card-base:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(183, 110, 121, 0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-card-image::after { opacity: 1; }

.service-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

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

.service-card-body { padding: 32px 24px; text-align: center; }

.service-card-body h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 600;
    color: var(--mauve);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-price {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--rose-gold);
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.03), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(183, 110, 121, 0.2));
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 600;
    color: var(--mauve);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    color: var(--mauve-soft);
    line-height: 1.7;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--rose-gold);
    position: relative;
    transition: var(--transition-base);
}

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

.testimonial-quote-mark {
    font-family: var(--font-head);
    font-size: 80px;
    color: var(--rose-gold);
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-text {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 20px;
    color: var(--mauve);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-detail {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 56px auto 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.team-photo {
    width: 180px; height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid var(--cream);
    box-shadow: var(--shadow-md);
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--rose-gold), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-base);
}

.team-card:hover .team-photo::after { opacity: 1; }

.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-card h3 { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--mauve); margin-bottom: 8px; }
.team-role { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--rose-gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.team-specialty { font-size: 14px; color: var(--mauve-soft); line-height: 1.6; margin-bottom: 12px; }
.team-certs { font-size: 13px; color: var(--rose-gold); font-weight: 500; font-style: italic; }

/* 10. INFO GRID (Hours, Location) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-column { text-align: center; padding: 24px; }
.info-icon { font-size: 36px; margin-bottom: 20px; display: inline-block; }
.info-column h3 { font-family: var(--font-head); font-size: 30px; font-weight: 600; color: var(--cream); margin-bottom: 20px; }

.hours-list { margin-bottom: 16px; }
.hours-list li, .info-text { font-family: var(--font-body); font-size: 16px; color: var(--cream); line-height: 1.8; font-weight: 400; }
.info-note { font-style: italic; font-size: 14px !important; color: var(--rose-gold-light) !important; margin-top: 12px; font-weight: 400; }

.info-link {
    color: var(--rose-gold-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    font-size: 15px;
}

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

.info-link:hover::after { width: 100%; }
.info-link:hover { color: var(--white); }

/* 11. CTA SECTION */
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-content h2 { font-size: clamp(36px, 4vw, 52px); color: var(--white); margin-bottom: 20px; font-weight: 600; }
.cta-content p { font-size: clamp(16px, 1.5vw, 18px); color: var(--cream); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }

/* 12. STORY SECTION */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-text .section-heading { font-size: clamp(32px, 3.5vw, 42px); text-align: left; margin-bottom: 32px; }
.story-text p { font-size: 16px; color: var(--mauve-soft); line-height: 1.9; margin-bottom: 24px; }

.story-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.story-image img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; transition: transform 1s var(--ease-smooth); }
.story-image:hover img { transform: scale(1.03); }

/* 13. TIMELINE */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 64px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
    opacity: 0.3;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 64px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
    width: 42%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(183, 110, 121, 0.05);
}

.timeline-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; text-align: left; }

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 56px;
    background: var(--white);
    border: 2px solid var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--rose-gold);
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-node {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateX(-50%) scale(1.1);
}

.timeline-content h4 { font-family: var(--font-head); font-size: 24px; color: var(--mauve); margin-bottom: 12px; font-weight: 600; }
.timeline-content p { font-size: 15px; color: var(--mauve-soft); line-height: 1.7; }

/* 14. SERVICES LIST (Pricing Page) */
.service-category { margin-bottom: 80px; }
.service-category:last-child { margin-bottom: 0; }

.category-heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    color: var(--mauve);
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.category-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 2px;
    background: var(--rose-gold);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.service-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: var(--transition-base);
    border: 1px solid rgba(183, 110, 121, 0.05);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(183, 110, 121, 0.2);
}

.service-item-info { flex: 1; }
.service-item-info h4 { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--mauve); margin-bottom: 8px; }
.service-item-info p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }

.service-item-price {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--rose-gold);
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

.service-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

/* 15. CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 { font-family: var(--font-head); font-size: 32px; font-weight: 600; color: var(--mauve); margin-bottom: 32px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
    font-size: 24px;
    color: var(--rose-gold);
    flex-shrink: 0;
    margin-top: 2px;
    width: 32px;
    text-align: center;
}

.contact-item-text { font-size: 16px; color: var(--mauve); line-height: 1.6; }
.contact-item-text strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mauve-soft); margin-bottom: 4px; font-weight: 600; }
.contact-item-text a { color: var(--rose-gold); font-weight: 500; }
.contact-item-text a:hover { color: var(--rose-gold-dark); text-decoration: underline; }

.social-links { display: flex; gap: 16px; margin-top: 32px; }

.social-links a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-gold);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--rose-gold);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 { font-family: var(--font-head); font-size: 32px; font-weight: 600; color: var(--mauve); margin-bottom: 24px; }
.contact-form-card iframe { width: 100%; min-height: 500px; border: 0; border-radius: var(--radius-sm); display: block; }

/* 16. FLOATING ELEMENTS & FOOTER */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 64px; height: 64px;
    background: #25D366; /* WhatsApp Green for recognition, or use rose-gold */
    background: var(--rose-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(183, 110, 121, 0.4);
    z-index: 998;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(183, 110, 121, 0.5);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

.footer {
    background: var(--mauve);
    color: var(--cream);
    padding: 80px 0 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    opacity: 0.3;
}

.footer-logo { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: 0.02em; }
.footer-tagline { font-size: 15px; color: var(--rose-gold-light); margin-bottom: 32px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; }

.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--cream); transition: var(--transition-fast); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links a:hover { color: var(--rose-gold); }

.footer-divider { width: 60px; height: 1px; background: var(--rose-gold); opacity: 0.3; margin: 0 auto 24px; }
.footer-copy { font-size: 13px; color: var(--mauve-light); }

/* 17. SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.team-grid .team-card:nth-child(1) { transition-delay: 0.1s; }
.team-grid .team-card:nth-child(2) { transition-delay: 0.2s; }
.team-grid .team-card:nth-child(3) { transition-delay: 0.3s; }

/* 18. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .story-image { order: -1; }
    .story-image img { min-height: 350px; }
    .services-list { grid-template-columns: 1fr; }
    
    .timeline::before { left: 30px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 80px; }
    .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; text-align: left; margin: 0; }
    .timeline-node { left: 30px; transform: translateX(-50%); }
    .timeline-item:hover .timeline-node { transform: translateX(-50%) scale(1.1); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    
    .hero-heading { font-size: clamp(40px, 10vw, 56px); }
    .hero-tagline { font-size: 16px; letter-spacing: 0.15em; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; }
    
    .section { padding: 80px 0; }
    .section-heading { font-size: clamp(28px, 6vw, 36px); }
    
    .services-grid, .features-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .service-item { flex-direction: column; align-items: flex-start; gap: 16px; }
    .service-item-actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
    .service-item-price { text-align: left; min-width: auto; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 300px; }
    
    .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
    .hero { min-height: 600px; }
    .hero-heading { font-size: 36px; }
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .feature-card, .testimonial-card, .team-card, .service-item, .timeline-content, .contact-form-card { padding: 24px; }
}

/* 19. ACCESSIBILITY & REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-content { opacity: 1; transform: none; }
    .reveal { opacity: 1; transform: none; }
}

/* Focus States for Accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--rose-gold);
    outline-offset: 4px;
    border-radius: 4px;
}