/* Modern App Design - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #FFC107;
    --primary-dark: #FFB300;
    --secondary: #FFD700;
    --accent: #FFA000;
    --success: #00E396;
    --warning: #FEB019;
    --danger: #FF4560;
    --dark: #0a0a0a;
    --dark-light: #1e1e1e;
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-dark: #FFFFFF;
    --bg-primary: #0a0a0a;
    --bg-card: #1a1a1a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(255, 193, 7, 0.2);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 80px;
}

/* Remove underlines from all links */
a {
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: none;
}

/* App Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 12px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

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


.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.header-right {
    display: flex;
    gap: 12px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--dark-light);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-btn:hover {
    background: var(--primary);
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

.icon-btn:active {
    transform: scale(0.95);
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.app-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0 0 0;
}

.screen {
    display: none;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.screen.active {
    display: block;
}

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

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(255, 193, 7, 0.15);
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Booking Card */
.quick-booking-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-booking-card:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.15);
}

.quick-booking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.location-inputs {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.input-icon {
    width: 24px;
    text-align: center;
    color: var(--primary);
}

.input-icon.destination {
    color: var(--secondary);
}

.location-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: var(--text-dark);
}

.location-input::placeholder {
    color: var(--text-secondary);
}

.input-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.input-action:active {
    transform: scale(0.95);
}

.location-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--text-secondary) 50%, transparent 100%);
    margin: 8px 0 8px 36px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.6);
}

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

.btn-lg {
    padding: 18px 24px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-call {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.6);
}

.btn-call:active {
    transform: scale(0.96) translateY(0);
}

.btn-whatsapp {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

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

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp:active {
    transform: scale(0.98) translateY(0);
}

.btn-service {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:active {
    background: var(--primary);
    color: white;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.quick-action-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s;
}

.quick-action-item:active .quick-action-icon {
    transform: scale(0.95);
}

.quick-action-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.see-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Services Overview Cards */
.services-overview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-info-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-info-card:hover {
    transform: translateX(8px);
    border-color: rgba(255, 193, 7, 0.4);
    border-left-color: var(--primary);
    box-shadow: 0 6px 24px rgba(255, 193, 7, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.service-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-info-card:hover .service-info-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

.service-info-content {
    flex: 1;
}

.service-info-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-info-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Service Cards Modern */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.service-card-modern {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.service-card-modern:active {
    transform: translateY(-4px);
}

.service-card-modern.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.service-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}

.service-card-body {
    padding: 16px;
}

.service-card-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.service-card-body > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--bg-primary);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-dark);
}

/* Screen Header */
.screen-header {
    margin-bottom: 24px;
}

.screen-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.screen-header p {
    color: var(--text-secondary);
}

/* Activity Tabs */
.activity-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--bg-card);
    padding: 6px;
    border-radius: var(--radius-md);
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary);
    color: #000000;
}

.tab-content {
    display: none;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* History List */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.history-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.history-date .date {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.history-date .month {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.history-details {
    flex: 1;
}

.history-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.history-details p {
    font-size: 13px;
    color: var(--text-secondary);
}

.history-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

/* Profile */
.profile-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    color: white;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.profile-header h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.profile-header p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Profile Menu */
.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-section h3 {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item i:first-child {
    width: 24px;
    text-align: center;
    color: var(--primary);
}

.menu-item span {
    flex: 1;
    font-weight: 500;
}

.menu-item i:last-child {
    color: var(--text-secondary);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 8px 20px 8px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i {
    font-size: 22px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

/* FAB Button */
.fab-wrapper {
    position: relative;
}

.fab-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-button:hover {
    transform: translateX(-50%) translateY(-4px) rotate(90deg);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.7);
}

.fab-button:active {
    transform: translateX(-50%) scale(0.95);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    display: flex;
    align-items: flex-end;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.8);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--bg-primary);
}

.modal-header h3 {
    font-size: 20px;
}

.btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form-modal {
    padding: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--dark-light);
    border-radius: var(--radius-md);
    font-size: 16px;
    background: var(--dark-light);
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--dark);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-with-icon input {
    padding-left: 48px;
}

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

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.booking-buttons .btn-primary[data-method="email"] {
    display: none;
}

/* Responsive */
@media (min-width: 768px) {
    body {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }

    .app-content {
        box-shadow: 0 0 50px rgba(255, 193, 7, 0.1);
    }
}

/* Info Cards */
.info-card {
    background: var(--bg-card);
    border: 2px solid var(--dark-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Option Cards */
.contact-options {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-option-card {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.1);
}

.contact-option-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQ Quick Link on Landing Page */
.faq-quick-link {
    margin-top: 32px;
    cursor: pointer;
}

.faq-link-content {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-quick-link:hover .faq-link-content {
    border-color: rgba(255, 193, 7, 0.6);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
}

.faq-link-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-quick-link:hover .faq-link-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
}

.faq-link-text {
    flex: 1;
}

.faq-link-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.faq-link-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.faq-link-arrow {
    color: var(--primary);
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-quick-link:hover .faq-link-arrow {
    transform: translateX(8px);
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
}

.faq-item.active {
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(26, 26, 26, 0.95);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 193, 7, 0.05);
}

.faq-question > i:first-child {
    color: var(--primary);
    font-size: 20px;
    min-width: 20px;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-arrow {
    color: var(--primary);
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 56px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    background: rgba(26, 26, 26, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 193, 7, 0.3) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8) !important;
    border-radius: var(--radius-md) !important;
}

.flatpickr-months {
    background: rgba(255, 193, 7, 0.1) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary) !important;
}

.flatpickr-day {
    color: var(--text-primary) !important;
    border-radius: 8px !important;
}

.flatpickr-day:hover:not(.flatpickr-disabled),
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: rgba(255, 193, 7, 0.2) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day.today {
    border-color: var(--primary) !important;
    background: rgba(255, 193, 7, 0.1) !important;
}

.flatpickr-day.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #000000 !important;
    border-color: var(--primary) !important;
    font-weight: 700 !important;
}

.flatpickr-time input {
    color: var(--text-primary) !important;
    background: rgba(255, 193, 7, 0.1) !important;
    font-weight: 700 !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
    background: rgba(255, 193, 7, 0.2) !important;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
    color: var(--primary) !important;
}

.flatpickr-weekday {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}
