/* ============================================= */
/* FILE: public/css/app.css                     */
/* PRICELESS BEAUTY TOUCH - FULL WIDTH STYLES   */
/* ============================================= */

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

:root {
    /* Color Palette */
    --primary: #b37d97;
    --primary-dark: #9a6682;
    --primary-light: #d4a0ba;
    --secondary: #e8d5e0;
    --accent: #f0c4d8;
    --dark: #2d2a2a;
    --light: #fef9f7;
    --white: #ffffff;
    --gray-light: #f5f0ed;
    --gray: #888888;
    --text-dark: #3a3535;
    --text-light: #7a6e6e;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(179, 125, 151, 0.15);
    --shadow-hover: 0 25px 50px rgba(179, 125, 151, 0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background-color: #fffef8;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .btn-primary {
    font-family: var(--font-serif);
}

h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

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

/* Full Width Container - No max-width restrictions */
.container-full {
    width: 100%;
    /* padding: 0 2rem; */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Full width sections */
.section-full {
    width: 100%;
    margin: 0;
    padding: var(--spacing-2xl) 0;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    background: #c8a88b;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(200, 168, 139, 0.2);
}

.btn-primary:hover {
    background: #b28b6f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 168, 139, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: #721c24;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(114, 28, 36, 0.2);
}

.btn-secondary:hover {
    background: #5a151c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 28, 36, 0.3);
}

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

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    animation: pulseGlow 2s infinite;
}

.hero-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(179, 125, 151, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(179, 125, 151, 0);
    }
}

/* ---------- HEADER (Full Width) ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(200, 168, 139, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.brand-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.desktop-nav .nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #2c2a2a;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #c8a88b;
    transition: 0.3s;
}

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

.nav-link:hover {
    color: #b28b6f;
}

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

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: #2c2a2a;
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: #fffdf9;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    align-self: flex-end;
    cursor: pointer;
    color: #2c2a2a;
    margin-bottom: 2rem;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 500;
    border-bottom: 1px solid #eee;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.mobile-social {
    margin-top: auto;
    display: flex;
    gap: 1.5rem;
    font-size: 1.4rem;
    padding: 2rem 0;
}

/* ---------- HERO SECTION (Full Width) ---------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/images/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-content-wrapper {
    position: relative;
    bottom: 80px;
    text-align: center;
    z-index: 2;
    width: 100%;
}

/* ---------- ABOUT SECTION (Full Width) ---------- */
.about-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.about-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.about-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

.about-title {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 3px;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

.about-mission {
    font-size: 1.1rem;
    padding: var(--spacing-md);
    background: var(--gray-light);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    margin-top: var(--spacing-lg);
}

/* ---------- SERVICES SECTION (Full Width) ---------- */
.services-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #fafbff 0%, #f2f6ff 100%);
}

.services-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.services-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: var(--spacing-sm) auto 0;
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    background: white;
}

/* Shine Sweep Effect */
.service-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 220%;
    height: 220%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: rotate(25deg);
    opacity: 0;
    transition: 0.7s ease;
    pointer-events: none;
}

.service-card:hover::before {
    top: -20%;
    opacity: 1;
}

.service-card-inner {
    padding: 32px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: var(--spacing-xs);
}

.service-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    padding: 0;
}

.service-list li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--secondary);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 15px;
    color: #444;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

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

.service-duration {
    font-size: 0.75rem;
    color: var(--text-light);
}

.service-list small {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    color: var(--text-light);
    padding-left: var(--spacing-sm);
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    border-radius: 30px;
    margin-top: var(--spacing-md);
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(179, 125, 151, 0.3);
}

.book-btn:hover {
    transform: scale(1.02) translateY(-3px);
    background: linear-gradient(135deg, #d8a8c7, var(--primary));
    box-shadow: 0 15px 35px rgba(179, 125, 151, 0.55);
}

.book-btn i {
    transition: transform var(--transition-fast);
}

.book-btn:hover i {
    transform: translateX(5px);
}

/* ---------- GALLERY SECTION (Full Width) ---------- */
.gallery-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}

.gallery-item a {
    display: block;
    position: relative;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(179, 125, 151, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform var(--transition-base);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ---------- FAQ SECTION (Full Width) ---------- */
.faq-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.faq-accordion {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}

.faq-question:hover {
    background: var(--gray-light);
    color: var(--primary);
}

.faq-icon i {
    transition: transform var(--transition-base);
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-item.active .faq-question {
    background: var(--primary-light);
    color: var(--white);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 var(--spacing-lg);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p,
.faq-answer ul {
    margin-bottom: var(--spacing-sm);
    color: #555;
    line-height: 1.8;
}

.faq-answer ul {
    padding-left: var(--spacing-lg);
}

.hours-list {
    list-style: none;
    padding-left: 0 !important;
}

.hours-list li {
    padding: 0.3rem 0;
}

/* ---------- CONTACT SECTION (Full Width) ---------- */
.contact-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M50,0 L61.8,38.2 L100,38.2 L70.9,61.8 L82.7,100 L50,75.5 L17.3,100 L29.1,61.8 L0,38.2 L38.2,38.2 Z"/></svg>') repeat;
    opacity: 0.08;
    pointer-events: none;
}

.contact-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.contact-info-wrapper {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info-item a {
    color: var(--white);
    font-weight: 500;
}

.contact-social {
    margin-top: var(--spacing-lg);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    color: var(--primary);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    color: var(--primary-dark);
}

.social-link i {
    font-size: 1.3rem;
}

/* ---------- FOOTER (Full Width) ---------- */
.site-footer {
    width: 100%;
    background: #1e1b1b;
    color: #e8e0d5;
    padding: 4rem 0 1.5rem;
    /* margin-top: 5rem; */
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 1rem 0;
    opacity: 0.8;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social-links a:hover {
    background: #c8a88b;
    color: #1e1b1b;
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: #dbbc9f;
}

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

.footer-links li,
.footer-hours li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    transition: 0.2s;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: #dbbc9f;
    padding-left: 5px;
}

.footer-hours span {
    font-weight: 500;
    color: #dbbc9f;
}

.special-note {
    font-size: 0.75rem;
    margin-top: 0.8rem;
    font-style: italic;
}

.newsletter-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center;
}

.input-group input {
    background: transparent;
    border: none;
    padding: 0.7rem 0;
    flex: 1;
    color: white;
    outline: none;
}

.input-group button {
    background: none;
    border: none;
    color: #dbbc9f;
    font-size: 1.2rem;
    cursor: pointer;
}

.footer-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: #dbbc9f;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.8s ease forwards;
}

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

@media (prefers-reduced-motion: reduce) {
    .service-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ---------- RESPONSIVE (Full Width Adjustments) ---------- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .btn-small {
        display: none;
    }
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .gallery-item img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container, .about-container, .services-container, .gallery-container, .faq-container, .contact-container, .footer-container {
        padding: 0 1.5rem;
    }
    .footer-grid {
        gap: 2rem;
        text-align: center;
    }
    .footer-social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-info-wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .gallery-item img {
        height: 280px;
    }
    .hero-content-wrapper {
        bottom: 40px;
    }
    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }
    .service-card-inner {
        padding: 24px;
    }
    .service-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .service-card-inner {
        padding: 20px;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .contact-info-item {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
    .gallery-item img {
        height: 250px;
    }
    .services-title, .gallery-title, .faq-title, .contact-title, .about-title {
        font-size: 2rem;
    }
}

/* ---------- UTILITIES & EXTRAS ---------- */
::selection {
    background: #dbbc9f;
    color: #1e1b1b;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -30px;
        right: 0;
    }
}

/* Hide scrollbar on Chrome/Safari while keeping functionality */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================ */
/* BOOKING PAGE STYLES - Full Width            */
/* ============================================ */

/* Booking Hero Section */
.booking-hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.booking-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 4rem 2rem;
}

.booking-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb {
    display: flex;
    gap: 5px;
    list-style: none;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: var(--accent);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 5px;
    color: var(--white);
}

/* Booking Form Section */
.booking-form-section {
    width: 100%;
    padding: var(--spacing-2xl) 0;
    background: var(--gray-light);
}

.booking-form-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-xl);
}

/* Form Wrapper */
.booking-form-wrapper {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.form-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Form Sections */
.appointment-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--secondary);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179, 125, 151, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 3.2rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 3.2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.textarea-icon {
    position: absolute;
    left: 1rem;
    top: 3.2rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}

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

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--text-dark);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 6px;
    transition: all 0.3s;
}

.custom-checkbox:hover .checkmark {
    border-color: var(--primary);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    margin-left: 0.5rem;
}

/* Submit Button */
.form-actions {
    margin-top: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text,
.btn-loader {
    position: relative;
    z-index: 1;
}

/* Form Message */
.form-message {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.form-message .alert-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.form-message .alert-danger {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

/* Sidebar Info */
.booking-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-hours,
.info-policy {
    list-style: none;
    padding: 0;
}

.info-hours li,
.info-policy li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px dashed var(--secondary);
}

.info-hours li:last-child,
.info-policy li:last-child {
    border-bottom: none;
}

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

.info-policy li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
}

.info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-info-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .booking-hero-content {
        padding: 3rem 1.5rem;
    }
    
    .booking-hero-title {
        font-size: 2rem;
    }
    
    .booking-hero-subtitle {
        font-size: 1rem;
    }
    
    .booking-form-container {
        padding: 0 1rem;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .booking-info-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .appointment-form {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 1rem 0.7rem 2.5rem;
        font-size: 0.85rem;
    }
    
    .input-icon,
    .textarea-icon {
        top: 2.4rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ============================================ */
/* ADMIN LOGIN PAGE STYLES - Full Width        */
/* ============================================ */

.admin-login-page {
    width: 100%;
    min-height: 100vh;
}

.admin-login-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fdf3ff, #f8ebff, #f4e0ff);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-login-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(179, 125, 151, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.admin-login-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(216, 168, 199, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.admin-login-card {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
    margin-top: 6rem;
}

.admin-login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(179, 125, 151, 0.15);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(179, 125, 151, 0.3);
}

.admin-login-icon i {
    font-size: 2rem;
    color: var(--white);
}

.admin-login-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.admin-login-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Styles */
.admin-login-form {
    width: 100%;
}

.admin-input-group {
    margin-bottom: 1.5rem;
}

.admin-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.admin-input-group label i {
    margin-right: 0.5rem;
    color: var(--primary);
    font-size: 0.8rem;
}

.admin-input-wrapper {
    position: relative;
    width: 100%;
}

.admin-input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1.5px solid var(--secondary);
    outline: none;
    background: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: var(--transition-base);
}

.admin-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179, 125, 151, 0.1);
}

.admin-input-wrapper input:hover {
    border-color: var(--primary-light);
}

/* Password Toggle Button */
.toggle-password-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-base);
    padding: 0;
}

.toggle-password-btn:hover {
    color: var(--primary);
}

/* Remember Me Row */
.admin-remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    font-size: 0.85rem;
}

.admin-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    user-select: none;
}

.admin-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.admin-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: var(--white);
    border: 1.5px solid var(--secondary);
    border-radius: 4px;
    transition: var(--transition-base);
}

.admin-checkbox:hover .checkmark {
    border-color: var(--primary);
}

.admin-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.admin-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.admin-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.admin-checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Login Button */
.admin-login-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 8px 20px rgba(179, 125, 151, 0.35);
    position: relative;
    overflow: hidden;
}

.admin-login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.admin-login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.admin-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(179, 125, 151, 0.5);
}

.admin-login-btn:active {
    transform: translateY(0);
}

.btn-text,
.btn-loader {
    position: relative;
    z-index: 1;
}

.btn-loader {
    display: none;
}

.admin-login-btn.loading .btn-text {
    display: none;
}

.admin-login-btn.loading .btn-loader {
    display: inline-block;
}

/* Message Styles */
.admin-login-message {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.admin-login-message .success {
    background: #d4edda;
    color: #155724;
    padding: 0.8rem;
    border-radius: 12px;
    border-left: 3px solid #28a745;
}

.admin-login-message .error {
    background: #f8d7da;
    color: #721c24;
    padding: 0.8rem;
    border-radius: 12px;
    border-left: 3px solid #dc3545;
}

/* Footer */
.admin-login-footer {
    text-align: center;
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary);
}

.admin-login-footer p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.admin-login-footer i {
    color: var(--primary);
    margin: 0 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-login-card {
        margin: 1rem;
        padding: 1.8rem;
        max-width: 400px;
    }
    
    .admin-login-header h2 {
        font-size: 1.5rem;
    }
    
    .admin-input-wrapper input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .admin-login-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .admin-login-section {
        padding: 1rem;
    }
    
    .admin-login-card {
        padding: 1.5rem;
    }
    
    .admin-login-icon {
        width: 55px;
        height: 55px;
    }
    
    .admin-login-icon i {
        font-size: 1.5rem;
    }
    
    .admin-login-header h2 {
        font-size: 1.3rem;
    }
    
    .admin-remember-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Animation for login card */
.admin-login-card {
    animation: adminFloatUp 0.6s ease forwards;
}

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

/* ============================================ */
/* ADMIN DASHBOARD PAGE STYLES                 */
/* ============================================ */

.admin-dashboard-page {
    width: 100%;
    background: linear-gradient(135deg, #fdfbff, #f3f5ff);
}

.dashboard-section {
    padding: 6rem 2rem;
    min-height: 100vh;
}

.dashboard-container {
    max-width: 1400px;
    margin: 5rem auto;
}

/* Dashboard Header */
.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.welcome-badge i {
    font-size: 0.9rem;
}

.dash-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.dash-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

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

/* Dashboard Cards */
.dash-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.dash-card:hover::before {
    left: 100%;
}

.dash-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.dash-card:hover .card-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.dash-icon {
    font-size: 2.2rem;
    color: var(--white);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-base);
}

.card-link i {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
}

.dash-card:hover .card-link i {
    transform: translateX(5px);
}

/* Logout Card Specific */
.logout-card {
    cursor: pointer;
}

.logout-card:hover {
    background: #fff5f5;
    border-color: #ffcece;
}

.logout-btn {
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logout-card .card-icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.logout-card .card-content h3 {
    color: #c91919;
}

.logout-card .card-content p {
    color: #7d0000;
}

.logout-card .card-link {
    color: #c91919;
}

.logout-card:hover .card-icon-wrapper {
    transform: scale(1.05);
}

/* Loading Overlay for Logout */
.logout-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.logout-loading .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.logout-loading p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dashboard-stats {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 4rem 1.5rem;
    }
    
    .dash-title {
        font-size: 1.8rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .dash-card {
        padding: 1.5rem;
    }
    
    .card-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .dash-icon {
        font-size: 1.8rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .dashboard-section {
        padding: 3rem 1rem;
    }
    
    .dash-title {
        font-size: 1.5rem;
    }
    
    .dash-subtitle {
        font-size: 0.85rem;
    }
    
    .dash-card {
        padding: 1.2rem;
    }
    
    .card-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .dash-icon {
        font-size: 1.5rem;
    }
}

/* Animation for cards */
.dash-card {
    animation: cardFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.dash-card:nth-child(1) { animation-delay: 0.05s; }
.dash-card:nth-child(2) { animation-delay: 0.1s; }
.dash-card:nth-child(3) { animation-delay: 0.15s; }
.dash-card:nth-child(4) { animation-delay: 0.2s; }
.dash-card:nth-child(5) { animation-delay: 0.25s; }
.dash-card:nth-child(6) { animation-delay: 0.3s; }

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

.stat-card {
    animation: statFadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateY(15px);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

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

/* ============================================ */
/* ADMIN SERVICES MANAGEMENT STYLES            */
/* ============================================ */

.admin-services-page {
    padding: 2rem;
    max-width: 1400px;
    margin: 5rem auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-header h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.services-header p {
    color: var(--text-light);
}

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

.services-category-section {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 1rem 1.5rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header h2 {
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-header h2 i {
    font-size: 1.2rem;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.services-table-wrapper {
    overflow-x: auto;
}

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

.services-table th,
.services-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--secondary);
}

.services-table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--dark);
}

.services-table tr:hover {
    background: var(--gray-light);
}

.service-name-cell .service-name {
    font-weight: 600;
    color: var(--dark);
}

.service-name-cell .service-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.edit-btn {
    background: #e3f2fd;
    color: #1976d2;
}

.edit-btn:hover {
    background: #1976d2;
    color: white;
    transform: scale(1.05);
}

.delete-btn {
    background: #ffebee;
    color: #c62828;
}

.delete-btn:hover {
    background: #c62828;
    color: white;
    transform: scale(1.05);
}

/* Service Form Styles */
.service-form-page {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #fdfbff, #f3f5ff);
}

.service-form-container {
    max-width: 700px;
    margin: 5rem auto;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.form-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.form-header p {
    color: var(--light);
}

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

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

.service-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.required {
    color: var(--primary);
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    font-family: var(--font-sans);
    transition: var(--transition-base);
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179, 125, 151, 0.1);
}

.service-form small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 1.5rem;
}

.warning-text {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--secondary);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-danger {
    background: #c62828;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-danger:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-services-page {
        padding: 1rem;
    }
    
    .services-header {
        flex-direction: column;
        text-align: center;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
    }
    
    .service-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

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

/* ============================================ */
/* APPOINTMENTS PAGE STYLES                    */
/* ============================================ */

.appointments-page {
    padding: 2rem;
    max-width: 1400px;
    margin: 5rem auto;
}

/* Header Styles */
.appointments-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.appointments-header-left h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.appointments-header-left p {
    color: var(--text-light);
}

.appointments-header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.breadcrumb-nav {
    margin-bottom: 0.8rem;
}

.back-to-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.back-to-dashboard:hover {
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.dashboard-btn,
.services-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    text-decoration: none;
}

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

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

.services-link-btn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
}

.services-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Stats Cards */
.appointments-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--secondary);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.3rem;
    color: white;
}

.stat-info .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Search Bar */
.appointments-search {
    margin-bottom: 2rem;
}

.search-form {
    width: 100%;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
}

.search-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.5rem;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179, 125, 151, 0.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-base);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.clear-search {
    position: absolute;
    right: 6rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.clear-search:hover {
    text-decoration: underline;
}

/* Table Styles */
.appointments-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.appointments-table th,
.appointments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--secondary);
    vertical-align: top;
}

.appointments-table th {
    background: linear-gradient(135deg, #fdf3ff, #f8ebff);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointments-table tr:hover {
    background: var(--gray-light);
}

.appointments-table td strong {
    color: var(--primary);
}

.appointments-table td i {
    color: var(--light);
    width: 20px;
    font-size: 0.8rem;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3e0;
    color: #ff9800;
}

.status-confirmed {
    background: #e8f5e9;
    color: #4caf50;
}

.status-cancelled {
    background: #ffebee;
    color: #f44336;
}

/* Change Status Button */
.change-status-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.change-status-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem !important;
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.empty-state span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: var(--transition-base);
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-body p strong {
    color: var(--primary);
}

.form-group {
    margin-top: 1rem;
}

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

.status-select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    font-family: var(--font-sans);
    transition: var(--transition-base);
}

.status-select:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--secondary);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-footer button {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-footer .btn-secondary {
    background: var(--gray-light);
    border: none;
    color: var(--text-dark);
}

.modal-footer .btn-secondary:hover {
    background: var(--secondary);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper nav {
    display: inline-block;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.pagination-wrapper .page-item .page-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-wrapper .page-item .page-link:hover {
    background: var(--primary-light);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .appointments-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .appointments-page {
        padding: 1rem;
    }
    
    .appointments-header {
        flex-direction: column;
    }
    
    .appointments-header-right {
        width: 100%;
        flex-direction: column;
    }
    
    .appointments-header-right a {
        width: 100%;
        justify-content: center;
    }
    
    .appointments-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-info .stat-value {
        font-size: 1.3rem;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .clear-search {
        right: 5rem;
    }
    
    /* Mobile table */
    .appointments-table thead {
        display: none;
    }
    
    .appointments-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--secondary);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .appointments-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.8rem;
        border-bottom: 1px solid var(--secondary);
    }
    
    .appointments-table tbody td:last-child {
        border-bottom: none;
    }
    
    .appointments-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary);
        width: 40%;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .appointments-stats {
        grid-template-columns: 1fr;
    }
}

/* Add-on styling */
.addon-price {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-left: 0.3rem;
}

.addon-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.addons-summary {
    margin: 2.5rem 0;
}

.addons-summary .summary-card {
    /* background: linear-gradient(135deg, #f0f9ff, #e8f4f8); */
    border-left-color: #4caf50;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--secondary);
}

.addon-item:last-child {
    border-bottom: none;
}

.addons-total {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 2px solid var(--secondary);
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--dark);
}

.addons-total span:last-child {
    color: var(--primary);
    font-size: 1.1rem;
}


/* Add to app.css */

/* Add-ons Page Styles */
.admin-addons-page {
    padding: 2rem;
    max-width: 1400px;
    margin: 5rem auto;
}

.addons-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.addons-header-left h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.addons-header-left p {
    color: var(--text-light);
}

.addons-header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.addons-category-section {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 1rem 1.5rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header h2 {
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.addons-table-wrapper {
    overflow-x: auto;
}

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

.addons-table th,
.addons-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--secondary);
}

.addons-table th {
    background: var(--gray-light);
    font-weight: 700;
    color: var(--dark);
    font-size: 0.85rem;
}

.addons-table tr:hover {
    background: var(--gray-light);
}

.addon-name {
    font-weight: 600;
    color: var(--dark);
}

.addon-price {
    font-weight: 700;
    color: var(--primary);
}

.addon-description {
    color: var(--text-light);
    font-size: 0.85rem;
    max-width: 250px;
}

.addon-sort {
    text-align: center;
    width: 80px;
}

/* Add-on Form Styles */
.addon-form-page {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #fdfbff, #f3f5ff);
}

.addon-form-container {
    max-width: 700px;
    margin: 5rem auto;
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

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

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

.addon-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.addon-form input,
.addon-form select,
.addon-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    font-family: var(--font-sans);
    transition: var(--transition-base);
}

.addon-form input:focus,
.addon-form select:focus,
.addon-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(179, 125, 151, 0.1);
}

.addon-form small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-addons-page {
        padding: 1rem;
    }
    
    .addons-header {
        flex-direction: column;
    }
    
    .addons-header-right {
        width: 100%;
        flex-direction: column;
    }
    
    .addons-header-right a {
        width: 100%;
        justify-content: center;
    }
    
    .addons-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .addon-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .addon-form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

/* Add to app.css */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: auto;
}

.status-toggle .status-badge {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

/* Add to your app.css */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}