/* ===== CSS Variables ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    --dark: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}
.logo i { color: var(--primary); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-secondary { background: var(--gray-600); color: var(--white); }
.btn-secondary:hover { background: var(--gray-700); color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-warning { background: var(--warning); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: var(--white); color: var(--primary); }
.hero .btn-primary:hover { background: var(--gray-100); }
.hero .btn-secondary { background: transparent; border-color: var(--white); color: var(--white); }
.hero .btn-secondary:hover { background: var(--white); color: var(--primary); }

/* ===== Sections ===== */
.section { padding: 4rem 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.section-header p { color: var(--gray-500); font-size: 1.125rem; }
.bg-light { background: var(--gray-100); }

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card-image {
    width: calc(100% + 4rem);
    margin: -2rem -2rem 0 -2rem;
    height: 160px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover .service-card-image img {
    transform: scale(1.05);
}
.service-card h3 { color: var(--dark); font-size: 1.25rem; }
.service-card p { color: var(--gray-500); }
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}
.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--success);
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}
.feature-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--gray-500); }

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.review-stars { color: var(--warning); margin-bottom: 0.75rem; }
.review-text { font-style: italic; color: var(--gray-600); margin-bottom: 1rem; }
.review-author { display: flex; justify-content: space-between; font-size: 0.875rem; }
.review-author strong { color: var(--dark); }
.review-author span { color: var(--gray-400); }

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 1.5rem; }
.cta .btn-primary { background: var(--white); color: var(--primary); }
.cta .btn-primary:hover { background: var(--gray-100); }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}
.page-header h1 { font-size: 2rem; font-weight: 800; }
.page-header p { opacity: 0.8; margin-top: 0.5rem; }
.page-header.bg-success { background: linear-gradient(135deg, var(--success) 0%, #059669 100%); }

/* ===== Forms ===== */
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: var(--transition);
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* ===== Booking Form ===== */
.booking-form-wrapper { max-width: 700px; margin: 0 auto; }
.booking-form { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.form-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.form-section:last-child { border-bottom: none; margin-bottom: 1rem; }
.form-section h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-section h3 i { color: var(--primary); }

/* ===== Auth ===== */
.auth-wrapper { max-width: 450px; margin: 0 auto; }
.auth-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.auth-link { text-align: center; margin-top: 1rem; font-size: 0.875rem; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}
.contact-info { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-info h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.5rem; }
.contact-info p { color: var(--gray-500); margin-bottom: 1.5rem; }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 { font-size: 0.875rem; color: var(--dark); margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }
.contact-form-wrapper { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===== Dashboard ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}
.dashboard-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.dashboard-card h2 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.list-group { display: flex; flex-direction: column; gap: 0.75rem; }
.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}
.list-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.list-item-content { flex: 1; }
.list-item-content h4 { font-size: 0.875rem; color: var(--dark); }
.list-item-content p { font-size: 0.75rem; color: var(--gray-500); }
.empty-state { color: var(--gray-400); font-size: 0.875rem; }

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: capitalize;
}
.badge-pending { background: var(--warning-light); color: #92400e; }
.badge-confirmed, .badge-processing { background: var(--info-light); color: #1e40af; }
.badge-in_progress, .badge-shipped { background: var(--primary-light); color: #1e3a8a; }
.badge-completed, .badge-delivered { background: var(--success-light); color: #065f46; }
.badge-cancelled { background: var(--danger-light); color: #991b1b; }
.badge-active { background: var(--success-light); color: #065f46; }
.badge-inactive { background: var(--gray-200); color: var(--gray-600); }
.badge-admin { background: var(--danger-light); color: #991b1b; }
.badge-staff { background: var(--info-light); color: #1e40af; }
.badge-customer { background: var(--primary-light); color: #1e3a8a; }

/* ===== Alerts ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid var(--success); }
.alert-danger { background: var(--danger-light); color: #991b1b; border: 1px solid var(--danger); }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid var(--warning); }
.alert-info { background: var(--info-light); color: #1e40af; border: 1px solid var(--info); }
.alert ul { margin-left: 1.25rem; }

/* ===== Search ===== */
.search-bar { margin-bottom: 2rem; }
.search-input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}
.search-input:focus { outline: none; border-color: var(--primary); }

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-col h3 i { color: var(--primary); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-col p { font-size: 0.875rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--gray-400); font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--white); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    color: var(--gray-300);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a:hover { background: var(--primary); color: var(--white); }
.contact-info li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.contact-info li i { color: var(--primary); margin-top: 0.25rem; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

/* ===== Booking Confirmation ===== */
.booking-confirmation {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.confirmation-header { margin-bottom: 1.5rem; }
.confirmation-header i { font-size: 3rem; color: var(--success); margin-bottom: 0.5rem; }
.confirmation-header h2 { color: var(--dark); }
.confirmation-details {
    text-align: left;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--gray-500); }
.detail-row .value { font-weight: 600; color: var(--dark); }
.confirmation-message { color: var(--gray-500); margin-bottom: 1.5rem; }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.active { display: flex; }
.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-lg { max-width: 700px; }
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 1.125rem; color: var(--dark); }
.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-400);
}
.modal-body { padding: 1.5rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { display: flex; }
    .hero { padding: 3rem 0 4rem; }
    .section { padding: 3rem 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .modal-grid { grid-template-columns: 1fr; }
}

/* ===== Payment Options ===== */
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
    display: block;
    cursor: pointer;
}
.payment-option input { position: absolute; opacity: 0; }
.payment-option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}
.payment-option input:checked + .payment-option-content {
    border-color: var(--primary);
    background: var(--primary-light);
}
.payment-option-content i { font-size: 1.5rem; color: var(--primary); }
.payment-option-content strong { display: block; color: var(--dark); }
.payment-option-content small { color: var(--gray-500); }

.payment-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: start; }
.payment-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.payment-summary h3 { margin-bottom: 1rem; color: var(--dark); }
.summary-row { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.summary-row span { color: var(--gray-500); }
.summary-divider { border-top: 1px solid var(--gray-200); margin: 0.75rem 0; }
.summary-total { display: flex; justify-content: space-between; font-size: 1.25rem; }
.summary-total strong { color: var(--success); }
.paypal-container { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.payment-note { margin-top: 1rem; color: var(--gray-500); font-size: 0.875rem; text-align: center; }

/* ===== Dashboard Layout ===== */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; align-items: start; }
.dashboard-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}
.dashboard-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 0.75rem; }
.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}
.dashboard-sidebar h3 { color: var(--dark); margin-bottom: 0.25rem; }
.dashboard-sidebar p { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.5rem; }
.dashboard-nav { display: flex; flex-direction: column; }
.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    color: var(--gray-600);
    transition: var(--transition);
}
.dashboard-nav .nav-item:hover { background: var(--gray-100); color: var(--primary); }
.dashboard-nav .nav-item.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.avatar-upload { display: flex; align-items: center; gap: 1rem; }
.avatar-upload img.current-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

@media (max-width: 768px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .payment-wrapper { grid-template-columns: 1fr; }
}

/* ===== Services Admin Grid ===== */
.services-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}
.service-admin-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.service-admin-image { height: 140px; background: var(--gray-200); overflow: hidden; }
.service-admin-image img { width: 100%; height: 100%; object-fit: cover; }
.service-admin-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-400);
}
.service-admin-info { padding: 1rem; }
.service-admin-info h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.25rem; }
.service-admin-info p { color: var(--success); font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; }
.service-admin-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--gray-200);
}
.form-row-admin { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== Admin Layout ===== */
