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

/* Authentication Overlay Styles */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.auth-modal {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.auth-content h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.auth-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-buttons .btn-primary {
    background: #2563eb;
    color: white;
}

.auth-buttons .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.auth-buttons .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
}

.auth-buttons .btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

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

/* Dashboard Layout Fix */
.dashboard-container {
    padding-top: 6rem;
}

/* Enhanced Checkbox Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #2563eb;
    background: #f8fafc;
}

.checkbox-container input:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Terms and Conditions specific styling */
.checkbox-container.terms {
    margin-bottom: 1.5rem;
}

.checkbox-container.terms .checkmark {
    width: 18px;
    height: 18px;
}

/* Remember Me specific styling */
.checkbox-container.remember {
    margin-bottom: 0;
}

.checkbox-container.remember .checkmark {
    width: 16px;
    height: 16px;
}

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

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

/* Message Styles */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #2563eb;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.skills h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #6b7280;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Authentication Styles */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.auth-header h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6b7280;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    z-index: 1;
}

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

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    cursor: pointer;
    color: #9ca3af;
}

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
}

.checkbox-container input:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.forgot-password {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.auth-button {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1.5rem;
}

.auth-button:hover {
    background: #1d4ed8;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-button:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.social-button.google {
    color: #ea4335;
}

.social-button.facebook {
    color: #1877f2;
}

.auth-footer {
    text-align: center;
    color: #6b7280;
}

.auth-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 20%;
    background: #ff4444;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Login/Signup Button Styles */
.login-btn,
.signup-btn {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.login-btn:hover,
.signup-btn:hover {
    background: #1d4ed8;
}

.signup-btn {
    background: #10b981;
}

.signup-btn:hover {
    background: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-content,
.service-card,
.contact-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Booking Styles */
.booking-section {
    padding: 6rem 0 2rem 0;
    background: #f8fafc;
    min-height: 100vh;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.booking-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #2563eb;
    color: white;
}

.step span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.step.active span {
    color: #2563eb;
}

.step-content {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.step-header h2 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #6b7280;
}

/* Location Selection */
.location-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
}

.search-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-left: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.popular-locations h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.location-card:hover,
.location-card.active {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.location-card.active {
    background: #f0f9ff;
    border-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.location-card.active::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2563eb;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.location-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.location-card h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.location-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-info h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.map-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Spot Selection */
.spot-selection {
    margin-bottom: 2rem;
}

.selected-location {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.selected-location h3 {
    color: #1f2937;
    margin: 0;
}

.spot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spot-category h3,
.time-selection h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.spots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.spot-item {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.spot-item.available {
    background: #f0fdf4;
    border-color: #22c55e;
}

.spot-item.available:hover,
.spot-item.selected {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.spot-item.occupied {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
    cursor: not-allowed;
}

.spot-number {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.spot-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-slot {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-slot:hover,
.time-slot.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.time {
    font-weight: 600;
    color: #1f2937;
}

.price {
    font-weight: 600;
    color: #2563eb;
}

/* Vehicle Form */
.vehicle-form {
    margin-bottom: 2rem;
}

.vehicle-form .form-group {
    margin-bottom: 1.5rem;
}

.vehicle-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

/* Payment Section */
.payment-section {
    margin-bottom: 2rem;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.payment-option input:checked + .payment-card {
    border-color: #2563eb;
    background: #eff6ff;
}

.payment-card i {
    font-size: 1.5rem;
}

.payment-form {
    margin-bottom: 2rem;
}

.payment-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payment-summary h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

/* PayPal Section */
.paypal-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.paypal-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paypal-section h3::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230037BA"><path d="M20.067 8.478c.492.315.844.825.844 1.478 0 .653-.352 1.163-.844 1.478H18.5v-2.956h1.567zm-1.567 4.956h1.567c.492.315.844.825.844 1.478 0 .653-.352 1.163-.844 1.478H18.5v-2.956z"/></svg>') no-repeat center;
    background-size: contain;
}

#paypal-button-container {
    margin: 1rem 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-info {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.paypal-info p {
    margin: 0.5rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.paypal-info i {
    color: #0037BA;
    font-size: 1.1rem;
}

/* UPI Section Styles */
.upi-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid #e5e7eb;
}

.upi-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upi-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #5f259f;
    border-radius: 2px;
}

.upi-section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

#upi-button-container {
    margin: 1rem 0;
    min-height: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.upi-app-button {
    background: linear-gradient(135deg, #5f259f, #7c3aed);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 120px;
    justify-content: center;
}

.upi-app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.upi-app-button i {
    font-size: 16px;
}

.upi-info {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.upi-info p {
    margin: 0.5rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upi-info i {
    color: #5f259f;
    font-size: 1.1rem;
}

/* UPI Modal Styles */
.upi-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.upi-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.upi-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.upi-modal-title {
    margin: 10px 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.upi-modal-details {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.upi-modal-detail-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.upi-modal-actions {
    margin: 20px 0;
}

.upi-modal-btn {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.upi-modal-btn.confirm {
    background: #5f259f;
    color: white;
}

.upi-modal-btn.confirm:hover {
    background: #4c1d95;
}

.upi-modal-btn.cancel {
    background: #6c757d;
    color: white;
}

.upi-modal-btn.cancel:hover {
    background: #5a6268;
}

/* UPI Loading State */
#upi-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

#upi-loading .loading-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
}

#upi-loading .loading-icon {
    font-size: 32px;
    color: #5f259f;
    margin-bottom: 16px;
}

#upi-loading h3 {
    margin: 0;
    color: #333;
}

#upi-loading p {
    margin: 8px 0 0 0;
    color: #666;
}



/* Booking Summary */
.booking-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.summary-item.total {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

/* Success Page Styles */
.success-section {
    padding: 2rem 0;
    background: #f8fafc;
    min-height: 100vh;
}

.success-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.booking-details {
    margin-bottom: 3rem;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detail-content h3 {
    margin-bottom: 0.25rem;
    color: #1f2937;
    font-size: 0.9rem;
}

.detail-content p {
    color: #374151;
    font-weight: 600;
}

.qr-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
}

.qr-section h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.qr-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#qrCode {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-info {
    text-align: left;
}

.qr-info p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.qr-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.instructions {
    margin-bottom: 3rem;
}

.instructions h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.support-info {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
}

.support-info h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.support-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.support-contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.support-item i {
    color: #2563eb;
}

/* User Menu */
.user-menu {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    margin-top: 5px;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #2563eb;
}

.dropdown-menu a:last-child {
    border-top: 1px solid #e5e7eb;
    margin-top: 5px;
    padding-top: 10px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: white;
    color: #1f2937;
}

/* Parking Illustration */
.parking-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
}

/* How It Works */
.how-it-works {
    background: #f8fafc;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
}

/* Date Selection Styles */
.date-selection {
    margin-bottom: 2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.date-selection h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-picker {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.date-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f3f4f6;
    border-radius: 6px;
}

.date-nav-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.date-nav-btn:hover {
    background: #1d4ed8;
}

.date-display {
    font-weight: 600;
    color: #1f2937;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.date-item {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.date-item.selected {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.date-item.today {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.date-item.weekend {
    color: #dc2626;
}

.date-item.disabled {
    color: #9ca3af;
    cursor: not-allowed;
    background: #f9fafb;
}

.date-item.disabled:hover {
    background: #f9fafb;
    border-color: transparent;
}

/* Duration Selection Styles */
.duration-selection {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.duration-selection h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.duration-option {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.duration-option:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.duration-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1e40af;
}

.duration-option .duration-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.duration-option .duration-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

.duration-option .duration-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Updated Spot Grid */
.spots-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.spot-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.spot-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.spot-item.selected {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1e40af;
}

.spot-item.available {
    border-color: #10b981;
    background: #f0fdf4;
}

.spot-item.occupied {
    border-color: #ef4444;
    background: #fef2f2;
    cursor: not-allowed;
    opacity: 0.7;
}

.spot-item.occupied:hover {
    transform: none;
    box-shadow: none;
}

.spot-number {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.spot-status {
    font-size: 0.875rem;
    font-weight: 500;
}

.spot-item.available .spot-status {
    color: #059669;
}

.spot-item.occupied .spot-status {
    color: #dc2626;
}

.spot-item.selected .spot-status {
    color: #1e40af;
}

/* Real-time availability indicator */
.spot-item::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.spot-item.occupied::before {
    background: #ef4444;
}

.spot-item.selected::before {
    background: #2563eb;
}

/* Time Selection Styles */
.time-selection {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.time-selection h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.time-input-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.time-picker {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.time-picker:focus-within {
    border-color: #2563eb;
}

.time-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.time-btn:hover {
    background: #e5e7eb;
}

.time-btn i {
    font-size: 0.8rem;
    color: #6b7280;
}

.time-picker input {
    border: none;
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    background: white;
    min-width: 80px;
    outline: none;
}

.time-am-pm {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    background: white;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 60px;
}

.time-am-pm:focus {
    border-color: #2563eb;
}

.time-am-pm:hover {
    border-color: #d1d5db;
}

.time-separator {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 1.2rem;
}

.time-info {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.time-info p {
    margin: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-info i {
    color: #2563eb;
}

#calculatedDuration,
#calculatedTotal {
    font-weight: 600;
    color: #2563eb;
}

/* Responsive adjustments for time selection */
@media (max-width: 768px) {
    .time-range {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .time-separator {
        transform: rotate(90deg);
    }
    
    .time-picker input {
        min-width: 100px;
    }
} 

        .user-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .profile-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #667eea;
        }

        .profile-info h2 {
            margin: 0 0 5px 0;
            color: #333;
        }

        .profile-info p {
            margin: 0;
            color: #666;
        }

        .signout-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .signout-btn:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
        } 