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

:root {
    --primary-color: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --medium-text: #64748b;
    --light-text: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--medium-text);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Hero Section */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hero-btn i {
    font-size: 1.3rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
    flex: 1;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.label {
    font-size: 1rem;
    color: var(--medium-text);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.delivery-bike {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2.5rem;
    color: var(--accent-color);
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.floating-icons i:nth-child(2) {
    top: 10%;
    right: 20%;
    animation: float 4s ease-in-out infinite 1s;
}

.floating-icons i:nth-child(3) {
    bottom: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite 1.5s;
}

/* Why Choose Us */
.why-section {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.why-section h2 {
    font-size: 2.75rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.why-desc {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

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

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--medium-text);
    line-height: 1.7;
}

/* Services */
.services-section {
    max-width: 1280px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-section h2 {
    font-size: 2.75rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-text);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem 2rem;
    text-align: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
}

.service-card:hover .service-icon::after {
    animation: shimmer 1.5s infinite;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.service-time {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-btn {
    width: 100%;
    background: var(--light-bg);
    border: none;
    padding: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.service-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Booking Form */
.booking-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.booking-header h2 {
    font-size: 2.75rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 800;
}

.booking-subtitle {
    color: var(--medium-text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-container {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

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

.form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-group:hover {
    border-color: var(--primary-light);
    background: white;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group label i {
    color: var(--accent-color);
}

.estimated-cost {
    background: linear-gradient(135deg, var(--light-bg), white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid var(--border-color);
    text-align: center;
}

.estimated-cost h4 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

#costDisplay {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.cost-note {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn i {
    font-size: 1.3rem;
}

.input-feedback {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

/* Confirmation */
.confirmation {
    display: none;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: bounce 0.5s ease-in-out 3;
}

.booking-details {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid var(--border-color);
}

.booking-details p {
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-details p:last-child {
    border-bottom: none;
}

.booking-details strong {
    color: var(--dark-text);
    font-weight: 600;
}

.status-confirmed {
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.print-btn, .new-booking-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.print-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.new-booking-btn {
    background: var(--secondary-color);
    color: white;
}

.new-booking-btn:hover {
    background: #7c3aed;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Tracking Section */
.tracking-section {
    max-width: 1280px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.tracking-section h2 {
    font-size: 2.75rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 3rem;
    font-weight: 800;
}

.tracking-demo {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tracking-progress {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
}

.tracking-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-bg);
    transition: all 0.3s ease;
    position: relative;
}

.tracking-step::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 100%;
    width: 2px;
    height: 3rem;
    background: var(--border-color);
}

.tracking-step:last-child::before {
    display: none;
}

.tracking-step.completed {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-left: 4px solid var(--primary-color);
}

.tracking-step.active {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.tracking-step i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.tracking-step.completed i {
    color: var(--primary-color);
    background: #dbeafe;
}

.tracking-step.active i {
    color: var(--accent-color);
    background: #e0f2fe;
    animation: pulse 2s infinite;
}

.tracking-step span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
}

.tracking-map {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-placeholder {
    text-align: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.map-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section .logo {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-tagline {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-badge i {
    font-size: 2rem;
}

.app-badge div {
    display: flex;
    flex-direction: column;
}

.app-badge span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.app-badge strong {
    font-size: 1.1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.contact-info i {
    color: var(--primary-light);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

.business-hours p {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.business-hours strong {
    color: white;
}

.newsletter {
    margin-top: 2rem;
}

.newsletter p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input input::placeholder {
    color: #94a3b8;
}

.newsletter-input button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-input button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

.made-with {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.made-with i {
    color: #ef4444;
    margin: 0 0.25rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

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

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

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

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tracking-demo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row,
    .form-options {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .why-section,
    .services-section,
    .booking-section,
    .tracking-section {
        padding: 2rem 1rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.success {
    border-color: var(--success-color) !important;
    background-color: rgba(16, 185, 129, 0.05) !important;
}

.error {
    border-color: var(--danger-color) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}