/* ============================================
   Photo Studio - Custom Styles
   ============================================ */

/* ---------- Root Variables ---------- */
:root {
    --primary: #c8a97e;
    --primary-dark: #b08d5f;
    --primary-light: #e8d5b5;
    --accent: #1a1a2e;
    --accent-light: #16213e;
    --dark: #0a0a0f;
    --dark-card: #111118;
    --dark-surface: #1a1a25;
    --light: #f8f7f4;
    --light-card: #ffffff;
    --light-surface: #f0efe9;
    --text-dark: #1a1a2e;
    --text-light: #e8e8e8;
    --text-muted: #6b7280;
    --gold-gradient: linear-gradient(135deg, #c8a97e, #e8d5b5, #c8a97e);
    --dark-gradient: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(200,169,126,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Dark Theme Override ---------- */
[data-theme="dark"] {
    --bg: var(--dark);
    --bg-card: var(--dark-card);
    --bg-surface: var(--dark-surface);
    --text: var(--text-light);
    --text-secondary: #9ca3af;
    --border: rgba(255,255,255,0.08);
    --nav-bg: rgba(10,10,15,0.85);
}

[data-theme="light"] {
    --bg: var(--light);
    --bg-card: var(--light-card);
    --bg-surface: var(--light-surface);
    --text: var(--text-dark);
    --text-secondary: #6b7280;
    --border: rgba(0,0,0,0.08);
    --nav-bg: rgba(255,255,255,0.85);
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: transparent;
}

.header {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--nav-bg);
    padding: 0.7rem 2rem;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0.6rem 1.1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

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

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

.theme-toggle {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(15deg);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

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

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-login-link {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-login-link:hover {
    color: var(--primary);
    background: rgba(200, 169, 126, 0.1);
}

.nav-icon-link {
    color: var(--text);
    opacity: 0.7;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.nav-icon-link:hover {
    opacity: 1;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-only, .mobile-close {
    display: none;
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 1024px) {
    .mobile-only { display: block; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        transition: right 0.35s ease;
        z-index: 1001;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        padding: 0.9rem 1rem;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }
    .nav-links a:hover { background: var(--bg-surface); }
    .nav-links a::after { display: none; }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
    .mobile-close {
        display: block;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: none;
        border: none;
        color: var(--text);
        font-size: 1.8rem;
        cursor: pointer;
    }
}

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

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

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slider .slide.active { opacity: 1; }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(200,169,126,0.2);
    border: 1px solid rgba(200,169,126,0.3);
    color: var(--primary-light);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.btn-dark {
    background: var(--accent);
    color: #fff;
}
.btn-dark:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---------- Sections ---------- */
section { padding: 5rem 2rem; }

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

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ---------- Cards ---------- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

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

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

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

.card-body {
    padding: 1.5rem;
}

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    section { padding: 3rem 1.25rem; }
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

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

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

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

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

.gallery-item .overlay span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ---------- Category Filter Tabs ---------- */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-tabs button {
    background: var(--bg-surface);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-tabs button:hover,
.filter-tabs button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- Pricing Cards ---------- */
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price small {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    display: block;
    font-weight: 400;
}

.pricing-card .features {
    list-style: none;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.pricing-card .features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-card .features li:last-child { border: none; }

.pricing-card .features li i {
    font-size: 0.8rem;
}

.pricing-card .features li.included i { color: #22c55e; }
.pricing-card .features li.excluded { opacity: 0.4; }
.pricing-card .features li.excluded i { color: #ef4444; }

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .client-info h4 {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

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

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--dark-gradient);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,169,126,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.15);
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

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

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ---------- Page Header / Banner ---------- */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--dark-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(200,169,126,0.08) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    position: relative;
}

.page-header .breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    position: relative;
}

.page-header .breadcrumb a {
    color: var(--primary-light);
}

/* ---------- About Page ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

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

.about-image .experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-image .experience-badge h3 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.about-image .experience-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    padding: 2.5rem 2rem;
}

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

.service-card .icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: rgba(200,169,126,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------- Booking Form ---------- */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booking-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.booking-step.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.booking-step.active { color: var(--primary); font-weight: 600; }

.booking-step.completed .step-num {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

@media (max-width: 640px) {
    .booking-steps { gap: 1rem; font-size: 0.8rem; }
    .booking-step span:not(.step-num) { display: none; }
}

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

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ---------- Flash Messages ---------- */
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    min-width: 300px;
}

.flash-success {
    background: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 0.2);
}

.flash-error {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.2);
}

.flash-warning {
    background: rgba(245, 158, 11, 0.9);
    border-color: rgba(245, 158, 11, 0.2);
}

.flash-info {
    background: rgba(59, 130, 246, 0.9);
    border-color: rgba(59, 130, 246, 0.2);
}

.flash-message span {
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
}

.flash-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    margin-left: 1rem;
    opacity: 0.7;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flash-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ---------- Loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ---------- Misc ---------- */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ---------- Payment Selection ---------- */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: var(--primary-light);
    background: rgba(200,169,126,0.05);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-card .custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.payment-method-card input[type="radio"]:checked ~ .custom-radio {
    border-color: var(--primary);
}

.payment-method-card input[type="radio"]:checked ~ .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.payment-method-card.selected {
    border-color: var(--primary);
    background: rgba(200,169,126,0.08);
}

.payment-method-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.payment-method-card.selected .payment-method-icon {
    background: var(--primary);
    color: #fff;
}

.payment-method-info {
    flex: 1;
}

.payment-method-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.payment-method-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------- Dashboard Redesign ---------- */
:root {
    --dash-primary: #6366f1;
    --dash-primary-light: #e0e7ff;
    --dash-bg: #f8fafc;
    --dash-sidebar: #ffffff;
    --dash-card: #ffffff;
    --dash-text: #0f172a;
    --dash-text-muted: #64748b;
    --dash-border: #e2e8f0;
    --dash-accent: #f59e0b;
    --dash-glass: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] {
    --dash-bg: #0f172a;
    --dash-sidebar: #1e293b;
    --dash-card: #1e293b;
    --dash-text: #f1f5f9;
    --dash-text-muted: #94a3b8;
    --dash-border: #334155;
    --dash-primary-light: rgba(139, 92, 246, 0.2);
}

.dash-container {
    display: grid;
    grid-template-columns: 260px 1fr 340px;
    min-height: 100vh;
    padding-top: 80px;
    background: var(--dash-bg);
}

.dash-sidebar {
    background: var(--dash-sidebar);
    border-right: 1px solid var(--dash-border);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 80px; /* Stick below header */
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem; /* Increased gap for better spacing */
    padding: 1rem 1.25rem; /* Increased padding */
    border-radius: var(--radius-md);
    color: var(--dash-text-muted);
    font-weight: 500;
    font-size: 0.95rem; /* Slightly larger text */
    transition: var(--transition);
    text-decoration: none;
}

.dash-nav-item i { 
    font-size: 1.2rem; /* Larger icons */
    width: 24px; /* Fixed width for alignment */
    text-align: center;
}

.dash-nav-item:hover, .dash-nav-item.active {
    background: var(--dash-primary);
    color: #fff;
}

.dash-nav-item.active {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.dash-main {
    padding: 2.5rem 2rem; /* Increased top padding */
    overflow-y: auto;
    max-width: 1200px; /* Constrain width on very large screens */
    margin: 0 auto;
    width: 100%;
}

.dash-right {
    background: #fff;
    border-left: 1px solid var(--dash-border);
    padding: 3rem 2rem;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

[data-theme="dark"] .dash-right {
    background: var(--dash-sidebar);
}

.dash-welcome-banner {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dash-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px; /* Larger circle */
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.dash-welcome-banner h2 { font-size: 2rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.dash-welcome-banner p { opacity: 0.9; font-size: 1rem; max-width: 500px; line-height: 1.6; }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Wider default size */
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dash-stat-card {
    background: var(--dash-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--dash-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

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

.dash-stat-icon {
    width: 56px; /* Larger icon container */
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dash-stat-info h4 { 
    font-size: 0.8rem; 
    color: var(--dash-text-muted); 
    margin-bottom: 0.25rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-family: var(--font-heading);
}
.dash-stat-info p { font-size: 1.75rem; font-weight: 700; color: var(--dash-text); }

.dash-progress-circle {
    width: 80px;
    height: 80px;
    position: relative;
}

.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--dash-border);
}

.dash-section-header h3 { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: var(--dash-text); 
    font-family: var(--font-heading);
}

.dash-table-card {
    background: var(--dash-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--dash-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dash-text-muted);
    background: var(--bg-surface); /* Keep consistent with theme surface */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-table td {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    border-top: 1px solid var(--dash-border);
    color: var(--dash-text);
}

.dash-profile-card {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
    background: var(--dash-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dash-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dash-profile-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dash-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--dash-primary-light);
    border-radius: 50%;
}

.dash-profile-status-dot {
    position: absolute;
    bottom: 5px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border: 3px solid #fff;
    border-radius: 50%;
}

.dash-profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dash-text);
}

.dash-profile-email {
    font-size: 0.9rem;
    color: var(--dash-text-muted);
    margin-bottom: 2rem;
}

.dash-profile-progress {
    width: 100%;
    padding: 1.25rem;
    background: var(--dash-primary-light);
    color: var(--dash-primary);
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}

.dash-progress-bar-bg {
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.dash-progress-bar-fill {
    height: 100%;
    background: var(--dash-primary);
    border-radius: 10px;
    transition: width 1s ease-out;
}

[data-theme="dark"] .dash-profile-status-dot { border-color: var(--dash-sidebar); }
[data-theme="dark"] .dash-progress-bar-bg { background: rgba(255,255,255,0.1); }

.dash-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    padding: 4px;
    border: 3px solid var(--dash-primary);
    position: relative;
    background: var(--dash-card);
}

.dash-profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.dash-status-update {
    padding: 2rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: var(--radius-lg);
    margin-top: auto;
}

.dash-status-update h4 {
    color: #e11d48;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dash-status-update p {
    font-size: 0.875rem;
    color: #881337;
    line-height: 1.6;
}

[data-theme="dark"] .dash-status-update {
    background: rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.2);
}

[data-theme="dark"] .dash-status-update h4 { color: #fb7185; }
[data-theme="dark"] .dash-status-update p { color: #fda4af; }

.dash-item-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dash-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--dash-card);
    border: 1px solid var(--dash-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.dash-list-item:hover {
    transform: translateX(5px);
    border-color: var(--dash-primary);
    box-shadow: var(--shadow-md);
}

.dash-list-icon {
    width: 48px;
    height: 48px;
    background: var(--dash-primary-light);
    color: var(--dash-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .dash-container { grid-template-columns: 240px 1fr; }
    .dash-right { display: none; }
}

@media (max-width: 900px) {
    .dash-container { grid-template-columns: 80px 1fr; }
    .dash-sidebar span { display: none; }
    .dash-nav-item { justify-content: center; padding: 1rem; }
    .dash-welcome-banner { flex-direction: column; text-align: center; padding: 2rem; }
    .dash-main { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .dash-container { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
}


/* Badge Utility Styles */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.bg-yellow-100 { background: #fef9c3; color: #854d0e; }
.bg-blue-100 { background: #dbeafe; color: #1e40af; }
.bg-purple-100 { background: #f3e8ff; color: #6b21a8; }
.bg-green-100 { background: #dcfce7; color: #166534; }
.bg-red-100 { background: #fee2e2; color: #991b1b; }
.bg-gray-100 { background: #f3f4f6; color: #1f2937; }

/* Dashboard Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

[data-theme="dark"] .badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

[data-theme="dark"] .bg-yellow-100 { color: #facc15; border-color: rgba(250, 204, 21, 0.2); }
[data-theme="dark"] .bg-blue-100 { color: #60a5fa; border-color: rgba(96, 165, 250, 0.2); }
[data-theme="dark"] .bg-purple-100 { color: #c084fc; border-color: rgba(192, 132, 252, 0.2); }
[data-theme="dark"] .bg-green-100 { color: #4ade80; border-color: rgba(74, 222, 128, 0.2); }
[data-theme="dark"] .bg-red-100 { color: #f87171; border-color: rgba(248, 113, 113, 0.2); }

