@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Elegant Pink & White Color Palette - Refined */
    --bg-primary: #FFFBFC;
    --bg-secondary: #FFF5F7;
    --bg-hero: linear-gradient(135deg, rgba(255, 245, 247, 0.95) 0%, rgba(255, 238, 242, 0.9) 100%);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(26, 26, 46, 0.8);

    --pink-50: #FFF0F3;
    --pink-100: #FFE4EA;
    --pink-200: #FFCCD6;
    --pink-300: #FFB3C2;
    --pink-400: #FF8FAA;
    --pink-500: #FF6B8A;
    --pink-600: #E84A6F;
    --pink-700: #D62D55;
    --pink-accent: linear-gradient(135deg, #FF6B8A 0%, #FF8FAA 100%);
    --gold-accent: linear-gradient(135deg, #D4AF37 0%, #F9E272 100%);

    --text-primary: #1A1A2E;
    --text-secondary: #4A4A68;
    --text-muted: #8B8BA8;
    --text-light: #AFAFC7;

    --white: #FFFFFF;
    --line: rgba(255, 107, 138, 0.1);
    --line-strong: rgba(255, 107, 138, 0.2);

    --shadow-sm: 0 2px 10px rgba(255, 107, 138, 0.05);
    --shadow-md: 0 10px 40px rgba(255, 107, 138, 0.1);
    --shadow-lg: 0 30px 70px rgba(255, 107, 138, 0.15);
    --shadow-glow: 0 0 50px rgba(255, 107, 138, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 50px;

    --container: 1280px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.muted-text {
    color: var(--text-muted);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.brand span {
    background: var(--pink-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    position: relative;
    padding: 0.6rem 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pink-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--pink-600);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--pink-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--pink-accent);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px);
}

.btn-compact {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 120px;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') no-repeat center center/cover;
    opacity: 0.15;
    filter: saturate(1.2);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, 40px) rotate(8deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pink-100);
    border-radius: 50px;
    color: var(--pink-600);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title span {
    background: var(--pink-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.tag i {
    color: var(--pink-500);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    min-width: 200px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.stat-card strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink-600);
    display: block;
}

.stat-card small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.time-row:hover {
    background: var(--pink-50);
}

.time-row strong {
    color: var(--pink-600);
}

.testimonial {
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--white) 100%);
    border: 1px solid var(--pink-100);
}

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-accent);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ============================================
   PILL BADGES
============================================ */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    border-radius: 50px;
    color: var(--pink-600);
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    background: var(--pink-accent);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   SECTIONS
============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section.muted {
    background: var(--bg-secondary);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 480px;
    font-size: 1.05rem;
}

/* ============================================
   SERVICES GRID
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

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

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    flex: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border: 2px dashed var(--line-strong);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
}

/* ============================================
   GALLERY GRID
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

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

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

/* ============================================
   FEATURES GRID
============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-200);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-600) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card .hero-eyebrow {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 1rem 0;
}

.cta-card .muted-text {
    color: rgba(255, 255, 255, 0.85);
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--pink-600);
}

.cta-card .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-card .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-list i {
    color: var(--pink-500);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col .brand {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col .muted-text {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--pink-400);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   FORMS (Create Account Page)
============================================ */
.form-shell {
    padding: 140px 0 100px;
    min-height: 100vh;
    background: var(--bg-hero);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.field {
    margin-bottom: 1.25rem;
}

.label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.input:focus {
    outline: none;
    border-color: var(--pink-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.1);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #047857;
}

.alert-danger {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--pink-500);
    margin-top: 3px;
}

.form-note {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-note a {
    color: var(--pink-600);
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

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

    .form-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .navbar {
        height: 70px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .stat-card {
        min-width: 100%;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .form-card {
        padding: 1.5rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.service-card,
.feature-card,
.contact-card,
.floating-card {
    animation: slideIn 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}