/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5AAE0C;
    --primary-dark: #4a9309;
    --primary-light: #6bc20f;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Header Styles */
.header {
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--light-bg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(90, 174, 12, 0.05);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 174, 12, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(90, 174, 12, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(20px);
    border-radius: 22px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(90, 174, 12, 0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-success:hover {
    background: linear-gradient(135deg, #229954, var(--success-color));
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-color), #e74c3c);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, var(--accent-color));
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #e67e22);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d68910, var(--warning-color));
}

.btn-info {
    background: linear-gradient(135deg, var(--info-color), #5dade2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-info:hover {
    background: linear-gradient(135deg, #2980b9, var(--info-color));
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 16px;
    min-height: 36px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
    border-radius: 24px;
    min-height: 56px;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 8px;
    min-height: 28px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
}

.btn-icon.btn-lg {
    width: 56px;
    height: 56px;
}

.btn-group {
    display: inline-flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-group .btn {
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-group .btn:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.btn-group .btn:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-right: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #2d5016 100%);
    color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #5AAE0C;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5AAE0C;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 1rem;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #5AAE0C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #5AAE0C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #5AAE0C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}

/* Booking Page Styles */
.booking-container {
    max-width: 900px;
    margin: 130px auto 60px;
    padding: 0 24px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

.booking-form h2 {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    position: relative;
}

.booking-form h2 i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9em;
}

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

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
    position: relative;
}

.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(90, 174, 12, 0.1);
    transform: translateY(-1px);
}

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

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

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235AAE0C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
}

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

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

/* Submit button container */
.form-submit {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.form-submit .btn {
    min-width: 200px;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Modern Admin Panel Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
}

/* Mobile Responsive Admin Container */
@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
}

.admin-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
    z-index: 0;
}

.admin-container > * {
    position: relative;
    z-index: 1;
}

/* Admin Grid Layout */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Mobile responsive admin grid */
@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .admin-grid {
        gap: 1rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
}

.admin-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 174, 12, 0.1);
}

/* Mobile Admin Cards */
@media (max-width: 768px) {
    .admin-card {
        margin: 0;
        border-radius: 12px;
    }
    
    .admin-card-header {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .admin-card-header .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .admin-card-content {
        overflow-x: auto;
    }
    
    .admin-card-content table {
        font-size: 0.875rem;
    }
    
    .admin-card-content table th,
    .admin-card-content table td {
        padding: 0.5rem 0.25rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .admin-card-header {
        padding: 0.75rem;
    }
    
    .admin-card-content table {
        font-size: 0.8rem;
    }
    
    .admin-card-content table th,
    .admin-card-content table td {
        padding: 0.375rem 0.125rem;
    }
    
    .admin-card-content table td strong {
        font-size: 0.875rem;
    }
    
    .admin-card-content table td small {
        font-size: 0.7rem;
    }
}

.admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.admin-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e1e5e9;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c3e50;
}

.admin-card-header i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.admin-card-content {
    padding: 0;
}

.admin-empty-state {
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
}

.admin-empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: var(--primary-color);
}

.admin-empty-state p {
    margin: 0;
    font-size: 1.1rem;
}

/* Admin Actions Grid */
.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Mobile Admin Actions */
@media (max-width: 768px) {
    .admin-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        padding: 0 1rem;
    }
    
    .admin-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}

/* System Information Card */
.system-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(90, 174, 12, 0.1);
}

/* Mobile System Information */
@media (max-width: 768px) {
    .system-info {
        margin: 2rem 1rem 0 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .system-info h3 {
        justify-content: center;
        text-align: center;
    }
    
    .system-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .system-info-item {
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
}

.system-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.system-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.system-info-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.system-info-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.status-connected {
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.admin-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.15);
    position: relative;
    overflow: hidden;
}

/* Mobile Admin Header */
@media (max-width: 768px) {
    .admin-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        border-radius: 16px;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .admin-header > div:first-child {
        text-align: center;
        width: 100%;
    }
    
    .admin-header > div:last-child {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

.admin-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.admin-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header h1 i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.admin-header p {
    margin: 8px 0 0 0;
    opacity: 0.85;
    font-size: 0.95rem;
}

.admin-header .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.admin-header .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.admin-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 2.5rem;
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.admin-nav a,
.admin-nav .btn {
    padding: 12px 20px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.admin-nav a i,
.admin-nav .btn i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.admin-nav a:hover,
.admin-nav .btn:hover {
    background: rgba(45, 90, 39, 0.08);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.admin-nav a.active,
.admin-nav .btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

.admin-nav a.active i,
.admin-nav .btn.active i {
    opacity: 1;
}

/* Mobile Admin Navigation */
@media (max-width: 768px) {
    .admin-nav {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .admin-nav a,
    .admin-nav .btn {
        padding: 0.875rem 1rem;
        justify-content: center;
        border-radius: 10px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .admin-nav a:last-child,
    .admin-nav .btn:last-child {
        margin-bottom: 0;
    }
}

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

/* Mobile Statistics Grid */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-items: center;
        padding: 0 1rem;
    }
}

.stat-card {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
}

/* Mobile Statistics Cards */
@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem;
        border-radius: 12px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .stat-card h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .stat-card p {
        text-align: center;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(90, 174, 12, 0.15);
    background: linear-gradient(135deg, white 0%, #f0f9ff 100%);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(90, 174, 12, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover h3 {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.stat-card p {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card p i {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.8;
}

.data-table {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Mobile Data Tables */
@media (max-width: 768px) {
    .data-table {
        margin: 0 1rem 2rem 1rem;
        border-radius: 12px;
        overflow-x: auto;
    }
    
    .data-table table {
        min-width: 600px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .upcoming-header {
        text-align: center;
        justify-content: center;
    }
    
    .admin-empty-state {
        text-align: center;
        padding: 2rem 1rem;
    }
}

.data-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
}

/* Status Select Dropdown */
.status-select {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(90, 174, 12, 0.15);
    transform: translateY(-1px);
}

.status-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(90, 174, 12, 0.2);
    transform: translateY(-1px);
}

/* Upcoming Bookings Header */
.upcoming-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.upcoming-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.upcoming-header i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.data-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 700;
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e2e8f0;
}

.data-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-table tr:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: scale(1.002);
    box-shadow: 0 4px 12px rgba(90, 174, 12, 0.08);
}

.data-table tr:hover td {
    color: var(--primary-dark);
    font-weight: 500;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table td {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.data-table .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: auto;
    border-radius: 8px;
    font-weight: 600;
}

.admin-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.admin-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.admin-action-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.admin-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.admin-action-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.admin-action-card h4 {
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.admin-action-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-new { 
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); 
    color: #1976d2; 
    border-color: rgba(25, 118, 210, 0.2);
}

.status-pending { 
    background: linear-gradient(135deg, #fff3e0, #ffcc02); 
    color: #f57c00; 
    border-color: rgba(245, 124, 0, 0.2);
}

.status-confirmed { 
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9); 
    color: #388e3c; 
    border-color: rgba(56, 142, 60, 0.2);
}

.status-completed { 
    background: linear-gradient(135deg, #e8f5e8, #a5d6a7); 
    color: #2e7d32; 
    border-color: rgba(46, 125, 50, 0.2);
}

.status-cancelled { 
    background: linear-gradient(135deg, #ffebee, #ffcdd2); 
    color: #d32f2f; 
    border-color: rgba(211, 47, 47, 0.2);
}

.status-contacted { 
    background: linear-gradient(135deg, #f3e5f5, #e1bee7); 
    color: #7b1fa2; 
    border-color: rgba(123, 31, 162, 0.2);
}

.status-converted { 
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb); 
    color: #00695c; 
    border-color: rgba(0, 105, 92, 0.2);
}

.status-closed { 
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0); 
    color: #616161; 
    border-color: rgba(97, 97, 97, 0.2);
}

.status-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Login Form */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 0.5rem;
        padding-top: 1rem;
    }
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .login-form {
        padding: 2rem;
        border-radius: 20px;
        margin: 0 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 360px) {
    .login-form {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 0 0.25rem;
    }
}

/* Enhanced Admin Login Button */
.admin-login-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(90, 174, 12, 0.3);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 56px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .admin-login-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
        min-height: 52px;
        margin-top: 1.25rem;
    }
}

@media (max-width: 480px) {
    .admin-login-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        border-radius: 20px;
        min-height: 48px;
        margin-top: 1rem;
        letter-spacing: 0.25px;
    }
}

@media (max-width: 360px) {
    .admin-login-btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 18px;
        min-height: 44px;
    }
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(90, 174, 12, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.admin-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(90, 174, 12, 0.3);
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    border-radius: 24px 24px 0 0;
}

.login-form h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .login-form h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .login-form h2 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
        gap: 8px;
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .login-form h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

.login-form h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .login-form .form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .login-form .form-group {
        margin-bottom: 1.25rem;
    }
}

.login-form .form-group:last-of-type {
    margin-bottom: 2.5rem;
}

.login-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.login-form .form-group input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .login-form .form-group input {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
        min-height: 48px; /* Touch-friendly */
    }
}

@media (max-width: 480px) {
    .login-form .form-group input {
        padding: 0.875rem 1rem;
        font-size: 16px;
        border-radius: 8px;
        min-height: 44px;
    }
}

.login-form .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
    transform: translateY(-1px);
}

.login-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .login-form .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .login-form .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}

.login-error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #d32f2f;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(211, 47, 47, 0.2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-error i {
    color: #d32f2f;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        margin-top: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form {
        padding: 1rem;
        margin: 0;
    }
    
    .booking-container {
        gap: 0.75rem;
        padding: 0 8px;
        margin: 90px auto 20px;
    }
    
    .booking-form h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .booking-form p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .booking-container {
        margin: 110px auto 40px;
        padding: 0 16px;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .admin-container {
        padding: 16px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-nav {
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .admin-nav a {
        padding: 16px 20px;
        text-align: center;
        border-radius: 8px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .data-table {
        overflow-x: auto;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 16px;
        min-width: 140px;
    }
    
    .admin-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .admin-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Login form styles moved to main login-form section */
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .booking-form {
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin: 0;
    }
    
    .booking-form h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .booking-form p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .booking-container {
        margin: 100px auto 30px;
        gap: 1rem;
        padding: 0 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .btn-sm {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
    }
    
    .admin-container {
        padding: 12px;
    }
    
    .admin-header {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .admin-header h1 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .admin-nav {
        padding: 8px;
        gap: 2px;
        border-radius: 8px;
        margin-bottom: 2rem;
    }
    
    .admin-nav a {
        padding: 14px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .stat-card h3 {
        font-size: 1.75rem;
    }
    
    .data-table {
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 12px;
        min-width: 120px;
    }
    
    .admin-card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .admin-card h3 {
        font-size: 1.1rem;
    }
    
    /* Login form styles moved to main login-form section */
}

/* Extra small devices */
@media (max-width: 360px) {
    .booking-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(90, 174, 12, 0.1);
    transform: translateY(-1px);
}

/* Mobile Form Styles */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.75rem;
        border-radius: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Export Button Styles */
.export-btn {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    min-height: 56px !important;
    border-radius: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.export-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.export-btn:hover::before {
    left: 100%;
}

.export-btn:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25) !important;
}

.export-btn:active {
    transform: translateY(-2px) scale(0.98) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.export-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: var(--white) !important;
}

.export-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    box-shadow: 0 12px 35px rgba(90, 174, 12, 0.4) !important;
}

.export-btn.btn-secondary {
    background: linear-gradient(135deg, var(--white), #f8f9fa) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.export-btn.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 12px 35px rgba(90, 174, 12, 0.4) !important;
}

.export-btn i {
    font-size: 1.2rem;
}

/* Mobile Button Responsive Styles */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 14px;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 36px;
        border-radius: 12px;
    }
    
    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 16px;
    }
    
    .export-btn {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        border-radius: 18px !important;
    }
    
    /* Stack buttons vertically on mobile */
    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}

/* Mobile General Layout */
@media (max-width: 480px) {
    .admin-container {
        padding: 0.5rem;
        text-align: center;
    }
    
    .admin-header {
        padding: 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
        text-align: center;
    }
    
    .admin-nav {
        padding: 0.75rem;
        margin: 0 0.5rem 1rem 0.5rem;
        text-align: center;
    }
    
    .stats-grid {
        padding: 0.5rem;
        gap: 0.75rem;
        justify-items: center;
    }
    
    .stat-card {
        padding: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .data-table {
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .admin-card {
        margin: 0 0.5rem 1rem 0.5rem;
        text-align: center;
    }
    
    .admin-actions {
        justify-items: center;
        padding: 0 0.5rem;
    }
    
    .admin-actions .btn {
        max-width: 260px;
    }
    
    .system-info {
        margin: 1rem 0.5rem 0 0.5rem;
        text-align: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-success { color: #5AAE0C; }
.text-danger { color: #dc3545; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .alert {
        padding: 10px 14px;
        border-radius: 8px;
        margin-bottom: 0.875rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .alert {
        padding: 8px 12px;
        border-radius: 6px;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        gap: 0.375rem;
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Login Back Link */
.login-back-link {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.back-to-website {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    touch-action: manipulation;
}

.back-to-website:hover {
    background: rgba(90, 174, 12, 0.1);
    transform: translateY(-1px);
    color: var(--primary-dark);
}

.back-to-website:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .login-back-link {
        margin-top: 1.25rem;
        padding-top: 0.875rem;
    }
    
    .back-to-website {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .login-back-link {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .back-to-website {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
        gap: 0.375rem;
    }
}

/* Calendar Styles */
.calendar-container {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-grid {
    width: 100%;
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    position: relative;
    overflow: hidden;
}

.calendar-day:hover {
    z-index: 1;
}

.view-toggle {
    margin-bottom: 2rem;
}

.toggle-buttons {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-btn:hover {
    transform: translateY(-1px);
}

.view-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Responsive Calendar */
@media (max-width: 768px) {
    .calendar-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .calendar-nav {
        justify-content: center;
        order: 1;
    }
    
    .calendar-controls {
        justify-content: center;
        order: 2;
        flex-wrap: wrap;
    }
    
    .calendar-weekdays {
        font-size: 0.8rem;
    }
    
    .weekday {
        padding: 0.5rem !important;
    }
    
    .calendar-day {
        min-height: 60px !important;
        padding: 4px !important;
        font-size: 0.8rem;
    }
    
    .calendar-day div:first-child {
        font-size: 0.8rem;
        margin-bottom: 2px !important;
    }
    
    .view-btn {
        padding: 10px 12px !important;
        font-size: 0.8rem;
    }
    
    #currentMonth {
        font-size: 1.1rem !important;
        margin: 0 0.5rem !important;
    }
    
    #prevMonth, #nextMonth {
        padding: 6px 10px !important;
        margin: 0 0.5rem !important;
    }
    
    #todayBtn {
        padding: 6px 12px !important;
        font-size: 0.8rem;
        margin-right: 0.5rem !important;
    }
    
    #viewMode {
        padding: 6px !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .calendar-header {
        padding: 0.75rem !important;
    }
    
    .calendar-nav {
        gap: 0.25rem;
    }
    
    .calendar-controls {
        gap: 0.25rem;
    }
    
    .weekday {
        padding: 0.375rem !important;
        font-size: 0.7rem;
    }
    
    .calendar-day {
        min-height: 50px !important;
        padding: 2px !important;
        font-size: 0.7rem;
    }
    
    .calendar-day div:first-child {
        font-size: 0.7rem;
        margin-bottom: 1px !important;
    }
    
    .view-btn {
        padding: 8px 10px !important;
        font-size: 0.75rem;
    }
    
    #currentMonth {
        font-size: 1rem !important;
        margin: 0 0.25rem !important;
    }
    
    #prevMonth, #nextMonth {
        padding: 4px 8px !important;
        margin: 0 0.25rem !important;
    }
    
    #todayBtn {
        padding: 4px 8px !important;
        font-size: 0.75rem;
        margin-right: 0.25rem !important;
    }
    
    #viewMode {
        padding: 4px !important;
        font-size: 0.75rem;
    }
    
    /* Hide booking text on very small screens, show only colored dots */
    .calendar-day > div:not(:first-child) {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 1px;
        font-size: 0 !important;
        padding: 0 !important;
        min-height: auto !important;
    }
}

/* Calendar booking hover effects */
.calendar-day > div:not(:first-child):hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Status colors for calendar bookings */
.booking-pending {
    background-color: #f57c00 !important;
}

.booking-confirmed {
    background-color: #5AAE0C !important;
}

.booking-completed {
    background-color: #2196f3 !important;
}

.booking-cancelled {
    background-color: #dc3545 !important;
}