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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1A1A1A;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B35;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section - Complete Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: #FFFFFF;
    color: #FF6B35;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button svg path {
    stroke: #FF6B35;
}

/* Hero Visual - New SVG Design */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-illustration circle {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 138, 101, 0.6) 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Dividers */
.section-divider {
    height: 120px;
    overflow: hidden;
}

.section-divider svg {
    width: 100%;
    height: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 138, 101, 0.01) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(255, 107, 53, 0.02);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A1A1A;
}

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

/* Testimonials Section */
.testimonials {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.03) 0%, rgba(255, 138, 101, 0.02) 50%, rgba(255, 204, 188, 0.01) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 138, 101, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 4px solid #FF6B35;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stars {
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 107, 53, 0.3);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-card cite {
    color: #FF6B35;
    font-weight: 600;
    font-style: normal;
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Section */
.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

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

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.time-slot {
    padding: 14px 12px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot.available {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.05);
    color: #10B981;
}

.time-slot.available:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.time-slot.booked {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    color: #FF6B35;
    cursor: not-allowed;
}

.time-slot.selected {
    border-color: #FF6B35;
    background: #FF6B35;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Booking Details */
.booking-details {
    border-top: 2px solid #F5F5F5;
    padding-top: 24px;
    margin-top: 24px;
}

.booking-details h3 {
    margin-bottom: 20px;
    color: #1A1A1A;
}

.book-button {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.book-button:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Shop Section */
.shop {
    background: rgba(255, 107, 53, 0.02);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 138, 101, 0.03) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 101, 0.06) 100%);
}

.placeholder-img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.product-card:hover .placeholder-img {
    opacity: 1;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.product-card p {
    color: #666;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 16px;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Gallery Section */
.gallery {
    background: white;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 138, 101, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.gallery-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    background-color: rgba(255, 107, 53, 0.05);
}

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

.gallery-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.gallery-card p {
    color: #666;
    line-height: 1.5;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 138, 101, 0.03) 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.social-proof-content {
    text-align: center;
}

.social-proof-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1A1A1A;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    opacity: 0.6;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Events Section */
.events {
    background: #FFFFFF;
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

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

.calendar-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.cal-nav {
    background: none;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 36px;
}

.cal-nav:hover {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-days-header span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    padding: 8px 0;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: default;
    position: relative;
    transition: all 0.2s ease;
    min-height: 36px;
}

.cal-day.other-month {
    color: #CCC;
}

.cal-day.today {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    font-weight: 700;
}

.cal-day.has-event {
    cursor: pointer;
    font-weight: 700;
    color: #FF6B35;
}

.cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
}

.cal-day.has-event:hover {
    background: rgba(255, 107, 53, 0.1);
}

.events-list {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.events-list-header {
    margin-bottom: 20px;
}

.events-list-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.event-card {
    padding: 16px;
    border-left: 3px solid #FF6B35;
    background: rgba(255, 107, 53, 0.03);
    border-radius: 0 12px 12px 0;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.event-card:hover {
    background: rgba(255, 107, 53, 0.06);
    transform: translateX(4px);
}

.event-card .event-date {
    font-size: 0.85rem;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-card .event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.event-card .event-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.event-card .event-meta {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-category.tournament { background: rgba(255, 107, 53, 0.1); color: #FF6B35; }
.event-category.clinic { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.event-category.open-play { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.event-category.social { background: rgba(168, 85, 247, 0.1); color: #A855F7; }
.event-category.general { background: rgba(107, 114, 128, 0.1); color: #6B7280; }

.no-events {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-style: italic;
}

/* Location Section */
.location-info {
    max-width: 800px;
    margin: 0 auto;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

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

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

.footer-top {
    margin-bottom: 50px;
    text-align: center;
}

.newsletter-signup h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-2px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9F9F9;
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.close-cart:hover {
    background: #E5E5E5;
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    max-height: 400px;
}

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

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

.cart-item-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-info p {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #E5E5E5;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #F5F5F5;
    border-color: #FF6B35;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #E5E5E5;
    background: #F9F9F9;
}

.cart-total {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-1px);
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.checkout-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    padding: 24px;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9F9F9;
}

.close-checkout {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.close-checkout:hover {
    background: #E5E5E5;
}

.checkout-form {
    padding: 24px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

.checkout-summary {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.checkout-summary h4 {
    margin-bottom: 12px;
}

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

.checkout-total {
    border-top: 1px solid #E5E5E5;
    padding-top: 12px;
    margin-top: 12px;
    text-align: right;
    font-size: 1.25rem;
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.place-order-btn:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-1px);
}

/* Cart Float Button */
.cart-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.cart-float:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #1A1A1A;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Success Messages */
.success-message {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.error-message {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
        height: 200px;
    }
    
    .hero-illustration {
        max-width: 250px;
        opacity: 0.7;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .events-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .booking-widget {
        padding: 24px;
    }
    
    .cart-content,
    .checkout-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .hero {
        padding: 80px 16px 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cart-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cart-float,
    .cart-modal,
    .checkout-modal {
        display: none !important;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .hero-text h1 {
        color: black;
    }
}

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

/* Focus States */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    }
    
    .hero-text h1,
    .hero-text p {
        color: white;
        text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    }
}