/* Modern Service Booking System Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e60023;
    --primary-hover: #d50c22;
    --secondary-color: #767676;
    --success-color: #00a693;
    --danger-color: #e60023;
    --warning-color: #f39800;
    --info-color: #0074d9;
    --dark-color: #111111;
    --light-color: #ffffff;
    --border-color: #e9e9e9;
    --text-color: #333333;
    --text-light: #767676;
    --bg-color: #ffffff;
    --bg-light: #f7f7f7;
    --shadow: 0 2px 16px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-light);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Hide mobile-only elements on desktop */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile bottom navigation - hidden on desktop */
.mobile-bottom-nav {
    display: none;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-bottom-nav {
        display: flex !important;
    }
}

/* Header */
.main-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible !important;
}

.header-content {
    overflow: visible !important;
}

.container {
    overflow: visible !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(230, 0, 35, 0.08);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links .sep {
    color: rgba(255,255,255,0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 24px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 48px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 2px 8px rgba(230, 0, 35, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 0, 35, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-danger {
    background-color: var(--danger-color);
    color: #fff;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.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(0,123,255,0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

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

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

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

/* Cards */
.category-card,
.service-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.category-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.categories-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 0 24px;
}

.categories-section,
.services-section {
    margin-bottom: 80px;
}

.categories-section h3,
.services-section h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    margin: 0 -24px 60px;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #ffcc80;
    color: #856404;
}

.status-picked-up {
    background-color: #f8bbd0;
    color: #c2185b;
}

.status-in-process {
    background-color: #bbdefb;
    color: #1565c0;
}

.status-ready {
    background-color: #c8e6c9;
    color: #2e7d32;
}

.status-completed {
    background-color: #e0e0e0;
    color: #616161;
}

.status-cancelled {
    background-color: #ffcdd2;
    color: #c62828;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

/* Auth Pages */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 0;
}

.auth-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.auth-card h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard-header {
    margin-bottom: 2rem;
}

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

.stat-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Bookings */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-info h4 {
    margin-bottom: 0.5rem;
}

.booking-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.booking-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

/* Service Booking Page */
.service-booking-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-info {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-info h2 {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.booking-form-container {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--primary-color);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.inventory-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inventory-item {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.inventory-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.stock-info {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.total-amount {
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 4px;
    text-align: center;
    font-size: 1.25rem;
}

/* Confirmation Page */
.confirmation-page {
    max-width: 800px;
    margin: 2rem auto;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.booking-details-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-notice {
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-color);
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

.no-data {
    text-align: center;
    padding: 2rem;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-booking-page {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .booking-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-status {
        align-items: flex-start;
        width: 100%;
    }

    .carousel-controls {
        width: 40px;
        height: 40px;
    }
}

/* Carousel/Banner Styles */
.banner-carousel-section {
    margin: 0 -24px 60px -24px;
    width: calc(100% + 48px);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-hover);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
}

.carousel-slide .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.slide-placeholder h3 {
    font-size: 2rem;
    text-align: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 2rem;
    z-index: 10;
}

.slide-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.slide-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    color: var(--dark-color);
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 15;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255,255,255,0.9);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(255,255,255,0.9);
}

/* Image Container Styles */
.category-image-container,
.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    position: relative;
}

.category-image,
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image,
.category-card:hover .category-image {
    transform: scale(1.08);
}

.category-content,
.service-content {
    padding: 24px;
}

.category-content h4,
.service-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.3;
}

.category-content p,
.service-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 8px 0;
}

.category-header {
    margin-bottom: 2rem;
}

.category-image-container {
    height: 350px;
    margin-bottom: 1.5rem;
}

.service-content {
    padding-bottom: 1rem;
}

.image-preview {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-color);
}

.image-preview img {
    max-width: 100%;
    max-height: 250px;
    display: block;
}

/* Service and Category Card Updates */
.service-card,
.category-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.category-image-container,
.service-image-container {
    margin: 0;
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.service-content,
.category-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h4,
.service-content h4 {
    margin-bottom: 0.5rem;
}

.service-price,
.service-duration {
    margin: 0.25rem 0;
    color: var(--secondary-color);
}

.service-description {
    flex-grow: 1;
    margin: 0.5rem 0;
}

.category-content .btn,
.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}


/* Additional Pinterest-style enhancements */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.no-data-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}

.main-content {
    min-height: 100vh;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .categories-section h3,
    .services-section h3 {
        font-size: 28px;
    }
    
    .header-content {
        padding: 0 16px;
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
        margin: 0 -16px 40px;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category-content,
    .service-content {
        padding: 20px;
    }
}


/* New Hero Section Styles */
.hero-section-new {
    position: relative;
    height: 500px;
    margin: 0 -24px;
    width: calc(100% + 48px);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 24px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.6);
}

.hero-content h1 strong {
    font-weight: 700;
}

.explore-link {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
    cursor: pointer;
}

.search-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    border-bottom-color: #111;
}

.search-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #e60023;
}

.search-btn {
    background: #111;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #333;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.explore-all {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.explore-all:hover {
    text-decoration: underline;
}

.categories-grid {
    padding: 0;
}

@media (max-width: 768px) {
    .hero-section-new {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .search-form {
        padding: 15px;
    }
}


.form-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-display {
    flex: 1;
    min-width: 150px;
}

.book-btn {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 768px) {
    .form-row-bottom {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .price-display {
        flex: 0 0 auto;
        min-width: auto;
    }

    .book-btn {
        flex: 1;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .form-row-bottom {
        flex-direction: column;
    }

    .price-display {
        width: 100%;
        justify-content: center;
    }

    .book-btn {
        width: 100%;
    }
}


/* Mobile Hero Section Fixes */
@media (max-width: 768px) {
    .hero-section-new {
        height: 400px;
    }

    .hero-overlay {
        padding: 20px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }

    .search-form {
        padding: 12px;
    }

    .form-row-bottom {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .price-display {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .price-value {
        font-size: 18px;
    }

    .book-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-section-new {
        height: 350px;
    }

    .hero-overlay {
        padding: 15px 12px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .search-form {
        padding: 10px;
    }

    .form-row {
        gap: 10px;
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }

    .form-row-bottom {
        gap: 8px;
    }

    .price-display {
        font-size: 13px;
    }

    .price-value {
        font-size: 16px;
    }

    .book-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
}
