﻿/* Modern Service Booking System Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force-hide any visible scrollbars inside the offers section without changing layout */
.offers-section,
.offers-section * {
    -ms-overflow-style: none !important; /* IE/Edge */
    scrollbar-width: none !important; /* Firefox */
}

.offers-section *::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
}


html,
body {
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Colors - Modern Red Brand */
    --primary-color: #e60023;
    --primary-hover: #d50c22;
    --primary-light: rgba(230, 0, 35, 0.08);
    --primary-subtle: rgba(230, 0, 35, 0.12);

    /* Secondary Colors */
    --secondary-color: #767676;
    --secondary-hover: #5a5a5a;

    /* Status Colors - Improved for accessibility */
    --success-color: #00a693;
    --success-bg: #e6f7f4;
    --success-text: #0d6e5f;
    --danger-color: #e60023;
    --danger-bg: #fdeaea;
    --danger-text: #8b1a1a;
    --warning-color: #f39800;
    --warning-bg: #fff8e6;
    --warning-text: #8a6500;
    --info-color: #0074d9;
    --info-bg: #e6f2ff;
    --info-text: #004085;

    /* Neutral Colors - Enhanced contrast */
    --dark-color: #111111;
    --dark-secondary: #2d2d2d;
    --light-color: #ffffff;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
    --text-color: #333333;
    --text-secondary: #5a5a5a;
    --text-light: #767676;
    --text-muted: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafafa;

    /* Shadows - Enhanced depth */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 12px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);

    /* Border Radius - Consistent system */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions - Smooth interactions */
    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.35s ease;

    /* Spacing - Consistent scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Focus styles for accessibility */
    --focus-ring: 0 0 0 3px rgba(230, 0, 35, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Better focus handling */
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); font-weight: 600; }

p {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

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

/* Enhanced focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-sm);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    overflow-x: hidden;
}

/* Enhanced Responsive Utilities */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-bottom-nav {
    display: none;
}

.header-hidden .main-header {
    display: none !important;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
    z-index: 3001;
    isolation: isolate;
}

.profile-btn {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: none;
    background: none;
    cursor: pointer;
    display: inline-block;
}

.profile-btn:hover {
    color: var(--primary-color);
    background-color: rgba(230, 0, 35, 0.08);
}

.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background-color: white;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 3002;
    border: 1px solid #e0e0e0;
    margin-top: 8px;
}

.profile-menu.show {
    display: block;
}

.profile-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
}

.profile-menu a:last-child {
    border-bottom: none;
}

.profile-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
}

/* Mobile-first responsive breakpoints */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-bottom-nav {
        display: flex !important;
    }

    /* Better mobile typography */
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    h3 { font-size: var(--font-size-xl); }
    body { font-size: var(--font-size-sm); }
}

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

    h1 { font-size: var(--font-size-2xl); }
    h2 { font-size: var(--font-size-xl); }
    h3 { font-size: var(--font-size-lg); }
}

/* Enhanced Header - Better Mobile Experience */
.main-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    overflow: visible !important;
    isolation: isolate;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    overflow: visible !important;
    position: relative;
    z-index: 1;
    min-height: 56px;
}

.main-header .container,
.main-nav,
.desktop-nav {
    position: relative;
    overflow: visible !important;
}

.header-content .logo {
    position: static;
    margin: 0;
    z-index: auto;
    text-align: left;
    width: auto;
    max-width: none;
    flex-shrink: 0;
}

.header-content .logo a {
    display: inline-flex;
    align-items: center;
    outline: none;
    box-shadow: none;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--site-name-color, var(--primary-color));
    letter-spacing: -0.5px;
    transition: transform var(--transition);
    margin: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.logo .site-logo-img {
    max-height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo a:hover h1,
.logo a:focus h1 {
    transform: scale(1.02);
}

.main-nav {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    padding: 6px var(--space-md);
    border-radius: var(--radius-full);
    position: relative;
}

body.home-page .main-content {
    padding-top: 0 !important;
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
}

body.header-hidden .main-content {
    padding-top: 0 !important;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 20px;
}

.main-nav a.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.main-nav a.active::after {
    width: 20px;
}

.nav-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-color);
    transition: all var(--transition-fast);
    padding: 6px var(--space-md);
    border-radius: var(--radius-full);
    position: relative;
}

.nav-link-btn::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link-btn:hover,
.nav-link-btn:focus {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-link-btn:hover::after,
.nav-link-btn:focus::after {
    width: 20px;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background-color: rgba(230, 0, 35, 0.1);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav a {
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background-color: var(--primary-color);
    color: white;
}

.mobile-nav .nav-link-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav .nav-link-btn:last-child {
    border-bottom: none;
}

.mobile-nav .nav-link-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-toggle:hover {
    background-color: var(--primary-color);
    color: white;
}

.mobile-nav-submenu {
    display: none;
    background: #fafafa;
}

.mobile-nav-submenu.show {
    display: block;
}

.mobile-nav-submenu a,
.mobile-nav-submenu .nav-link-btn {
    padding-left: 40px;
}

.refer-earn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.coming-soon-tag {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e2e3e5;
    color: #383d41;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    .main-header .logo h1 {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        line-height: 1.2;
        text-align: center;
    }

    .header-content {
        flex-direction: row;
        padding: 0 var(--space-md);
        justify-content: center;
        align-items: center;
        gap: 0;
        min-height: 54px;
    }

    .logo h1 {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .main-nav a {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }

    .hamburger-menu {
        display: flex;
        position: relative;
        left: 0 !important;
        top: auto;
        transform: none;
        justify-self: start !important;
        width: 44px;
        min-width: 44px;
        margin-right: auto;
    }

    .main-nav {
        display: none !important;
    }

    .profile-dropdown {
        display: none;
    }

    .header-content .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 112px);
        max-width: 260px;
        text-align: center;
    }

    .header-content .logo h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.admin-page .mobile-nav {
        display: none !important;
    }
}

/* Homepage Map Section */
.map-section {
    padding: 60px 0;
    background: white;
    margin: 0 -24px;
    width: calc(100% + 48px);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .map-section {
        padding: var(--space-2xl) 0;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }
}

/* Footer - Enhanced */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0 1rem;
    margin-top: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
    padding: 6px 15px;
    border-radius: var(--radius-sm);
}

.footer-links a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-links .sep {
    color: rgba(255, 255, 255, 0.4);
}

.main-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Enhanced Buttons - Better Accessibility & Consistency */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: inherit;
    transition: all var(--transition);
    text-align: center;
    min-height: 40px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #e60023 0%, #c4001e 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3344 0%, #e60023 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #008577 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 166, 147, 0.3);
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 166, 147, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #e60023 0%, #c4001e 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff3344 0%, #e60023 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.btn-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

.btn-cancel {
    background-color: #6c757d;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-cancel:hover {
    background-color: #5a5a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    min-height: 32px;
    border-radius: var(--radius-sm);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
    min-height: 56px;
    border-radius: var(--radius-lg);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    color: #fff !important;
    font-size: 0;
    overflow: hidden;
}

.btn-icon::before {
    font-size: 16px;
    line-height: 1;
    font-family: inherit;
    display: inline-block;
    color: #fff;
    font-weight: 600;
}

.btn-icon.btn-edit {
    background: #0b5ed7;
    box-shadow: 0 0 0 1px #0b5ed7 inset;
}

.btn-icon.btn-edit::before {
    content: "✎";
}

.btn-icon.btn-view {
    background: #198754;
    box-shadow: 0 0 0 1px #198754 inset;
}

.btn-icon.btn-view::before {
    content: "👁";
}

.btn-icon.btn-delete {
    background: #dc3545;
    box-shadow: 0 0 0 1px #dc3545 inset;
}

.btn-icon.btn-delete::before {
    content: "🗑";
}

.btn-icon.btn-book {
    background: #198754;
    box-shadow: 0 0 0 1px #198754 inset;
}

.btn-icon.btn-book::before {
    content: "📚";
}

.btn-icon.btn-deactivate {
    background: #6c757d;
    box-shadow: 0 0 0 1px #6c757d inset;
}

.btn-icon.btn-deactivate::before {
    content: "⛔";
}

.btn-icon.btn-success {
    background: #198754;
    box-shadow: 0 0 0 1px #198754 inset;
}

.btn-icon.btn-success::before {
    content: "✓";
}

.btn-icon:hover {
    opacity: 0.9;
}

.btn-icon.btn-qr {
    background: #6f42c1;
    box-shadow: 0 0 0 1px #6f42c1 inset;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='5' height='5' rx='1'/%3E%3Crect x='16' y='3' width='5' height='5' rx='1'/%3E%3Crect x='3' y='16' width='5' height='5' rx='1'/%3E%3Crect x='10' y='3' width='2' height='2'/%3E%3Crect x='10' y='7' width='2' height='2'/%3E%3Crect x='14' y='10' width='2' height='2'/%3E%3Crect x='10' y='10' width='2' height='2'/%3E%3Crect x='10' y='14' width='2' height='2'/%3E%3Crect x='14' y='14' width='2' height='2'/%3E%3Crect x='18' y='14' width='2' height='2'/%3E%3Crect x='14' y='18' width='2' height='2'/%3E%3Crect x='18' y='18' width='2' height='2'/%3E%3Cpath d='M3 10h2M7 10h2'/%3E%3Cpath d='M10 21v-2M10 17v-1'/%3E%3Cpath d='M21 10v2M21 14v2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.btn-icon.btn-qr::before {
    content: none;
}

/* Hidden button utility */
.btn-hidden,
button[style*="display: none"],
button.hidden {
    display: none !important;
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Forms - Enhanced */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 0, 35, 0.1);
    background-color: var(--bg-color);
}

.form-group select {
    appearance: menulist;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    background-color: #fff;
    cursor: pointer;
}

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

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 4px rgba(230, 0, 35, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success-color);
    box-shadow: 0 0 0 4px rgba(0, 166, 147, 0.1);
}

.form-error-message {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-error-message::before {
    content: '⚠';
    font-size: 12px;
}

/* Alerts - Enhanced */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.alert-success {
    background-color: var(--success-bg);
    color: #0d6e5f;
    border: 1px solid #b8e0d9;
}

.alert-success::before {
    content: '✓';
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.alert-error {
    background: rgba(255, 0, 110, 0.15);
    border-color: rgba(255, 0, 110, 0.4);
    color: #ff006e;
}

.alert-error::before {
    content: '✕';
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.alert-warning {
    background-color: var(--warning-bg);
    color: #8a6500;
    border: 1px solid #ffe0a3;
}

.alert-warning::before {
    content: '!';
    background: var(--warning-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.alert-info {
    background-color: var(--info-bg);
    color: #004085;
    border: 1px solid #b6d4fe;
}

.alert-info::before {
    content: 'i';
    background: var(--info-color);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

/* Cards - Enhanced */
.category-card,
.service-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
}

.category-card::after,
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

.category-card:active,
.service-card:active {
    transform: translateY(-4px);
}

/* Card Content Styling */
.category-image-container,
.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.category-image-container img,
.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-image-container img,
.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.category-content,
.service-content {
    padding: 20px;
}

.category-content h4,
.service-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.category-content p,
.service-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0;
}

.service-price .currency {
    font-size: 14px;
    font-weight: 500;
    vertical-align: super;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.categories-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 0 24px;
}

.categories-section,
.services-section {
    margin-bottom: 80px;
}

.categories-section h3,
.services-section h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--light-color);
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
    font-size: var(--font-size-sm);
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.15);
    overflow: hidden;
    width: 100%;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.scrolling-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    overflow: visible;
}

.scrolling-text span {
    display: inline-block;
    animation: scrollText 25s linear infinite;
    white-space: nowrap;
    padding: 0 24px;
    min-width: max-content;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.scrolling-text {
    overflow: visible;
}

.scrolling-text span {
    display: inline-block;
    animation: scrollText 20s linear infinite;
    white-space: nowrap;
    position: relative;
}

@keyframes scrollText {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 124px 0 60px;
    margin: 56px -24px 60px 0;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #ffcc80;
    color: #856404;
}

.status-picked-up {
    background-color: #f8bbd0;
    color: #c2185b;
}

.status-in-process {
    background-color: #bbdefb;
    color: #1565c0;
}

.status-ready {
    background-color: #c8e6c9;
    color: #2e7d32;
}

.status-completed {
    background-color: #e0e0e0;
    color: #616161;
}

.status-cancelled {
    background-color: #ffcdd2;
    color: #c62828;
}

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

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

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

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

.status-store-only,
.status-store-only {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Auth Pages */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(255, 0, 110, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 10%, rgba(0, 245, 212, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(131, 56, 236, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 15% 15%, rgba(255, 159, 28, 0.22) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 20% 80%, rgba(255, 0, 110, 0.12) 0deg, rgba(0, 245, 212, 0.08) 60deg, transparent 120deg),
        conic-gradient(from 120deg at 80% 20%, rgba(131, 56, 236, 0.1) 0deg, rgba(255, 159, 28, 0.08) 90deg, transparent 180deg),
        conic-gradient(from 240deg at 60% 60%, rgba(78, 205, 196, 0.08) 0deg, transparent 60deg);
    animation: abstractMove 25s ease-in-out infinite;
    pointer-events: none;
}

.auth-page::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 60%);
    top: -150px;
    right: -100px;
    animation: abstractFloat1 15s ease-in-out infinite;
    pointer-events: none;
}

.auth-page .float-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 60%);
    bottom: -100px;
    left: -100px;
    animation: abstractFloat2 18s ease-in-out infinite;
    pointer-events: none;
}

.auth-page .float-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.1) 0%, transparent 60%);
    top: 40%;
    right: 5%;
    animation: abstractFloat3 22s ease-in-out infinite;
    pointer-events: none;
}

.auth-page .float-shape-3 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.12) 0%, transparent 60%);
    bottom: 20%;
    right: 20%;
    animation: abstractFloat4 20s ease-in-out infinite;
    pointer-events: none;
}

.auth-page .float-shape-4 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 60%);
    top: 15%;
    left: 25%;
    animation: abstractFloat1 16s ease-in-out infinite reverse;
    pointer-events: none;
}

.auth-page .stripe-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.015) 20px,
        rgba(255, 255, 255, 0.015) 40px
    );
    pointer-events: none;
}

@keyframes abstractMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(3%, 2%) rotate(5deg); }
    50% { transform: translate(-2%, 4%) rotate(-3deg); }
    75% { transform: translate(1%, -2%) rotate(4deg); }
}

@keyframes abstractFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes abstractFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

@keyframes abstractFloat3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-25px, 15px); }
    66% { transform: translate(20px, -25px); }
}

@keyframes abstractFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 20px); }
}

.auth-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-card h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.auth-links p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0;
}

.auth-links a {
    color: #00f5d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.auth-page .auth-card .form-group label {
    color: #fff;
}

.auth-page .auth-card .form-group input {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.auth-page .auth-card .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-page .auth-card .form-group input:focus {
    border-color: #00f5d4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 245, 212, 0.15);
}

.auth-page .auth-card .btn-primary {
    background: linear-gradient(135deg, #00f5d4 0%, #00c4a7 100%);
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.4);
}

.auth-page .auth-card .btn-primary:hover {
    background: linear-gradient(135deg, #33f7dd 0%, #00f5d4 100%);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.5);
}

/* Dashboard */
.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}




.booking-info h4 {
    margin-bottom: 0.5rem;
}

.booking-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.booking-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

/* Service Booking Page */
.service-booking-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-info {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-info h2 {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.booking-form-container {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--primary-color);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.inventory-item {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.inventory-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.stock-info {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.total-amount {
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 4px;
    text-align: center;
    font-size: 1.25rem;
}

/* Multiple Services Selection */
#services-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.service-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: var(--light-color);
    border-radius: 4px;
    flex-wrap: wrap;
}

.service-row .service-select {
    flex: 2;
    min-width: 150px;
}

.service-row .service-rate-select {
    flex: 1.5;
    min-width: 120px;
}

.service-row .service-quantity {
    width: 80px;
    flex: 0 0 80px;
}

.service-row .row-total {
    flex: 0 0 100px;
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
}

.service-row .btn-remove-service {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    border-radius: 4px;
}

/* Confirmation Page */
.confirmation-page {
    max-width: 800px;
    margin: 2rem auto;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.booking-details-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-notice {
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;
}


/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-booking-page {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-status {
        align-items: flex-start;
        width: 100%;
    }

    .carousel-controls {
        width: 40px;
        height: 40px;
    }
}

/* Carousel/Banner Styles */
.banner-carousel-section {
    margin: 0 -24px 60px -24px;
    width: calc(100% + 48px);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-hover);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
}

.carousel-slide .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.slide-placeholder h3 {
    font-size: 2rem;
    text-align: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 2rem;
    z-index: 10;
}

.slide-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.slide-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    color: var(--dark-color);
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 15;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255,255,255,0.9);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(255,255,255,0.9);
}

/* Image Container Styles */
.category-image-container,
.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    position: relative;
}

.category-image,
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-content,
.service-content {
    padding: 24px;
}

.category-content h4,
.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.3;
}

.category-content p,
.service-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 8px 0;
}

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

.category-image-container {
    height: 350px;
    margin-bottom: 1.5rem;
}

.service-content {
    padding-bottom: 1rem;
}

.image-preview {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-color);
}

.image-preview img {
    max-width: 100%;
    max-height: 250px;
    display: block;
}

/* Service and Category Card Updates */
.service-card,
.category-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}



.category-content h4,
.service-content h4 {
    margin-bottom: 0.5rem;
}

.service-price,
.service-duration {
    margin: 0.25rem 0;
    color: var(--secondary-color);
}

.service-description {
    flex-grow: 1;
    margin: 0.5rem 0;
}

.category-content .btn,
.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}


/* Additional Pinterest-style enhancements */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.no-data-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}

.main-content {
    min-height: 100vh;
    padding-top: 56px;
}

.main-content > :first-child {
    margin-top: 0 !important;
}

.main-content > .container:first-child > :first-child {
    margin-top: 0 !important;
}

/* Modern UI Enhancements */

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--bg-lighter) 25%, var(--border-light) 50%, var(--bg-lighter) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: var(--space-sm);
}

.skeleton-text:last-child {
    width: 60%;
}

/* Enhanced Cards */
.card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: var(--space-xl);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.card-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: var(--warning-bg);
    color: var(--warning-text);
}

.status-badge.status-confirmed {
    background: var(--info-bg);
    color: var(--info-text);
}

.status-badge.status-completed {
    background: var(--success-bg);
    color: var(--success-text);
}

.status-badge.status-cancelled {
    background: var(--danger-bg);
    color: var(--danger-text);
}

/* Enhanced Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.data-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    transition: all var(--transition-fast);
}

.data-table tbody tr:hover {
    background: var(--primary-light);
}

.data-table tbody tr.clickable-rows {
    cursor: pointer;
}

.data-table .no-data {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: var(--space-3xl);
}

/* Alternating row shading for the customer bookings table */
.bookings-table-container .data-table tbody tr:nth-child(even) td {
    background: #f6f6f6;
}

.bookings-table-container .data-table tbody tr:nth-child(even):hover td {
    background: var(--primary-light);
}

/* Icon-only action buttons for the customer bookings table */
.bookings-table-container .data-table td:last-child {
    white-space: nowrap;
}

.bookings-table-container .icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0 !important;
    margin: 0 2px;
    vertical-align: middle;
}

.bookings-table-container .icon-btn:hover {
    color: #fff;
}

/* Items Table (for booking services) */
.items-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: var(--space-md);
}

.items-table th,
.items-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.items-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
    font-size: var(--font-size-sm);
}

.items-table tbody tr:hover {
    background: var(--primary-light);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.empty-state-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

.empty-state-description {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.stat-card h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.quick-link-card:hover,
.quick-link-card:focus {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--primary-color);
    text-decoration: none;
}

.quick-link-icon {
    font-size: var(--font-size-2xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    color: var(--primary-color);
}

.quick-link-card h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0;
}

/* Dashboard Sections */
.dashboard-section {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.dashboard-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.badge {
    background: var(--primary-color);
    color: var(--light-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Booking Items */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.booking-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.booking-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
}

.booking-info p {
    margin: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.booking-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

/* View All Links */
.view-all {
    text-align: center;
    margin-top: var(--space-lg);
}

.view-all a:not(.btn) {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.view-all a:not(.btn):hover,
.view-all a:not(.btn):focus {
    color: var(--primary-hover);
    text-decoration: underline;
}


/* Enhanced Hero Section - Better Mobile Experience */
.hero-section-new {
    position: relative;
    height: 700px;
    margin: 0 calc(-1 * var(--space-lg));
    width: calc(100% + 2 * var(--space-lg));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.6);
}

.hero-content h1 strong {
    font-weight: 700;
}

.explore-link {
    font-size: var(--font-size-sm);
    color: var(--text-color);
    margin-bottom: var(--space-2xl);
    cursor: pointer;
}

.search-tabs {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.tab-btn {
    background: none;
    border: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    padding: var(--space-sm) 0;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
}

.tab-btn.active {
    border-bottom-color: var(--dark-color);
}

.search-form {
    background: var(--bg-color);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* Home hero search uses 4 fields (category/service/date/time) */
.hero-section-new .form-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-section-new .form-row.has-store-filter {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Sub-service dropdown visible: widen grid so date/time stay on one row */
.hero-section-new .form-row.has-subservice {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-section-new .form-row.has-subservice.has-store-filter {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .hero-section-new .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-section-new .form-row.has-store-filter {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-section-new .form-row.has-subservice,
    .hero-section-new .form-row.has-subservice.has-store-filter {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-family: inherit;
    transition: all var(--transition-fast);
}

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

.search-btn {
    background: var(--dark-color);
    color: var(--light-color);
    border: none;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.search-btn:hover,
.search-btn:focus {
    background: var(--text-color);
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero-section-new {
        max-height: 600px;
        margin: 0 calc(-1 * var(--space-md));
        width: calc(100% + 2 * var(--space-md));
    }

    .hero-overlay {
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }

    .search-form {
        padding: var(--space-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-md);
    }

    .search-btn {
        width: 100%;
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-section-new {
        height: 350px;
        margin: 0 calc(-1 * var(--space-sm));
        width: calc(100% + 2 * var(--space-sm));
    }

    .hero-overlay {
        padding: var(--space-xl) var(--space-sm);
    }

    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.explore-all {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.explore-all:hover {
    text-decoration: underline;
}

.categories-grid {
    padding: 0;
}

@media (max-width: 768px) {
    .hero-section-new {
        max-height: 600px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .search-form {
        padding: 15px;
    }
}


.form-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-weight: 700;
    color: #dc2626;
}

.price-display {
    flex: 1;
    min-width: 150px;
}

.book-btn {
    flex: 1;
    min-width: 150px;
}

/* Home content sections (About/Contact) */
.about-section-new,
.contact-section-new {
    padding: var(--space-3xl) 0;
    background: var(--bg-color);
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.about-container,
.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-container {
    grid-template-columns: 0.9fr 1.1fr;
}

.about-content h2,
.contact-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.about-content p,
.contact-content p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-image img,
.contact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.contact-info {
    margin-top: var(--space-lg);
    display: grid;
    gap: var(--space-sm);
}

.contact-info p {
    margin: 0;
}

@media (max-width: 768px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: 0 var(--space-md);
    }

    .about-section-new,
    .contact-section-new {
        padding: var(--space-2xl) 0;
        border-radius: var(--radius);
    }
}

@media (max-width: 768px) {
    .form-row-bottom {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .price-display {
        flex: 0 0 auto;
        min-width: auto;
    }

    .book-btn {
        flex: 1;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .form-row-bottom {
        flex-direction: column;
    }

    .price-display {
        width: 100%;
        justify-content: center;
    }

    .book-btn {
        width: 100%;
    }
}


/* Mobile Hero Section Fixes */
@media (max-width: 768px) {
    .hero-section-new {
        max-height: 600px;
    }

    .hero-overlay {
        padding: 20px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }

    .search-form {
        padding: 12px;
    }

    .form-row-bottom {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .price-display {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .price-value {
        font-size: 18px;
    }

    .book-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-section-new {
        height: 350px;
    }

    .hero-overlay {
        padding: 15px 12px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .search-form {
        padding: 10px;
    }

    .form-row {
        gap: 10px;
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }

    .form-row-bottom {
        gap: 8px;
    }

    .price-display {
        font-size: 13px;
    }

    .price-value {
        font-size: 16px;
    }

.book-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
}

.booking-wizard-form .booking-stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.booking-wizard-form .booking-step {
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
}

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

.booking-wizard-form .booking-panel {
    display: none;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.booking-wizard-form .booking-panel.is-active {
    display: block;
}

.booking-panel-header {
    margin-bottom: 20px;
}

.booking-panel-header h3 {
    margin-bottom: 6px;
}

.booking-panel-header p {
    margin-bottom: 0;
}

.booking-panel-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.booking-panel-actions .btn:only-child {
    margin-left: auto;
}

.booking-review-card {
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    border: 1px solid rgba(230, 0, 35, 0.14);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.review-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-line:last-child {
    border-bottom: none;
}

.review-line span {
    color: var(--text-secondary);
}

.coupon-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-row .form-control {
    flex: 1;
}

.coupon-message {
    display: block;
    margin-top: 6px;
}

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

    .booking-wizard-form .booking-panel {
        padding: 18px;
    }

    .booking-panel-actions,
    .coupon-row,
    .review-line {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-panel-actions .btn:only-child {
        margin-left: 0;
    }
}

.surface-card {
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-head h3,
.section-head h4 {
    margin-bottom: 0;
}

.form-control,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(230, 0, 35, 0.35);
}

.btn.loading {
    opacity: 0.8;
    cursor: wait;
}

.alert {
    border-radius: var(--radius);
    border: 1px solid transparent;
}

.alert-success {
    background: var(--success-bg);
    border-color: rgba(0, 166, 147, 0.16);
    color: var(--success-text);
}

.alert-error,
.alert-danger {
    background: var(--danger-bg);
    border-color: rgba(230, 0, 35, 0.14);
    color: var(--danger-text);
}

.booking-status-progress {
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: var(--bg-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.booking-status-progress .progress-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.booking-status-progress .status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 100px;
    margin: 0;
}

.booking-status-progress .status-connector {
    width: 100%;
    min-width: 60px;
    height: 4px;
    margin-top: 18px;
    background: var(--border-color);
    border-radius: 999px;
    flex: 1 1 60px;
}

.booking-status-progress .status-connector.filled {
    background: var(--primary-color);
}

.booking-status-progress .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 4px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.booking-status-progress .step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    text-align: center;
}

.booking-status-progress .estimated-time {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-align: center;
}

.booking-status-progress .status-step.completed .step-circle {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.booking-status-progress .status-step.completed .step-label {
    color: var(--text-color);
}

.booking-status-progress .status-step.completed .estimated-time {
    color: #27ae60;
}

.booking-status-progress .status-step.current .step-circle {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

.booking-status-progress .status-step.current .step-label {
    color: var(--text-color);
}

.booking-status-progress .status-step.current .estimated-time {
    color: var(--primary-color);
    font-weight: 500;
}

.booking-status-progress .status-step.current.cancelled .step-circle {
    background: var(--danger-color);
    border-color: var(--danger-color);
}

.booking-status-progress .step-circle svg {
    width: 18px;
    height: 18px;
}

.popup-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-banner-container {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.popup-banner-container a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.popup-banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.popup-banner-content {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.popup-banner-content h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #333;
}

.popup-banner-content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.popup-banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.popup-banner-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
    .popup-banner-container {
        width: 95%;
    }
    
    .popup-banner-content h3 {
        font-size: 1.2rem;
    }
    
    .popup-banner-content p {
        font-size: 0.9rem;
    }
}

.app-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    z-index: 9999999;
    animation: fadeInOverlay 0.2s ease;
}

.app-modal-overlay .app-modal-content {
    width: min(100%, 420px);
    background: #ffffff;
    color: #1f2937;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-modal-overlay .app-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.app-modal-overlay .app-modal-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.app-modal-overlay .app-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.app-modal-overlay .app-modal-btn {
    min-width: 108px;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-modal-overlay .app-modal-confirm {
    background: #28a745;
    color: #ffffff;
}

.app-modal-overlay .app-modal-confirm:hover {
    background: #218838;
    transform: translateY(-1px);
}

.app-modal-overlay .app-modal-cancel {
    background: #e5e7eb;
    color: #374151;
}

.app-modal-overlay .app-modal-cancel:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Offers Section */
.offers-section {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.offers-header {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.offers-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.offers-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
}

.offers-slider {
    position: relative;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    border-radius: var(--radius-lg);
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

.offers-slider::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
}

.offers-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    gap: var(--space-lg);
}

.offer-slide {
    flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
    min-width: 0;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.offer-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.offer-slide a {
    text-decoration: none;
    display: block;
    color: inherit;
}

.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.offer-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: #fff;
}

.offer-desc-text {
    display: none;
}

.offer-tooltip {
    position: fixed;
    z-index: 999;
    padding: var(--space-sm) var(--space-md);
    background: var(--dark-color);
    color: #fff;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

.offers-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.offers-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition-fast);
}

.offers-dots .dot:hover {
    transform: scale(1.3);
}

.offers-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .offer-slide {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: var(--space-xl) 0;
    }

    .offers-header h2 {
        font-size: var(--font-size-2xl);
    }

    .offers-header p {
        font-size: var(--font-size-sm);
    }

    .offers-slider {
        overflow-x: clip;
        overflow-y: hidden;
    }

    .offers-track {
        gap: 0;
    }

    .offer-slide {
        flex: 0 0 100%;
        border-radius: var(--radius-lg);
    }

    .offer-content {
        padding: var(--space-md);
    }

    .offer-content h3 {
        font-size: var(--font-size-lg);
    }

    .offer-desc-text {
        display: block;
        color: rgba(255,255,255,0.9);
        font-size: var(--font-size-sm);
        margin-top: var(--space-xs);
        margin-bottom: 0;
    }
}

/* ============================================
   Our Services Section
   ============================================ */
.services-section {
    padding: var(--space-2xl) 0;
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.services-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
}

.services-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-wrapper {
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.service-slide {
    flex: 0 0 calc((100% - 4 * var(--space-lg)) / 5);
    min-width: 0;
}

.services-section .service-card {
    background: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    cursor: default;
    border: none;
    position: static;
    text-align: center;
    padding: var(--space-lg);
}

.services-section .service-card-image {
    margin-bottom: var(--space-md);
}

.services-section .service-card-image img {
    max-width: 130px;
    max-height: 130px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.services-section .service-card-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--space-xs);
}

.services-section .service-card-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.services-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.services-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition-fast);
}

.services-dots .dot:hover {
    transform: scale(1.3);
}

.services-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}
/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us-section {
    padding: var(--space-) 0;
    background: var(--bg-light);
}

.why-choose-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    margin: 0 auto;
}

.why-choose-us-content {
    max-width: 800px;
}

.why-choose-us-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.why-choose-us-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

.why-choose-us-image {
    width: 100%;
    max-width: 100%;
}

.why-choose-us-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* ============================================
   Responsive: Our Services & Why Choose Us
   ============================================ */
@media (max-width: 1024px) {
    .service-slide {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: var(--space-xl) 0;
    }

    .services-header h2 {
        font-size: var(--font-size-xl);
    }

    .services-grid {
        gap: var(--space-lg);
    }

    .service-slide {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }

    .service-card {
        padding: var(--space-md);
    }

    .service-card-image img {
        width: 100px;
        height: 100px;
    }

    .service-card-content h3 {
        font-size: var(--font-size-lg);
    }

    .why-choose-us-section {
        padding: var(--space-lg) 0;
    }

    .why-choose-us-container {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .why-choose-us-content h2 {
        font-size: var(--font-size-xl);
    }

    .why-choose-us-image {
        max-width: 100%;
    }
}

.services-section .service-card::after {
    display: none;
}
