:root {
    --primary: #1a56db;
    --primary-dark: #0e2a47;
    --primary-darker: #0a192f;
    --accent: #2d9cdb;
    --accent-light: #64ffda;
    --orange: #FF7A00;
    --orange-light: #ff9d42;
    --white: #FFFFFF;
    --light: #f0f7ff;
    --dark: #0a192f;
    --text: #e6f1ff;
    --light-text: #f8f9fa;
    --card-bg: rgba(10, 25, 47, 0.7);
    --success: #4CAF50;
    --danger: #f44336;
    --warning: #ff9800;
    --unavailable: #6c757d;
    --break-color: #495057;
    --non-working: #ff6b35;
    --border-color: rgba(100, 255, 218, 0.1);
    --text-muted: #a8b2d1;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    position: relative;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 10% 20%, rgba(45, 156, 219, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-light);
    text-transform: uppercase;
    text-decoration: none;
    max-width: 60%;
    overflow: hidden;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-light);
    background: none;
    border: none;
    padding: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--orange);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.admin-text {
    display: inline;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.95));
    color: var(--light-text);
    text-align: center;
    padding: 120px 0 50px;
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text);
    animation: fadeInUp 1.2s ease;
}

/* Mobile Date Navigation */
.mobile-date-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
    margin: 0 15px 20px;
}

.mobile-nav-btn {
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(100, 255, 218, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    touch-action: manipulation;
}

.mobile-nav-btn:hover,
.mobile-nav-btn:active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.mobile-date-display {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

/* Date Navigation */
.date-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.month-title {
    color: var(--accent-light);
    font-size: 1.5rem;
    text-align: center;
    flex: 1;
}

.nav-button {
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(100, 255, 218, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    touch-action: manipulation;
}

.nav-button:hover,
.nav-button:active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-2px);
}

.nav-button.large {
    padding: 12px 20px;
    font-size: 1rem;
}

.btn-text {
    display: inline;
}

/* Booking Section */
.booking {
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-light);
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 3px;
}

.section-title p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Calendar Section */
.calendar-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.week-title {
    color: var(--accent-light);
    font-size: 1.2rem;
    text-align: center;
    flex: 1;
    font-weight: 600;
}

.calendar-container {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.calendar {
    width: 100%;
    background: rgba(10, 25, 47, 0.5);
    min-width: 800px;
}

.time-slots-header {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    background: rgba(45, 156, 219, 0.1);
    border-bottom: 2px solid rgba(100, 255, 218, 0.2);
}

.time-label-header {
    font-weight: bold;
    color: var(--accent-light);
    text-align: center;
    padding: 15px 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.7);
    border-right: 1px solid rgba(100, 255, 218, 0.1);
}

.day-header {
    text-align: center;
    padding: 12px 5px;
    background: rgba(45, 156, 219, 0.15);
    border-right: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s;
}

.day-header:hover {
    background: rgba(45, 156, 219, 0.25);
}

.day-header:last-child {
    border-right: none;
}

.sunday-header {
    background: rgba(255, 107, 53, 0.2);
}

.sunday-header:hover {
    background: rgba(255, 107, 53, 0.3);
}

.day-name {
    font-weight: bold;
    color: var(--accent-light);
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-display {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
}

.time-slots {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
}

.time-slot-row {
    display: contents;
}

.time-slot {
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
    padding: 5px;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.time-slot.time-label {
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    cursor: default;
    font-weight: bold;
    font-size: 0.85rem;
    justify-content: center;
    border-right: 1px solid rgba(100, 255, 218, 0.1);
}

.time-slot.available {
    background: rgba(76, 175, 80, 0.15);
    color: var(--text);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.time-slot.available:hover,
.time-slot.available:active {
    background: rgba(76, 175, 80, 0.3);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    z-index: 2;
}

.time-slot.booked {
    background: rgba(244, 67, 54, 0.15);
    color: var(--text);
    border: 1px solid rgba(244, 67, 54, 0.3);
    cursor: not-allowed;
    position: relative;
}

.time-slot.booked::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(244, 67, 54, 0.7);
}

.time-slot.selected {
    background: rgba(255, 122, 0, 0.4);
    color: white;
    border: 2px solid var(--orange);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    z-index: 3;
}

.time-slot.unavailable {
    background: rgba(108, 117, 125, 0.15);
    color: var(--text);
    cursor: not-allowed;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.time-slot.break {
    background: rgba(16, 185, 129, 0.15);
    color: var(--text);
    cursor: pointer;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.time-slot.break:hover,
.time-slot.break:active {
    background: rgba(16, 185, 129, 0.25);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
    z-index: 2;
}

.time-slot.non-working {
    background: rgba(255, 107, 53, 0.15);
    color: var(--text);
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.time-slot.non-working:hover,
.time-slot.non-working:active {
    background: rgba(255, 107, 53, 0.25);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    z-index: 2;
}

.time-slot .slot-time {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.75rem;
}

.time-slot .slot-status {
    font-size: 0.65rem;
    opacity: 0.8;
}

.calendar-footer {
    padding: 15px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.legend-title {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.85rem;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-item span {
    font-size: 0.8rem;
    color: var(--text);
}

.slot {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid transparent;
}

.slot.available {
    background: rgba(76, 175, 80, 0.7);
    border-color: rgba(76, 175, 80, 0.9);
}

.slot.booked {
    background: rgba(244, 67, 54, 0.7);
    border-color: rgba(244, 67, 54, 0.9);
}

.slot.selected {
    background: rgba(255, 122, 0, 0.7);
    border-color: var(--orange);
}

.slot.break {
    background: rgba(16, 185, 129, 0.7);
    border-color: rgba(16, 185, 129, 0.9);
}

.slot.non-working {
    background: rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 107, 53, 0.9);
}

/* Booking Form */
.booking-form-section {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    padding: 20px;
    text-align: center;
}

.booking-form h3 {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-form {
    padding: 20px;
}

.selected-slot-info {
    background: rgba(45, 156, 219, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.selected-slot-info.has-selection {
    background: rgba(255, 122, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.3);
}

.slot-placeholder {
    color: var(--text);
}

.slot-placeholder i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--accent);
    display: block;
}

.selected-slot-info .selected-details {
    width: 100%;
}

.selected-slot-info .selected-time {
    font-weight: bold;
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.selected-slot-info .selected-date {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    font-size: 16px; /* Prevents zoom on iOS */
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
    background: rgba(10, 25, 47, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.85rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 16px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    touch-action: manipulation;
}

.cta-button.full-width {
    width: 100%;
    margin: 0;
}

.orange-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    box-shadow: 0 5px 25px rgba(255, 122, 0, 0.4);
}

.cta-button:disabled {
    background: rgba(128, 128, 128, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
}

.cta-button:disabled:hover {
    transform: none;
}

.cta-button:hover:not(:disabled),
.cta-button:active:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.6);
}

/* Instructions Section */
.instructions {
    padding: 60px 0;
    background: rgba(10, 25, 47, 0.5);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.instruction-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(45, 156, 219, 0.3);
}

.instruction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.instruction-card h3 {
    color: var(--accent-light);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.instruction-card p {
    color: var(--text);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Cancellation Section */
.cancellation-section {
    padding: 60px 0;
    background: rgba(10, 25, 47, 0.3);
}

.cancellation-section .section-title {
    margin-bottom: 30px;
}

.section-subtitle {
    color: var(--text);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cancellation-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.cancellation-form {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.cancellation-form .form-group {
    margin-bottom: 20px;
}

.cancellation-form label {
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cancellation-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    background: rgba(10, 25, 47, 0.8);
    color: var(--text);
    font-size: 16px; /* Prevents zoom on iOS */
}

.cancellation-form input:focus {
    outline: none;
    border-color: var(--danger);
    background: rgba(10, 25, 47, 0.9);
}

.time-format {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.btn-cancel {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
    color: white;
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    touch-action: manipulation;
}

.btn-cancel:hover,
.btn-cancel:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
}

.cancellation-info {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.cancellation-info h3 {
    color: var(--accent-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cancellation-info ul {
    list-style: none;
    padding: 0;
}

.cancellation-info li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cancellation-info li:last-child {
    border-bottom: none;
}

.cancellation-info li i {
    color: var(--accent-light);
    margin-top: 2px;
}

/* Footer */
footer {
    background: rgba(10, 25, 47, 0.95);
    color: var(--light-text);
    padding: 50px 0 25px;
    position: relative;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-column {
    padding: 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column p {
    margin-bottom: 12px;
    color: #a8b2d1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.working-hours p {
    margin-bottom: 8px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 0.9rem;
}

.footer-column ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-light);
    font-size: 0.9rem;
}

.footer-column ul li a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--accent-light);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 156, 219, 0.2);
    color: var(--accent-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-contact-btn {
    margin-top: 20px;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2d1;
    font-size: 0.85rem;
    width: 100%;
    padding: 20px 15px 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
}

.modal-content h3 {
    color: var(--accent-light);
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    background: none;
    border: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================================
   MOBILE CALENDAR - VERTICAL LAYOUT
   ================================================== */

.mobile-calendar {
    display: none;
}

.mobile-day-card {
    background: rgba(10, 25, 47, 0.5);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.mobile-day-header {
    background: rgba(45, 156, 219, 0.15);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.mobile-day-header.sunday {
    background: rgba(255, 107, 53, 0.2);
}

.mobile-day-name {
    font-weight: bold;
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mobile-day-date {
    color: var(--text);
    font-size: 0.9rem;
}

.mobile-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 15px;
}

.mobile-time-slot {
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-time-slot .mobile-slot-time {
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 3px;
}

.mobile-time-slot .mobile-slot-status {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
}

.mobile-time-slot.available {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: var(--text);
}

.mobile-time-slot.available:active {
    background: rgba(76, 175, 80, 0.4);
    transform: scale(0.98);
}

.mobile-time-slot.booked {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: var(--text);
    cursor: not-allowed;
    opacity: 0.7;
}

.mobile-time-slot.selected {
    background: rgba(255, 122, 0, 0.4);
    border: 2px solid var(--orange);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.mobile-time-slot.unavailable {
    background: rgba(108, 117, 125, 0.2);
    border: 1px solid rgba(108, 117, 125, 0.4);
    color: var(--text);
    cursor: not-allowed;
    opacity: 0.5;
}

.mobile-time-slot.break {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--text);
}

.mobile-time-slot.break:active {
    background: rgba(16, 185, 129, 0.4);
}

.mobile-time-slot.non-working {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--text);
}

.mobile-time-slot.non-working:active {
    background: rgba(255, 107, 53, 0.4);
}

/* ==================================================
   RESPONSIVE STYLES
   ================================================== */

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .booking-container {
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-form-section {
        position: static;
    }
    
    .calendar {
        min-width: 700px;
    }
    
    .time-slots-header {
        grid-template-columns: 70px repeat(7, 1fr);
    }
    
    .time-slots {
        grid-template-columns: 70px repeat(7, 1fr);
    }
    
    .time-slot {
        height: 50px;
        font-size: 0.75rem;
    }
    
    .time-slot.time-label {
        font-size: 0.8rem;
    }
    
    .cancellation-form-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-darker);
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 8px 0;
        text-align: center;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .admin-text {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
        min-height: 35vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Mobile Date Navigation */
    .mobile-date-nav {
        display: flex;
    }
    
    .date-navigation {
        display: none;
    }
    
    .calendar-header {
        display: none;
    }
    
    /* Hide desktop calendar, show mobile */
    .calendar-container {
        display: none;
    }
    
    .mobile-calendar {
        display: block;
    }
    
    /* Calendar */
    .calendar-section {
        padding: 15px;
    }
    
    .calendar-footer {
        padding: 12px;
    }
    
    .legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .legend-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .legend-item {
        font-size: 0.75rem;
    }
    
    /* Booking Form */
    .booking-form {
        padding: 15px;
    }
    
    .form-header {
        padding: 15px;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
    }
    
    .selected-slot-info {
        padding: 12px;
        min-height: 90px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    /* Instructions */
    .instructions {
        padding: 40px 0;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instruction-card {
        padding: 20px 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Cancellation */
    .cancellation-section {
        padding: 40px 0;
    }
    
    .cancellation-form,
    .cancellation-info {
        padding: 20px;
    }
    
    .cancellation-info ul li {
        text-align: left;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn-text {
        display: none;
    }
    
    .nav-button {
        padding: 10px 12px;
    }
    
    .nav-button.large {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    .mobile-date-nav {
        padding: 12px;
        margin: 0 10px 15px;
    }
    
    .mobile-nav-btn {
        padding: 10px 12px;
        min-width: 45px;
    }
    
    .mobile-date-display {
        font-size: 0.9rem;
    }
    
    .calendar-section {
        padding: 12px;
        margin: 0;
    }
    
    .mobile-time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
    }
    
    .mobile-time-slot {
        padding: 14px 10px;
    }
    
    .mobile-time-slot .mobile-slot-time {
        font-size: 1rem;
    }
    
    .mobile-time-slot .mobile-slot-status {
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legend-items {
        grid-template-columns: 1fr 1fr;
    }
    
    .cancellation-form label,
    .form-group label {
        font-size: 0.9rem;
    }
    
    .booking-form,
    .cancellation-form {
        padding: 15px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .mobile-date-nav {
        margin: 0 5px 15px;
    }
    
    .mobile-time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }
    
    .mobile-time-slot {
        padding: 12px 8px;
    }
    
    .mobile-time-slot .mobile-slot-time {
        font-size: 0.9rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 100px 0 30px;
    }
    
    .booking-form-section {
        position: static;
    }
    
    .calendar-section {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .time-slot:hover {
        transform: none !important;
    }
    
    .nav-button:hover {
        transform: none !important;
    }
    
    .cta-button:hover:not(:disabled) {
        transform: none !important;
    }
    
    .instruction-card:hover {
        transform: none !important;
    }
    
    .mobile-time-slot:hover {
        transform: none !important;
    }
}

/* Active states for touch */
@media (hover: none) and (pointer: coarse) {
    .mobile-time-slot.available:active {
        background: rgba(76, 175, 80, 0.5);
        transform: scale(0.97);
    }
    
    .mobile-nav-btn:active {
        background: var(--orange);
        transform: scale(0.97);
    }
    
    .cta-button:active:not(:disabled) {
        transform: scale(0.98);
        box-shadow: 0 3px 10px rgba(255, 122, 0, 0.4);
    }
}