/* =================================================================
   OnlyFang Pet Grooming - Consolidated CSS Styles
   Extracted from all Blade view templates
   ================================================================= */

/* =================================================================
   1. ROOT VARIABLES & GLOBAL RESETS
   ================================================================= */
:root {
    /* Primary Theme Colors - Yellow/Gold */
    --primary-color: #FFD700;
    --primary-dark: #FFA500;
    --primary-light: #FFED4E;

    /* Secondary/Accent Colors - Black/Dark */
    --secondary-color: #000000;
    --accent-color: #1a1a1a;

    /* Status Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --info-color: #3B82F6;

    /* Background Colors */
    --bg-light: #F9FAFB;
    --bg-card: #FFFFFF;

    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;

    /* Border Colors */
    --border-color: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* =================================================================
   2. LAYOUT & CONTAINER STYLES
   ================================================================= */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =================================================================
   3. NAVIGATION & NAVBAR STYLES
   ================================================================= */
.navbar-custom {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000000 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-primary) !important;
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-pills .nav-link {
    color: var(--text-secondary);
    background: white;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   4. ADMIN SIDEBAR & LAYOUT
   ================================================================= */
.admin-sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    overflow-y: auto;
}

.admin-logo {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1.5rem;
}

.admin-logo h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.nav-menu li a i {
    font-size: 1.25rem;
    width: 24px;
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
}

.admin-topbar {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content {
    padding: 2rem;
}

/* =================================================================
   5. CARD STYLES
   ================================================================= */
.card-custom {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* =================================================================
   6. BUTTON STYLES
   ================================================================= */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #000000;
}

.btn-secondary-custom {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-submit-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-submit-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-add-pet {
    background: white;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-add-pet:hover {
    background: var(--primary-color);
    color: #000000;
    border-style: solid;
}

.btn-remove-pet {
    background: #FEE2E2;
    color: #DC2626;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-remove-pet:hover {
    background: #DC2626;
    color: white;
}

.btn-delete-pet {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-delete-pet:hover {
    background: #DC2626;
    color: white;
    transform: translateY(-2px);
}

.btn-remove {
    background: none;
    border: none;
    color: #EF4444;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-remove:hover {
    background: #FEE2E2;
    color: #DC2626;
}

.btn-edit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-back {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-edit-booking {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-edit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    color: white;
}

.btn-save {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-cancel {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cancel:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 12px;
    padding: 0.875rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =================================================================
   7. FORM & INPUT STYLES
   ================================================================= */
.input-custom {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label-custom {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.required-mark {
    color: #EF4444;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group-text {
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.search-input {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.search-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.helper-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.helper-text i {
    margin-top: 2px;
}

/* =================================================================
   8. ALERT STYLES
   ================================================================= */
.alert-custom {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
}

.alert-danger {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
}

.alert-info {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
}

/* =================================================================
   9. CALENDAR STYLES
   ================================================================= */
.booking-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 2rem 1.5rem;
    border-radius: 20px 20px 0 0;
    margin: -1rem -1rem 0 -1rem;
}

.booking-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.booking-steps {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step.active {
    background: white;
    color: var(--primary-color);
}

.calendar-container {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.month-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    flex: 1;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day.header {
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: default;
}

.calendar-day.available {
    background: var(--bg-light);
    color: var(--text-primary);
}

.calendar-day.available:hover {
    background: var(--primary-light);
    color: #000000;
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
}

.calendar-day.disabled {
    color: var(--border-color);
    cursor: not-allowed;
}

.time-slots-container {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
}

.time-period-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background: white;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: #F3E8FF;
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    border-color: var(--primary-color);
}

/* FullCalendar Customization */
.fc {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
}

.fc .fc-toolbar-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1F2937;
}

.fc .fc-button-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.fc .fc-button-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark));
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: var(--primary-dark);
}

.fc-event {
    border-radius: 6px;
    padding: 2px 4px;
    border: none;
    cursor: pointer;
}

/* =================================================================
   10. PET & SERVICE SELECTION STYLES
   ================================================================= */
.pet-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.pet-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pet-option:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.pet-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
}

.pet-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pet-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pet-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.pet-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pet-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.pet-number {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pet-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pet-card-detailed {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pet-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.pet-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.pet-info {
    flex: 1;
}

.pet-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.pet-info-type {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: capitalize;
}

.pet-details {
    margin-bottom: 1.25rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.pet-notes {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.pet-notes-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.pet-notes-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.service-option:hover {
    background: var(--bg-light);
}

.service-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.service-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.service-info {
    flex: 1;
}

.service-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.service-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* =================================================================
   11. BOOKING CARD & ORDER SUMMARY STYLES
   ================================================================= */
.order-summary {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.order-summary-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    padding-top: 1rem;
}

.summary-label {
    color: var(--text-primary);
}

.summary-value {
    font-weight: 600;
    color: var(--text-primary);
}

.section-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.booking-card.past-booking {
    opacity: 0.85;
}

.booking-date-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-date-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.booking-date-badge.past {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.date-box,
.time-box,
.area-box {
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
}

.date-box i,
.time-box i,
.area-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.area-box {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.booking-services {
    padding: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    background: #F3F4F6;
}

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.service-details {
    flex-grow: 1;
}

.booking-total {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.total-amount {
    font-size: 1.75rem;
    font-weight: 700;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-date-time {
    display: flex;
    gap: 1rem;
}

.booking-pets {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pet-badge.dog {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    color: var(--primary-color);
    border: 2px solid var(--primary-light);
}

.pet-badge.cat {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #D97706;
    border: 2px solid #FCD34D;
}

.booking-services-section {
    padding: 0.5rem 0;
}

.pet-service-block {
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #E5E7EB;
}

.pet-service-header {
    margin-bottom: 0.75rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
}

.main-service-row {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border: 1px solid #C7D2FE;
}

.main-service-row .service-name {
    color: var(--primary-color);
    font-weight: 600;
}

.main-service-row .service-price {
    color: var(--primary-color);
    font-weight: 700;
}

.extra-service-row {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border: 1px solid #6EE7B7;
}

.extra-service-row .service-name {
    color: #047857;
    font-weight: 500;
}

.extra-service-row .service-price {
    color: #047857;
    font-weight: 700;
}

.extra-badge {
    display: inline-block;
    background: white;
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
}

.extra-service-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.extra-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.pet-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
    margin-top: 0.75rem;
    border: 1px solid #93C5FD;
}

/* =================================================================
   12. STATUS BADGE STYLES
   ================================================================= */
.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.status-pending {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #D97706;
}

.status-confirmed {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: #1D4ED8;
}

.status-completed {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: #047857;
}

.status-cancelled {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: #DC2626;
}

/* =================================================================
   13. TABLE STYLES
   ================================================================= */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
}

.table thead tr th {
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding: 0.75rem;
}

.table tbody tr:hover {
    background: var(--bg-light);
}

.table tbody tr td {
    padding: 0.75rem;
    vertical-align: middle;
}

/* =================================================================
   14. MODAL STYLES
   ================================================================= */
.modal-content-custom {
    border-radius: 20px;
    border: none;
}

.modal-header-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
}

.modal-header-custom h5 {
    font-weight: 700;
}

.modal-body-custom {
    padding: 2rem;
}

#eventModal .modal-content,
#bookingDetailsModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#eventModal .modal-header,
#bookingDetailsModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    border: none;
}

#eventModal .modal-title,
#bookingDetailsModal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

#eventModal .btn-close,
#bookingDetailsModal .btn-close {
    filter: brightness(0) invert(1);
}

#eventModal .modal-body,
#bookingDetailsModal .modal-body {
    padding: 2rem;
}

.customer-info-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 2rem;
}

.appointment-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #E5E7EB;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
}

.services-section {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #E5E7EB;
}

.pet-service-card {
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.pet-service-card:last-child {
    margin-bottom: 0;
}

.pet-header {
    background: white;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
}

.main-service {
    background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
    border: 1px solid #DDD6FE;
}

.extra-service {
    background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
    border: 1px solid #A7F3D0;
}

.extras-section {
    margin-top: 0.75rem;
}

.extras-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.grand-total-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.grand-total-card .total-price {
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

/* =================================================================
   15. SUCCESS PAGE STYLES
   ================================================================= */
.success-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: successPulse 1.5s ease-in-out;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.success-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.booking-details-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.detail-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.detail-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.detail-content {
    padding-left: 3.25rem;
}

.detail-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.detail-text strong {
    color: var(--primary-color);
}

.pet-service-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.pet-service-item:last-child {
    margin-bottom: 0;
}

.pet-name-label {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-list {
    padding-left: 1.5rem;
    margin: 0;
}

.service-list li {
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.total-price {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
}

.banking-details-card {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #3B82F6;
}

.banking-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.banking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.banking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.banking-subtitle {
    color: #1E40AF;
    font-size: 0.95rem;
}

.banking-info {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.banking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.banking-row:last-child {
    border-bottom: none;
}

.banking-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.banking-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reference-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.reference-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.reference-number {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.next-steps-card {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.next-steps-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1E40AF;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps-list li {
    padding: 0.75rem 0;
    color: #1E3A8A;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.next-steps-list li i {
    color: #3B82F6;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* =================================================================
   16. WELCOME PAGE / HERO STYLES
   ================================================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.features-section {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-section {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    padding: 3rem 2rem;
    border-radius: 30px;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-input-group {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: 1rem;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* =================================================================
   17. PROFILE PAGE STYLES
   ================================================================= */
.page-header-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
}

.page-header-custom h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header-custom p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-customer-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.profile-contact {
    opacity: 0.9;
    margin-top: 1rem;
}

.profile-contact i {
    margin-right: 0.5rem;
}

.customer-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.customer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.customer-number {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.customer-contact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-number-display {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-light);
}

.bookings-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    border: 3px solid white;
}

.bookings-count {
    font-size: 1.5rem;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.bookings-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-icon.purple {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    color: var(--primary-color);
}

.stat-icon.green {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: var(--success-color);
}

.stat-icon.blue {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: var(--info-color);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    color: #EA580C;
}

/* =================================================================
   18. EMPTY STATE STYLES
   ================================================================= */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.4;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.empty-state-small {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.empty-state-small i {
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: 0.4;
}

.empty-state-small p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.no-customers {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.no-customers i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.no-bookings {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.no-bookings i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

/* =================================================================
   19. ADD PET CARD STYLES
   ================================================================= */
.add-pet-card {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed var(--primary-color);
    min-height: 280px;
}

.add-pet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-style: solid;
}

.add-pet-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-pet-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

/* =================================================================
   20. FORM CARD & LOGIN STYLES
   ================================================================= */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000000;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h4 {
    margin: 0;
    font-weight: 700;
}

.edit-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.login-container {
    width: 100%;
    max-width: 440px;
    padding: 1rem;
}

.login-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6B7280;
    font-size: 0.95rem;
}

/* =================================================================
   21. SWAL (SWEETALERT2) CUSTOM STYLES
   ================================================================= */
.swal-custom-popup {
    border-radius: 20px !important;
    padding: 2rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.swal-custom-title {
    color: #1F2937 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.swal-custom-text {
    color: #6B7280 !important;
    font-size: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.swal-custom-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
    margin: 0.25rem !important;
}

.swal-custom-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4) !important;
}

.swal-custom-cancel {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 12px !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    margin: 0.25rem !important;
}

.swal-custom-cancel:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
}

.swal2-icon.swal2-warning {
    border-color: #F59E0B !important;
    color: #F59E0B !important;
}

.swal2-icon.swal2-error {
    border-color: #EF4444 !important;
    color: #EF4444 !important;
}

.swal2-icon.swal2-success {
    border-color: #10B981 !important;
    color: #10B981 !important;
}

/* =================================================================
   22. FOOTER STYLES
   ================================================================= */
.footer-custom {
    background: var(--bg-card);
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

/* =================================================================
   23. PAGINATION STYLES
   ================================================================= */
.pagination {
    margin-top: 2rem;
}

.page-link {
    border: none;
    color: var(--primary-color);
    border-radius: 8px;
    margin: 0 0.25rem;
    font-weight: 500;
}

.page-link:hover {
    background: var(--primary-light);
    color: #000000;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

/* =================================================================
   24. MEDIA QUERIES - RESPONSIVE STYLES
   ================================================================= */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .booking-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .pet-card {
        padding: 1.25rem;
    }

    .pets-grid {
        grid-template-columns: 1fr;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .page-header-custom h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-icon {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-input-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-price {
        align-items: center;
        width: 100%;
    }

    .booking-date-info {
        width: 100%;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-main {
        margin-left: 0;
    }

    .fc {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .fc .fc-toolbar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fc .fc-toolbar-title {
        font-size: 1.25rem;
        margin: 0.5rem 0;
    }

    .fc .fc-button {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }

    .fc .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }

    .fc-event {
        font-size: 0.75rem;
        padding: 1px 2px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 0.875rem;
    }

    #eventModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    #eventModal .modal-body {
        padding: 1rem;
    }

    .customer-info-card {
        padding: 1rem;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .info-icon {
        font-size: 1.25rem;
    }

    .info-value {
        font-size: 0.875rem;
    }

    .pet-icon {
        font-size: 1.5rem;
    }

    .grand-total-card .total-price {
        font-size: 1.5rem;
    }
}

@media (min-width: 576px) {
    .action-buttons {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-card .col-6 {
        width: 100%;
    }

    .info-box {
        margin-bottom: 0.75rem;
    }
}

/* =================================================================
   25. ANIMATION KEYFRAMES
   ================================================================= */
@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =================================================================
   26. UTILITY CLASSES
   ================================================================= */
.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.ms-2 {
    margin-right: 0.5rem !important;
}

.ms-3 {
    margin-right: 1rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* =================================================================
   27. ADDITIONAL BOOKING DETAIL STYLES
   ================================================================= */
.booking-detail-item {
    padding: 0.75rem;
    border-left: 3px solid var(--primary-color);
    background: #F9FAFB;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* =================================================================
   28. EMAIL STYLES (FOR BOOKING CONFIRMATION EMAIL)
   ================================================================= */
.header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.header h1 {
    margin: 0;
    font-size: 28px;
}

.content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 0 0 8px 8px;
}

.details-box {
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px 0;
}

/* =================================================================
   29. FORM CHECK STYLES
   ================================================================= */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =================================================================
   END OF CONSOLIDATED STYLES
   ================================================================= */