/* Nail Art Studio - Luxury Beauty Website CSS */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #d4a574;
    /* Rose Gold */
    --secondary-color: #6b4c7a;
    /* Deep Plum */
    --accent-color: #f8f4f1;
    /* Ivory */

    /* Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f4f1;
    --bg-tertiary: #faf8f5;
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
    --header-bg: rgba(255, 255, 255, 0.98);
    --card-bg: #ffffff;
    --footer-bg: #1a1a1a;
    --text-on-dark: #ffffff;
    --text-light-on-dark: #b0b0b0;

    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-soft: linear-gradient(135deg, #f8f4f1, #e8ddd0);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #222222;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-light: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.15);
    --header-bg: rgba(18, 18, 18, 0.98);
    --card-bg: #1e1e1e;
    --gradient-soft: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    --footer-bg: #0a0a0a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    /* Removed overflow-y: auto to allow window scroll events and fix sticky positioning */
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.text-center {
    text-align: center !important;
}

.section h2+p,
.gallery-header p,
.services-header p,
.hero-content p,
.hero-content p.subtitle {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure hero content h1 is also centered consistently */
.hero-content h1 {
    text-align: center;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

/* Remove specific dark mode header override as it uses variables now */

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 1.5rem;
}

/* LEFT SECTION - Logo + Name */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #b8935f;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

/* CENTER SECTION - Navigation Menu Only */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* ===== DESKTOP NAVIGATION OPTIMIZATION (1024px+) ===== */
@media (min-width: 1024px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .header-content:has(.nav-center) {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
    }

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

    .nav-actions {
        justify-content: flex-end;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

/* Extra protection for medium-sized screens (e.g. iPad Pro landscape, smaller laptops) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .header-content {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        /* Perfect mathematical centering */
        padding: 0 20px;
        align-items: center;
        width: 100%;
        gap: 0 !important;
    }

    .logo {
        justify-self: start;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        gap: 8px;
    }

    .nav-center {
        justify-self: center;
        display: flex;
        align-items: center;
        width: auto !important;
        margin: 0 auto;
    }

    .nav-menu {
        gap: 0.8rem !important;
        /* Slightly more space to look better */
    }

    .nav-link {
        font-size: 0.8rem !important;
        white-space: nowrap;
        padding: 0.5rem 0.2rem;
    }

    .nav-actions {
        justify-self: end;
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        margin-left: 0.5rem;
    }

    .logo span {
        display: block !important;
        font-size: 1.2rem;
    }
}

/* Maximum protection for 1024px viewport */
@media (min-width: 1024px) and (max-width: 1100px) {
    .nav-menu {
        gap: 0.4rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .logo span {
        font-size: 1rem;
    }
}

/* RIGHT SECTION - Login | Register Only */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

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

[data-theme="dark"] .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

[data-theme="dark"] .btn-primary {
    color: white !important;
    background: var(--gradient-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

[data-theme="dark"] .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hide mobile actions on desktop */
.mobile-nav-actions {
    display: none;
}

/* Dark Mode Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    color: var(--primary-color);
    /* Added for strokes */
    transition: var(--transition);
}

.theme-toggle:hover svg {
    fill: white !important;
    color: white !important;
}

[data-theme="dark"] .theme-toggle svg {
    fill: white;
    color: white;
}

[data-theme="dark"] .theme-toggle:hover svg {
    fill: white;
}

/* Sidebar Theme Toggle */
.sidebar-theme-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.sidebar-theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.sidebar-theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Scroll Up Button Styles */
.scroll-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    z-index: 2000;
    /* Increased z-index */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
}

.scroll-up-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-up-btn:hover {
    transform: translateY(-5px);
}

.scroll-up-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-primary);
}

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

.section-services {
    background-color: var(--bg-primary);
}

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

.section-about {
    background-color: var(--bg-primary);
}

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

.section-hero {
    padding: 150px 0 100px;
    background: var(--gradient-soft);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .section-hero {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
}

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

.section-services {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

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

.section-pricing {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

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

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    min-width: 160px;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: var(--gradient-primary);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.service-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

[data-theme="dark"] .service-card {
    background: var(--bg-secondary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: center;
}

/* Push button containers to bottom of service cards */
.service-card>div[style*="margin-top: 1rem"] {
    margin-top: auto !important;
    padding-top: 1.5rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Inline Services Layout (Heading and Paragraph on same line) */
.inline-services .service-card,
.inline-services .pricing-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.inline-services .service-icon {
    margin: 0 auto 1.5rem;
    width: 65px;
    height: 65px;
    background: var(--gradient-soft);
    border-radius: 15px;
    /* More modern than circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.inline-services h3 {
    display: inline;
    margin: 0 0.25rem 0 0 !important;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.inline-services h3::after {
    content: " —";
    margin-right: 0.25rem;
    color: var(--primary-color);
    font-weight: 400;
}

.inline-services p {
    display: inline;
    margin: 0 !important;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.inline-services ul {
    width: 100%;
    margin: 2rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--border-color);
    list-style: none;
    text-align: center;
}

.inline-services ul li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.inline-services .badge-container {
    margin-top: auto;
    padding-top: 1.5rem;
}

.inline-services .time-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== GALLERY SECTION ===== */
.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    background: var(--gradient-soft);
    min-height: 300px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

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

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: center;
    width: 100%;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-align: center;
}

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

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.contact-details h4 {
    display: inline;
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.contact-details h4::after {
    content: " —";
    margin-right: 0.25rem;
    color: var(--primary-color);
}

.contact-details p {
    display: inline;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
    box-sizing: border-box;
    appearance: none;
    /* For cleaner select appearance */
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

/* Contact Page Buttons */
.contact-form .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
    width: auto;
}

/* Service Section Button Centering */
.section-services .text-center .btn {
    display: inline-block !important;
    margin: 0 auto !important;
}

.service-card ul {
    list-style-position: inside;
    text-align: center;
    padding: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    color: var(--text-on-dark);
    padding: 60px 0 30px;
}

.footer p {
    color: var(--text-light-on-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: #b8935f;
    font-weight: normal;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--text-light-on-dark);
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light-on-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light-on-dark);
}

.footer-bottom p {
    color: var(--text-light-on-dark);
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===== DASHBOARD STYLES ===== */
/* ===== DASHBOARD "LUXE AURA" DESIGN ===== */
.dashboard {
    min-height: 100vh;
    background: #fdfaf7;
    /* Creamy peach background */
    background: radial-gradient(circle at 0% 0%, #fdfaf7 0%, #f4e9df 50%, #fdfaf7 100%);
    overflow-x: hidden;
    color: #4a3427;
}

[data-theme="dark"] .dashboard {
    background: #141414;
    background: radial-gradient(circle at 0% 0%, #1a1a1a 0%, #141414 50%, #1a1a1a 100%);
    color: #f7f3f0;
}

.dashboard .header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .dashboard .header {
    background: rgba(20, 20, 20, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    gap: 0;
    overflow: hidden;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.user-text {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.2;
}

.user-status {
    font-size: 0.8rem;
    color: var(--text-light);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dashboard-sidebar {
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    position: fixed;
    top: 70px;
    left: 0;
    width: 280px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 90;
    transition: var(--transition);
}

/* Sidebar Overhaul */
.dashboard-sidebar {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    margin: 1.5rem;
    height: calc(100vh - 120px);
    width: 260px;
    position: fixed;
    top: 85px;
    left: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dashboard-sidebar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.dashboard-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.sidebar-menu {
    list-style: none;
    padding: 0 1rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.3s ease;
    gap: 12px;
}

.sidebar-menu a:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar-menu a.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.user-info-mobile {
    display: none;
}

.user-info-sidebar {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}

.sidebar-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sidebar-user-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sidebar-user-role {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dashboard-main {
    margin-left: 300px;
    padding: 2.5rem;
    margin-top: 80px;
    /* Increased to prevent overlap */
    min-height: calc(100vh - 80px);
    transition: all 0.5s ease;
}

/* Dashboard Grids */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Glass Cards */
.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: var(--card-bg);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    animation: none;
}

.stat-value {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

/* Mobile Design Overhaul */
@media (max-width: 1023px) {
    .dashboard-sidebar {
        left: -300px;
        margin: 0;
        top: 0;
        height: 100vh;
        border-radius: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }

    .dashboard-sidebar.active {
        left: 0;
    }

    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
        margin-top: 90px;
        /* Slightly more space for the header */
        padding-bottom: 80px;
    }

    .dashboard-section {
        padding-top: 1rem;
    }

    .user-info-sidebar {
        padding-top: 4rem;
    }
}

@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }
}

/* Dashboard Table Styles */
.dashboard-section table {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.dashboard-section th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.dashboard-section td {
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.dashboard-section tr:hover td {
    background: var(--bg-secondary);
}

/* Dark mode overrides for dashboard handled by variables above */

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.status-badge:hover {
    transform: scale(1.05);
}

/* Dashboard Forms */
.dashboard-section .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.dashboard-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Dashboard Buttons */
.dashboard-section .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.3px;
}

.dashboard-section .btn:hover {
    transform: translateY(-2px);
}

/* Dashboard Cards */
.dashboard-section>div[style*="background: white"] {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.dashboard-section>div[style*="background: white"]:hover {
    box-shadow: var(--shadow-hover);
}

/* ===== FORMS ===== */
.auth-page {
    height: 100vh;
    overflow: hidden;
}

.auth-container {
    height: 100vh;
    padding-top: 80px;
    /* Fixed header height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
}

[data-theme="dark"] .auth-container {
    background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
}

/* Allow scrolling on portal page */
.portal-page {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    padding-bottom: 2rem;
}

.auth-form {
    background: var(--bg-primary);
    padding: 1.25rem 1.75rem;
    /* Reduced padding nudge */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 480px;
    /* Slimmer */
    max-height: 90vh;
    /* Ensure it stays within screen */
    overflow-y: auto;
    scrollbar-width: none;
}

.auth-form .btn {
    width: 100%;
    margin-bottom: 0.75rem;
    /* Tighter spacing */
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    /* Sidebars are handled in the mobile overhauled section above */
}

@media (max-width: 1023px) {
    .header-content {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .services-grid,
    .gallery-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

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

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

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-form {
        padding: 1rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-card,
    .pricing-card,
    .contact-form {
        padding: 1.5rem;
    }

    .auth-form {
        padding: 2rem;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-only {
        display: block;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1023px) {
    .header {
        height: 70px;
    }

    .header-content {
        padding: 0 20px;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 1023px) {
    .header {
        height: 70px;
    }

    .logo {
        z-index: 1002;
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .logo span,
    .logo-icon {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-center {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--header-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        /* Ensure flex is used for column layout */
    }

    .nav-center.mobile-active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary) !important;
        /* Force visibility in dark mode */
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: var(--gradient-soft);
        border-radius: var(--border-radius);
    }

    .nav-actions:not(.dashboard-actions) {
        display: none !important;
    }

    .dashboard-actions {
        display: flex !important;
        gap: 1rem;
    }

    .dashboard-actions .theme-toggle,
    .dashboard-actions .user-info-desktop,
    .dashboard-actions .logout-btn {
        display: none !important;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
        align-items: center;
    }

    .mobile-nav-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .mobile-nav-actions .theme-toggle {
        display: flex !important;
    }

    /* Hero adjustments */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        min-height: 400px;
    }

    /* Grid adjustments */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }

    .logo span {
        font-size: 1.5rem;
        display: inline-block !important;
        /* Ensure visibility */
        color: #b8935f;
        z-index: 1002;
        position: relative;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        z-index: 1002;
        position: relative;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}


/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .footer,
    .btn {
        display: none;
    }

    .section {
        padding: 20px 0;
    }
}

/* ===== APPOINTMENT PAGE STYLES ===== */
/* Service Selection Checkboxes */
.service-option-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);

}

.service-option-label:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);

}

/* Time Slot Grid */
.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;

}

@media (max-width: 1023px) {
    .time-slot-grid {
        grid-template-columns: repeat(3, 1fr);

    }
}

@media (max-width: 480px) {
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);

    }


}

/* Time Slot Buttons */
.time-slot {
    height: 46px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.time-slot:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-tertiary);

}

.time-slot.selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;

}

[data-theme="dark"] .time-slot:hover {
    background: var(--bg-tertiary);

}

/* Date Time Grid Container */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;

}

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

    }


}

/* Date Input Styling */
input[type="date"] {
    width: 100%;
    color-scheme: light;

}

[data-theme="dark"] input[type="date"] {
    color-scheme: dark;

}

.form-control {
    width: 100%;
    box-sizing: border-box;

}

/* Fix for date picker positioning */
.form-group {
    position: relative;
    width: 100%;

}

/* ===== PREMIUM APPOINTMENT BOOKING REDESIGN ===== */
/* Booking Container */
.booking-container {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

/* Step Cards */
.booking-step-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);

}

.booking-step-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 165, 116, 0.3);

}

[data-theme="dark"] .booking-step-card {
    background: var(--bg-secondary);

}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);

}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.3);

}

.step-title {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;

}

/* Service Cards Grid */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;

}

.service-card-input {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */

}

.service-card-input:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);

}

.service-card-input input[type="checkbox"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    accent-color: var(--primary-color);
    width: 1.2rem;
    height: 1.2rem;

}

.service-name {
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);

}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;

}

/* Dashboard form labels in dark mode */
[data-theme="dark"] .dashboard label {
    color: var(--text-primary) !important;
}

/* Selected State for Services */
.service-card-input:has(input:checked),
.service-card-input.selected {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.05);
    /* Subtle tint */
    box-shadow: 0 0 0 1px var(--primary-color);

}

/* Form Inputs Redesign */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;

}

.styled-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);

}

.styled-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);

}

.fancy-label {
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    background: var(--bg-primary);
    padding: 0 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;

}

[data-theme="dark"] .styled-input {
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.1);

}

[data-theme="dark"] .fancy-label {
    background: var(--bg-secondary);
    /* Matches card bg */
    color: var(--text-light);

}

/* Booking Summary Card */
.booking-summary-card {
    background: var(--gradient-soft);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);

}

.summary-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);

}

.summary-header h3 {
    margin: 0;
    font-size: 1.5rem;

}

.submit-area {
    margin-top: 2rem;
    text-align: center;

}

.btn-book {
    padding: 1rem 4rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);

}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.4);

}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .booking-step-card {
        padding: 1.5rem;

    }

    .service-selection-grid {
        grid-template-columns: 1fr;

    }


}

/* Social Login Buttons */
.social-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem !important;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    width: 100%;
}

.social-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-btn svg {
    flex-shrink: 0;
}

/* Tab/Mobile view button length reduction */
@media (max-width: 1023px) {
    .social-buttons-container {
        grid-template-columns: 1fr 1fr !important;
        max-width: 350px;
        margin: 1rem auto 0;
        gap: 0.75rem;
    }

    .social-btn {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .social-buttons-container {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }
}