/* ===== CSS Variables ===== */
:root {
    --primary-color: #c19a6b;
    --primary-dark: #a67c52;
    --secondary-color: #2c3e50;
    --accent-color: #e8d5c4;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

/* ===== Button Styles ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===== Header & Navigation ===== */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(193, 154, 107, 0.8)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=2000') center/cover no-repeat;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Page Hero ===== */
.page-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(118, 75, 162, 0.8)), 
                url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=2000') center/cover no-repeat;
    padding: 5rem 0;
    text-align: center;
    color: var(--text-white);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/* ===== Features Section ===== */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* ===== Services Preview ===== */
.services-preview {
    padding: 5rem 0;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.service-preview:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.service-preview h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-preview p {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Services Section ===== */
.services-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card-spacer {
    visibility: hidden;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-details {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-details li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(193, 154, 107, 0.7)), 
                url('https://images.unsplash.com/photo-1562322140-8baeececf3df?q=80&w=2000') center/cover no-repeat;
    color: var(--text-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/* ===== Admin Access Section ===== */
.admin-access-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.admin-access-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.admin-access-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.admin-access-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admin-access-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.admin-access-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ===== Booking Section ===== */
.booking-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.booking-widget {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== Form Styles ===== */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
    display: block;
}

.form-actions {
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-link {
    color: var(--text-white);
    opacity: 0.5;
    font-size: 0.875rem;
    transition: var(--transition);
}

.admin-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* ===== Admin Styles ===== */
.admin-body {
    background-color: var(--bg-light);
    min-height: 100vh;
}

/* Admin Login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    max-width: 400px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.demo-info {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.demo-info code {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 600;
}

.back-link {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* Admin Header */
.admin-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.admin-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    background-color: transparent;
    color: var(--text-dark);
}

.nav-btn:hover,
.nav-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.logout-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--error-color);
    color: var(--text-white);
    border-radius: 4px;
    font-weight: 500;
}

.logout-btn:hover {
    background-color: #c0392b;
}

/* Admin Main */
.admin-main {
    padding: 2rem 0;
}

.admin-view {
    display: none;
}

.admin-view.active {
    display: block;
}

.view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
}

.filter-select,
.search-input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--bg-white);
}

.search-input {
    min-width: 250px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bookings List */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.booking-item:hover {
    box-shadow: var(--shadow-hover);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-client {
    flex: 1;
}

.booking-client h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.booking-client p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.booking-status.confirmed {
    background-color: #d1ecf1;
    color: #0c5460;
}

.booking-status.completed {
    background-color: #d4edda;
    color: #155724;
}

.booking-status.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.booking-detail {
    display: flex;
    flex-direction: column;
}

.booking-detail-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.booking-detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.booking-notes {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.action-btn.confirm {
    background-color: var(--info-color);
    color: var(--text-white);
}

.action-btn.confirm:hover {
    background-color: #2980b9;
}

.action-btn.complete {
    background-color: var(--success-color);
    color: var(--text-white);
}

.action-btn.complete:hover {
    background-color: #229954;
}

.action-btn.cancel {
    background-color: var(--error-color);
    color: var(--text-white);
}

.action-btn.cancel:hover {
    background-color: #c0392b;
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
}

/* Clients List */
.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.client-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.client-contact {
    font-size: 0.875rem;
    color: var(--text-light);
}

.client-stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.client-stat {
    flex: 1;
    text-align: center;
}

.client-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.client-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.modal-close {
    font-size: 2rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.client-detail-section {
    margin-bottom: 2rem;
}

.client-detail-section h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.client-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-info-item {
    display: flex;
    flex-direction: column;
}

.client-info-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.client-info-value {
    font-weight: 600;
    color: var(--text-dark);
}

.visit-history {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.visit-item {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visit-info {
    flex: 1;
}

.visit-date {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.visit-service {
    color: var(--text-light);
    font-size: 0.9rem;
}

.client-notes-section {
    margin-top: 1rem;
}

.client-notes {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.save-notes-btn {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 4px;
    font-weight: 500;
}

.save-notes-btn:hover {
    background-color: var(--primary-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-widget {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .view-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .booking-header {
        flex-direction: column;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .clients-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .features,
    .services-preview,
    .services-section {
        padding: 3rem 0;
    }

    .booking-widget {
        padding: 1.5rem 1rem;
    }

    .login-card {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
