:root {
    --navy: #1a3a5c;
    --navy-dark: #0f2840;
    --gold: #f5c518;
    --gold-dark: #d4a910;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --border-light: #e0e0e0;
}

* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: var(--navy);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.top-bar-link:hover { color: var(--gold); }

/* Navbar */
.navbar { padding-top: 4px !important; padding-bottom: 4px !important; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.brand-sub { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.navbar .nav-link { font-weight: 500; color: var(--navy) !important; padding: 0.5rem 1rem !important; transition: color 0.3s; }
.navbar .nav-link:hover { color: var(--gold-dark) !important; }
.btn-book-now {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-book-now:hover { background-color: var(--gold-dark) !important; }

/* Hero Section */
.hero-section {
    position: relative;
    background: url('/images/people_background.png') center/cover no-repeat;
    padding: 80px 0;
    color: var(--white);
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,28,52,0.97) 35%, rgba(10,28,52,0.75) 58%, rgba(10,28,52,0.15) 80%, transparent 100%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-sub { font-size: 1rem; opacity: 0.85; margin-bottom: 8px; }
.hero-section h1 { font-size: 2.4rem; margin-bottom: 1.5rem; line-height: 1.25; }
.hero-section .hero-highlight { color: var(--gold); font-weight: 700; }
.btn-schedule {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 34px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.btn-schedule:hover { background-color: var(--gold-dark); color: var(--navy); transform: translateY(-2px); }

/* Services Cards */
.services-bar {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}
.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-card .icon { font-size: 2.5rem; color: var(--navy); margin-bottom: 15px; }
.service-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Why Choose Us */
.why-section {
    background: var(--light-bg);
    padding: 60px 0;
}
.why-section h2 { text-align: center; color: var(--navy); margin-bottom: 50px; }
.why-card {
    text-align: center;
    padding: 20px;
}
.why-card .icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}
.why-card h5 { color: var(--navy); font-size: 1rem; }
.why-card p { color: var(--text-muted); font-size: 0.85rem; }

/* How It Works */
.how-section { padding: 60px 0; }
.how-section h2 { text-align: center; color: var(--navy); margin-bottom: 50px; }
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.step-number {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.3rem;
}
.step-card h5 { color: var(--navy); }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Service Checkbox Cards */
.service-check-grid { display: flex; flex-direction: column; gap: 10px; }
.service-check-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.service-check-card:hover { border-color: var(--navy); background: #f8fafc; }
.service-check-card.selected { border-color: var(--navy); background: #eef3f8; }
.service-check-input { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); width: 18px; height: 18px; cursor: pointer; }
.service-check-body { flex: 1; }
.service-check-name { font-weight: 600; color: var(--navy); }
.service-check-price { color: var(--gold-dark); font-weight: 700; font-size: 1rem; }
.service-check-desc { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }
.service-check-tick { color: var(--navy); font-size: 1.2rem; opacity: 0; transition: opacity 0.2s; }
.service-check-card.selected .service-check-tick { opacity: 1; }
.service-total {
    background: #eef3f8;
    border-left: 4px solid var(--navy);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--navy);
}

/* Service Area */
.area-section {
    background: var(--navy);
    color: var(--white);
    padding: 50px 0;
}
.area-section h2 { color: var(--gold); text-align: center; margin-bottom: 10px; }
.area-section p { text-align: center; opacity: 0.85; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.area-tag {
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 20px;
}
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: var(--gold); }
.footer-heading { color: var(--white); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; }
.footer-contact p { margin-bottom: 5px; font-size: 0.9rem; }
.footer-divider { border-color: rgba(255,255,255,0.15); margin: 30px 0 15px; }
.footer-bottom p { font-size: 0.8rem; margin: 0; opacity: 0.6; }

/* Booking Page */
.booking-hero {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}
.booking-hero h1 { color: var(--gold); }
.booking-form-wrapper {
    max-width: 700px;
    margin: -30px auto 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 1;
}
.form-label { font-weight: 600; color: var(--navy); }
.btn-primary-custom {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-primary-custom:hover { background-color: var(--gold-dark); color: var(--navy); }

/* Admin Pages */
.admin-header {
    background: var(--navy);
    color: var(--white);
    padding: 25px 0;
}
.admin-header h1 { color: var(--gold); margin: 0; font-size: 1.8rem; }
.admin-content { padding: 30px 0; }
.admin-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 20px;
}
.stat-card {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.stat-card .number { font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.stat-card .label { color: var(--text-muted); font-size: 0.9rem; }
.stat-card .icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.btn-admin {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-admin:hover { background: var(--navy-dark); color: var(--white); }
.btn-admin-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}
.btn-admin-outline:hover { background: var(--navy); color: var(--white); }
.btn-danger-sm {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
}
.status-badge { padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; display: inline-block; }
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-completed { background: #cce5ff; color: #004085; }

/* Login */
.login-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--light-bg);
}
.login-card {
    max-width: 420px;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
}
.login-card h2 { color: var(--navy); text-align: center; margin-bottom: 30px; }

/* Contact */
.contact-section { padding: 60px 0; }
.contact-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
}

/* Confirmation */
.confirmation-wrapper {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.confirmation-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 50px;
    text-align: center;
}
.confirmation-card .check-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #d4edda;
    color: #155724;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* Table styles */
.table-admin { border-radius: 8px; overflow: hidden; }
.table-admin thead th { background: var(--navy); color: var(--white); border: none; font-weight: 500; padding: 12px 15px; }
.table-admin tbody td { padding: 12px 15px; vertical-align: middle; }

/* Alerts */
.alert-success-custom {
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 50px 0; text-align: center; }
    .hero-section h1 { font-size: 2rem; }
    .hero-image-wrapper { margin-top: 30px; }
    .booking-form-wrapper { margin: -20px 15px 30px; padding: 25px; }
}
