/* Custom CSS for Bootstrap Booking Form - Mobile First Responsive Design */

/* Tailwind CSS Import */
@import url('https://cdn.tailwindcss.com');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --bs-primary: #667eea;
    --bs-primary-rgb: 102, 126, 234;
    --bs-secondary: #764ba2;
    --bs-secondary-rgb: 118, 75, 162;
    --bs-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Main site variables - matching main.css exactly */
    --primary-color: #059669;
    --secondary-color: #047857;
    --accent-color: #10b981;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --border-light: #f3f4f6;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-dark);
}

.bg-gradient {
    background-color: white !important;
}

/* Skip Link for Accessibility */
.skip-link {
    display: none;
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles - Exact copy from main.css */
.header {
    background-color: white;
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    .header-content {
        padding: 0.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-content {
        padding: 0.5rem 2rem;
    }
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo Base Styles */
.logo {
    height: 4.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

/* Mobile Logo - Show by default */
.logo-mobile {
    display: block;
}

.logo-desktop {
    display: none;
}

/* Desktop Logo - Show from tablet up */
@media (min-width: 768px) {
    .logo-mobile {
        display: none;
    }
    
    .logo-desktop {
        display: block;
        height: 8rem;
    }
}

@media (min-width: 1024px) {
    .logo-desktop {
        height: 9rem;
    }
}

@media (min-width: 1280px) {
    .logo-desktop {
        height: 10rem;
    }
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .nav-menu {
        gap: 3rem;
    }
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    display: none;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

@media (min-width: 1024px) {
    .cta-button {
        display: inline-block;
    }
}

@media (min-width: 1280px) {
    .cta-button {
        padding: 0.75rem 2rem;
    }
}

.cta-button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

@media (min-width: 1024px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

.menu-icon {
    width: 1.75rem;
    height: 1.75rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    background-color: white;
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-gray);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.mobile-cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.mobile-cta-button:hover {
    background-color: var(--secondary-color);
}

/* Fixed Call Button - Exact copy from main.css */
.call-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.call-button a {
    background-color: var(--primary-color);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 640px) {
    .call-button a {
        width: 3rem;
        height: 3rem;
    }
}

.call-button a:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.call-icon {
    width: 1.75rem;
    height: 1.75rem;
}

@media (max-width: 640px) {
    .call-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Custom Card Styling */
.booking-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

/* Booking Image Styling */
.booking-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 445px;
}

.booking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.booking-image:hover {
    transform: scale(1.02);
}

/* Booking Divider Vertical */
.booking-divider-vertical {
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    position: relative;
    margin: 0 1rem;
}

.booking-divider-vertical::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Form Controls - Mobile First */
.form-control,
.form-select {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 12px 15px;
    background-color: white;
}

/* Date Input Specific Styling */
input[type="date"] {
    cursor: pointer;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.15);
    transform: translateY(-1px);
}

/* Custom Form Control Sizes */
.form-control-sm,
.form-select-sm {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.form-control-md-lg,
.form-select-md-lg {
    padding: 12px 15px;
    font-size: 0.95rem;
}

/* Form Labels */
.form-label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* Button Styling - Mobile First */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Custom Button Sizes */
.btn-sm {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-md-lg {
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Alert Styling */
.alert-success {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 1.5rem;
}

.alert-success .alert-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.alert-success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Invalid Feedback */
.invalid-feedback {
    display: block;
    font-weight: 500;
    margin-top: 4px;
    font-size: 0.8rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Icon Styling */
.fas {
    font-size: 0.85rem;
}

.fa-2x {
    font-size: 1.5rem;
}

/* Typography - Mobile First */
.h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.small {
    font-size: 0.85rem;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-gray) !important;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease;
}

/* Custom Utilities */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.border-0 {
    border: 0 !important;
}

/* Form Validation States */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23059669' d='m2.3 6.73.94-.94 1.89-1.89L6.73 2.3l.94.94L4.17 6.73l-.94.94z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4 1.4-1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Custom Select Styling */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* Placeholder Styling */
.form-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Textarea Styling */
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Container Spacing - Mobile First */
.container-fluid {
    max-width: 100%;
}


/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    .booking-card {
        border-radius: 20px;
    }
    
    .booking-card::before {
        height: 4px;
    }
    
    .form-control,
    .form-select {
        border-radius: 12px;
        font-size: 1rem;
        padding: 15px 18px;
    }
    
    .form-control:focus,
    .form-select:focus {
        transform: translateY(-1px);
    }
    
    .form-control-md-lg,
    .form-select-md-lg {
        padding: 15px 18px;
        font-size: 1rem;
    }
    
    .form-label {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        border-radius: 12px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .btn-md-lg {
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* Desktop/Tablet Layout Adjustments */
    .booking-image-container {
        height: 475px;
    }
    
    .booking-image {
        object-fit: cover;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
    }
    
    .alert-success {
        border-radius: 12px;
        padding: 2rem;
    }
    
    .alert-success .alert-heading {
        margin-bottom: 1rem;
    }
    
    .invalid-feedback {
        margin-top: 5px;
        font-size: 0.85rem;
    }
    
    .fas {
        font-size: 0.9rem;
    }
    
    .fa-3x {
        font-size: 3rem;
    }
    
    .h3-md {
        font-size: 2rem;
    }
    
    .h4-md {
        font-size: 1.5rem;
    }
    
    .small-md {
        font-size: 1rem;
    }
    
    .shadow-lg {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .booking-card {
        border-radius: 24px;
    }
    
    .form-control,
    .form-select {
        border-radius: 14px;
        font-size: 1.1rem;
        padding: 18px 20px;
    }
    
    .form-control-md-lg,
    .form-select-md-lg {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .form-label {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    
    .btn-primary {
        border-radius: 14px;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .btn-md-lg {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
    }

    /* Desktop Layout Adjustments */
    .booking-image-container {
        height: 515px;
    }
    
    .alert-success {
        border-radius: 16px;
        padding: 2.5rem;
    }
    
    .invalid-feedback {
        margin-top: 6px;
        font-size: 0.9rem;
    }
    
    .fas {
        font-size: 1rem;
    }
    
    .h3-md {
        font-size: 2.5rem;
    }
    
    .h4-md {
        font-size: 1.75rem;
    }
    
    .small-md {
        font-size: 1.1rem;
    }
    
    .shadow-lg {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
}

/* Responsive Design - Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 177px;
    }
    
    .booking-card {
        border-radius: 28px;
    }
}

/* Responsive Design - Extra Large Desktop (1280px to 1512px) */
@media (min-width: 1280px) and (max-width: 1512px) {
    .container-fluid {
        max-width: 900px;
        margin: 0 auto;
        margin-top: 150px;
    }
    
    .booking-card {
        border-radius: 18px;
        padding: 0.75rem;
    }
    
    .form-control,
    .form-select {
        border-radius: 10px;
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    
    .form-control-md-lg,
    .form-select-md-lg {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .form-label {
        margin-bottom: 4px;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        border-radius: 10px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .btn-md-lg {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(5, 150, 105, 0.35);
    }
    
    .booking-image-container {
        height: 300px;
    }
    
    .alert-success {
        border-radius: 12px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .h3-md {
        font-size: 1.5rem;
    }
    
    .h4-md {
        font-size: 1rem;
    }
    
    .small-md {
        font-size: 0.85rem;
    }
    
    .fa-md-3x {
        font-size: 1.8rem;
    }
    
    textarea.form-control {
        min-height: 80px;
        padding: 8px 14px;
    }
    
    .mb-3 {
        margin-bottom: 0.75rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.25rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .booking-card {
        background: white;
        border: 2px solid #000;
    }
    
    .form-control,
    .form-select {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        color: white;
    }
}

/* Touch-friendly design for mobile */
@media (max-width: 767px) {
    .btn-primary {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .form-control,
    .form-select {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .form-label {
        margin-bottom: 8px;
    }
    
    .mb-3 {
        margin-bottom: 1rem !important;
    }
    
    .mb-md-4 {
        margin-bottom: 1rem !important;
    }
    
    .mt-4 {
        margin-top: 1.5rem !important;
    }
    
    .mt-md-5 {
        margin-top: 1.5rem !important;
    }
    
    .p-3 {
        padding: 1rem !important;
    }
    
    .p-sm-4 {
        padding: 1rem !important;
    }
    
    .p-md-5 {
        padding: 1rem !important;
    }
    
    .py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .py-md-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .container-fluid {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .booking-card .card-body {
        padding: 0.75rem !important;
    }
    
    .mb-3,
    .mb-md-4 {
        margin-bottom: 0.75rem !important;
    }
    
    .mt-4,
    .mt-md-5 {
        margin-top: 1rem !important;
    }
    
    .h2 {
        font-size: 1.25rem;
    }
    
    .text-muted {
        font-size: 0.85rem;
    }
}

/* Footer Styles - Exact copy from main.css */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 5rem 0;
    }
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 0 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand-header {
        margin-bottom: 2rem;
    }
}

/* Footer Logo Base Styles */
.footer-logo {
    height: 4.5rem;
    width: auto;
}

/* Footer Mobile Logo - Show by default */
.footer-logo-mobile {
    display: block;
}

.footer-logo-desktop {
    display: none;
}

/* Footer Desktop Logo - Show from tablet up */
@media (min-width: 768px) {
    .footer-logo-mobile {
        display: none;
    }
    
    .footer-logo-desktop {
        display: block;
        height: 6rem;
    }
}

@media (min-width: 1024px) {
    .footer-logo-desktop {
        height: 9rem;
        margin: -40px;
    }
}

@media (min-width: 1280px) {
    .footer-logo-desktop {
        height: 11rem;
        margin: -40px;
    }
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .social-links {
        gap: 1.5rem;
    }
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .social-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.footer-section {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-section {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-link {
        font-size: 1rem;
    }
}

.footer-link:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .contact-icon {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 1rem;
    }
}

.contact-text {
    color: #d1d5db;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .contact-text {
        font-size: 1rem;
    }
}

.footer-divider {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-divider {
        margin-top: 3.5rem;
        padding-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-divider {
        margin-top: 4rem;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        font-size: 1rem;
    }
}

/* Main Content Spacing */
#main-content {
    margin-top: 5rem; /* Account for fixed header on mobile */
}

@media (min-width: 768px) {
    #main-content {
        margin-top: 9rem; /* Account for larger header on tablet */
    }
}

@media (min-width: 1024px) {
    #main-content {
        margin-top: 10rem; /* Account for larger header on desktop */
    }
}

@media (min-width: 1280px) {
    #main-content {
        margin-top: 11rem; /* Account for largest header */
    }
}

/* Responsive adjustments for footer on mobile */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* ALL sections - LEFT ALIGNED in mobile */
    .footer-brand {
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-brand-header {
        justify-content: flex-start;
    }
    
    .footer-description {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-section {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .contact-info {
        align-items: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .contact-text {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .footer-divider {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Print styles */
@media print {
    .header,
    .call-button,
    .footer {
        display: none;
    }
    
    .bg-gradient {
        background: white !important;
    }
    
    .booking-card {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .btn-primary {
        background: #000 !important;
        color: white !important;
    }
    
    #main-content {
        margin-top: 0;
    }
}