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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.animated-ball {
    color: #ffffff;
    font-size: 1.5rem;
    animation: ballSpin 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

@keyframes ballSpin {
    0% { 
        transform: rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
    }
    50% { 
        transform: rotate(180deg);
        filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    }
    100% { 
        transform: rotate(360deg);
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
    }
}

/* Booking Loading and Success Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

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

.admin-link {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000 !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.admin-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    padding: 80px 0 20px 0;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: url('IMG_1083.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 0 40px;
    width: 100%;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #fff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.badge-text {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-logo:hover {
    transform: scale(1.05);
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    font-size: 1.2rem;
}

.fifa-logo {
    width: 40%;
    height: 40%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-text h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.feature i {
    color: #00ff88;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #00ff88;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #00ff88;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.cta-button:active,
.cta-button.clicked {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border-color: #00ff88;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.football-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-football {
    font-size: 8rem;
    color: #ffffff;
    animation: heroBallFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
}

@keyframes heroBallFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5));
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.8));
    }
}

/* Partner Section */
.partner-section {
    margin: 20px 0;
}

.partner-simple {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-logo-simple {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    mix-blend-mode: multiply;
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="%2300ff88" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.amenities h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.amenity:hover {
    transform: translateY(-3px);
}

.amenity i {
    color: #00ff88;
    font-size: 1.2rem;
}



.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.turf-image,
.turf-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.turf-image {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

.turf-image-placeholder {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.turf-image-placeholder::before {
    content: "🏟️ LA Sports Turf";
}

/* Booking Section */
.booking {
    padding: 60px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Simple Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    scroll-margin-top: 100px; /* Ensure proper scroll positioning */
    transition: all 0.3s ease;
}

.booking-form:focus-within {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

/* Booking Steps */
.booking-step {
    display: none;
    padding: 25px;
    animation: slideIn 0.3s ease;
}

.booking-step.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.step-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Date Row */
.date-row {
    margin-bottom: 20px;
}

.date-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.date-scroll::-webkit-scrollbar {
    display: none;
}

.date-item {
    min-width: 80px;
    height: 90px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-item.today {
    border: 3px solid #00ff88;
    background: #ffffff;
    color: #333;
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
    position: relative;
}

.date-item.today::before {
    content: "Today";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    line-height: 1;
}

.date-item.today .date-day,
.date-item.today .date-number,
.date-item.today .date-month {
    color: #333;
    font-weight: 600;
}

.date-month {
    font-size: 0.7rem;
    color: #666;
    margin-top: 2px;
}

.booking-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.full-calendar-btn {
    min-width: 120px;
    height: 90px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: white;
    font-weight: 500;
    border: 2px solid transparent;
}

.full-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.full-calendar-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.full-calendar-btn span {
    font-size: 0.8rem;
}

.date-item:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.date-item.selected {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.date-item.selected .date-day,
.date-item.selected .date-number,
.date-item.selected .date-month {
    color: #000;
    font-weight: 600;
}

.date-item.disabled {
    background: #f1f3f4;
    color: #ccc;
    cursor: not-allowed;
}

.date-item.booked {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.date-day {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 3px;
    color: #333;
}

.date-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Time Section */
.time-section {
    margin-top: 20px;
    transition: opacity 0.3s ease;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.time-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.time-slot {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.time-slot:hover::before {
    left: 100%;
}

.time-slot:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.time-slot.selected {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.time-slot.unavailable,
.time-slot.blocked {
    background: #f1f3f4;
    color: #ccc;
    cursor: not-allowed;
    border-color: #e9ecef;
}

.time-slot .time {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.time-slot .duration {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.time-slot .price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff88;
}

/* Court & Duration Grid */
.court-duration-grid {
    display: grid;
    gap: 25px;
}

.court-section h4,
.duration-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.court-options {
    display: grid;
    gap: 10px;
}

.duration-options {
    display: flex;
    gap: 8px;
    flex-direction: row;
}

.court-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.duration-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 70px;
    height: 60px;
}

.court-btn::before,
.duration-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.court-btn:hover::before,
.duration-btn:hover::before {
    transform: scaleX(1);
}

.court-btn:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateX(5px);
}

.court-btn.active {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-color: #00ff88;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.duration-btn:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateY(-2px);
}

.duration-btn.active {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.court-size,
.duration-time {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.court-desc {
    font-size: 0.8rem;
    color: #666;
}

.duration-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    line-height: 1;
}

.duration-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
}

/* Details Form */
.details-form {
    display: grid;
    gap: 15px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.form-field input::placeholder {
    color: #999;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    font-weight: 500;
    color: #666;
}

.summary-item .value {
    font-weight: 600;
    color: #333;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0;
    border-top: 2px solid #e9ecef;
    margin-top: 15px;
}

.summary-total .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.summary-total .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
}

/* Navigation */
.booking-nav {
    padding: 20px 25px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
}

.booking-nav .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

.booking-nav .nav-btn.back {
    background: #f8f9fa;
    color: #666;
}

.booking-nav .nav-btn.back:hover {
    background: #e9ecef;
    color: #333;
}

.booking-nav .nav-btn.next {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
}

.booking-nav .nav-btn.next:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.booking-nav .nav-btn.next:disabled {
    background: #e9ecef;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.booking-nav .nav-btn.confirm {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
}

.booking-nav .nav-btn.confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.nav-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-booking {
        margin: 0 15px;
        border-radius: 12px;
    }
    
    .booking-step {
        padding: 20px;
    }
    
    .step-header {
        gap: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-info h3 {
        font-size: 1.2rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-nav {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}





/* Step Headers */
.step-header {
    text-align: center;
    margin-bottom: 25px;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.step-header p {
    font-size: 1rem;
    color: #666;
}

/* Date Selector */
.date-selector {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.nav-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
}

.nav-btn:hover {
    border-color: #00ff88;
    color: #00ff88;
    transform: scale(1.05);
}

.calendar-navigation h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.calendar-container {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    padding: 15px 0;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
}

.calendar-day {
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
}

.calendar-day:hover {
    background: #f0f8f0;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-weight: 600;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.calendar-day.disabled {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.booked {
    background: #ffe6e6;
    color: #ff6b6b;
    cursor: not-allowed;
}

.calendar-day.booked::after {
    content: '×';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.8rem;
    color: #ff6b6b;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.time-slot:hover::before {
    left: 100%;
}

.time-slot:hover {
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-color: #00ff88;
    color: #000;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.time-slot.unavailable,
.time-slot.blocked {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
    border-color: #e9ecef;
}

.time-slot.unavailable:hover,
.time-slot.blocked:hover {
    transform: none;
    box-shadow: none;
}

.time-slot .time {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1;
}

.time-slot .price {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1;
}

.time-slot.selected .price {
    opacity: 1;
    font-weight: 600;
    color: #000 !important;
}

.time-slot .status {
    font-size: 0.8rem;
    color: #ff4444;
    font-weight: 600;
    line-height: 1;
}

/* Duration Options */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.duration-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.duration-card:hover {
    border-color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.15);
}

.duration-card.selected {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-color: #00ff88;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.duration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.duration-info {
    flex: 1;
    text-align: left;
}

.duration-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.duration-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.duration-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

.duration-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff6b6b;
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Details Form */
.details-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon {
    color: #00ff88;
}

/* Booking Summary Card */
.booking-summary-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.summary-header i {
    font-size: 1.5rem;
    color: #00ff88;
}

.summary-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.summary-details {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row .label {
    font-weight: 500;
    color: #666;
}

.summary-row .value {
    font-weight: 600;
    color: #333;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
    margin-top: 20px;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-back,
.btn-next,
.btn-confirm {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-back {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-back:hover {
    background: #e9ecef;
    color: #333;
    transform: translateX(-5px);
}

.btn-next {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-next:hover:not(:disabled) {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-next:disabled {
    background: #e9ecef;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-confirm {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-wizard {
        margin: 0 20px;
        border-radius: 15px;
    }
    
    .wizard-progress {
        padding: 20px;
    }
    
    .progress-steps {
        gap: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step span {
        font-size: 0.8rem;
    }
    
    .wizard-content {
        padding: 20px;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .date-selector {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-back,
    .btn-next,
    .btn-confirm {
        width: 100%;
        justify-content: center;
    }
}

.booking-calendar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.calendar-nav {
    background: #00ff88;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #00cc6a;
    transform: scale(1.1);
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day:hover {
    border-color: #00ff88;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #00ff88;
    color: #000;
    font-weight: 600;
}

.calendar-day.booked {
    background: #ff6b6b;
    color: #fff;
    cursor: not-allowed;
}

.calendar-day.disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
}

.booking-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
}

.booking-summary {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-item.total {
    border-top: 2px solid #e0e0e0;
    padding-top: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.book-button {
    width: 100%;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: #fff;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
}

.pricing-card.featured {
    border-color: #00ff88;
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff88;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-header p {
    color: #ccc;
    margin-bottom: 30px;
}

.card-price {
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
}

.duration {
    font-size: 1rem;
    color: #ccc;
}

.card-features {
    list-style: none;
}

.card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-features i {
    color: #00ff88;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ff88;
    transform: scale(1.2);
}

.dot:hover {
    background: #00cc6a;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    background: #f0f0f0;
    display: block;
}

/* Loading animation for images */
.gallery-image:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item i {
    color: #00ff88;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.timings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timing-slot {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timing-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.timing-hours {
    color: #666;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #00ff88;
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.3));
    transition: all 0.3s ease;
}

.map-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.map-placeholder small {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.map-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: translateY(-8px);
}

.map-link:hover .map-placeholder {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-link:hover .map-placeholder i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 255, 136, 0.4));
}

.map-button {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

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

.map-button:hover::before {
    left: 100%;
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.map-button i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #00ff88;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: #00ff88;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00cc6a;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
    position: relative;
}

.secret-admin-link {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.secret-admin-link:hover {
    color: #00ff88;
    opacity: 1;
    transform: scale(1.05);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px 0 20px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 15px;
    }

    .feature {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .football-container {
        width: 200px;
        height: 200px;
    }

    .hero-football {
        font-size: 5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .gallery-carousel {
        max-width: 100%;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        align-self: center;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .booking-calendar,
    .booking-form {
        padding: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button,
    .book-button {
        border: 2px solid #000;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cta-button,
    .book-button,
    .nav-toggle {
        display: none;
    }
}

/* Full Calendar Modal */
.full-calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.full-calendar-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.full-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: white;
}

.full-calendar-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.full-calendar-body {
    padding: 30px;
}

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

.calendar-nav .nav-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.calendar-nav .nav-btn:hover {
    background: #00ff88;
    border-color: #00ff88;
    color: white;
    transform: scale(1.1);
}

.calendar-nav h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.calendar-grid {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.calendar-weekdays div {
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

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

.calendar-day {
    aspect-ratio: 1;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.calendar-day:hover {
    background: #f0f8f0;
    transform: scale(1.05);
}

.calendar-day.today {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: white;
    font-weight: 600;
}

.calendar-day.other-month {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.past {
    background: #f1f3f4;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.has-bookings {
    background: #ffe6e6;
    color: #ff6b6b;
}

.calendar-day.has-bookings .booking-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.day-number {
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile Responsive for Full Calendar */
@media (max-width: 768px) {
    .full-calendar-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .full-calendar-header {
        padding: 15px 20px;
    }
    
    .full-calendar-header h3 {
        font-size: 1.2rem;
    }
    
    .full-calendar-body {
        padding: 20px;
    }
    
    .calendar-nav h4 {
        font-size: 1.1rem;
    }
    
    .calendar-weekdays div {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .day-number {
        font-size: 0.9rem;
    }
} 

/* New Date Selection Styles */
.date-selection {
    margin: 20px 0;
}

.date-selection h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.date-row {
    margin: 20px 0;
}

.date-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #00ff88 #f0f0f0;
}

.date-scroll::-webkit-scrollbar {
    height: 6px;
}

.date-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.date-scroll::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 3px;
}

.date-item {
    min-width: 80px;
    height: 90px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-item:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.date-item.selected {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.date-item.today {
    border-color: #00ff88;
    background: #00ff88;
    color: #000;
    font-weight: 600;
}

.date-day {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: inherit;
}

.date-number {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: inherit;
}

.date-month {
    font-size: 0.8rem;
    color: inherit;
    opacity: 0.8;
}

.booking-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Time Selection Styles */
.time-selection {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    transition: opacity 0.3s ease;
}

.time-selection h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-slot:hover {
    border-color: #00ff88;
    background: #f0f8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.time-slot.selected {
    background: #00ff88;
    border-color: #00ff88;
    color: #000;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.time-slot .time {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: inherit;
}

.time-slot .duration {
    font-size: 0.65rem;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 2px;
}

.time-slot .price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00ff88;
}

.time-slot.selected .price {
    color: #000 !important;
}

/* Booking Success Styles */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.booking-success p {
    color: #666;
    margin-bottom: 30px;
}

.booking-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: #333;
}

.detail-item .value {
    color: #00ff88;
    font-weight: 600;
}

.success-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-new-booking {
    background: #00ff88;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 200px;
    justify-content: center;
}

.btn-new-booking:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.btn-back-to-home {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 200px;
    justify-content: center;
}

.btn-back-to-home:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive time grid */
@media (max-width: 768px) {
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .time-slot {
        padding: 6px 4px;
        min-height: 45px;
    }
    
    .time-slot .time {
        font-size: 0.8rem;
    }
    
    .time-slot .duration {
        font-size: 0.6rem;
    }
    
    .time-slot .price {
        font-size: 0.7rem;
    }
}

 