* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(222.2, 84%, 4.9%);
}

/* Design system colors */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(212, 100%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 40%, 96.1%);
    --secondary-foreground: hsl(222.2, 47.4%, 11.2%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(212, 100%, 35%);
    --taxi-yellow: hsl(45, 93%, 58%);
    --taxi-blue: hsl(212, 100%, 35%);
    --taxi-dark: hsl(222.2, 84%, 4.9%);
    --gradient-hero: linear-gradient(135deg, hsl(212, 100%, 35%), hsl(212, 100%, 35%));
    --shadow-taxi: 0 10px 30px -10px hsl(212, 100%, 35%, 0.3);
    --radius: 0.5rem;
}

/* Announcement Bar styles */
.announcement-bar {
    background: linear-gradient(90deg, #2563EB, #1D4ED8, #312E81);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s;
}

.announcement-bar.visible { transform: translateY(0); opacity: 1; }

.announcement-content { display: flex; align-items: center; justify-content: center; gap: 1.5rem; width: 100%; text-align: center; }

.announcement-text { font-size: 1.1rem; font-weight: 500; }

.price-highlight { display: inline-block; margin: 0 0.5rem; font-weight: 700; color: #FBBF24; font-size: 1.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

.close-button { background: transparent; border: none; cursor: pointer; padding: 0.5rem; border-radius: 50%; transition: background-color 0.2s; }
.close-button:hover { background-color: rgba(255, 255, 255, 0.1); }
.close-button svg { stroke: white; width: 1.25rem; height: 1.25rem; }

.sparkle { position: absolute; background-color: rgba(255, 255, 255, 0.15); border-radius: 50%; animation: sparkle-animation 15s linear infinite; }
.sparkle-1 { top: 10%; left: 5%; width: 5px; height: 5px; animation-delay: 0s; }
.sparkle-2 { top: 50%; left: 20%; width: 8px; height: 8px; animation-delay: -2s; }
.sparkle-3 { top: 80%; left: 45%; width: 4px; height: 4px; animation-delay: -5s; }
.sparkle-4 { top: 25%; left: 70%; width: 6px; height: 6px; animation-delay: -8s; }
.sparkle-5 { top: 60%; left: 95%; width: 5px; height: 5px; animation-delay: -12s; }

@keyframes sparkle-animation { 0% { transform: translateY(20px) scale(0.5); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-20px) scale(1.2); opacity: 0; } }

@media (max-width: 768px) {
    .announcement-content { flex-direction: column; gap: 0.75rem; }
    .announcement-text { font-size: 1rem; }
    .price-highlight { font-size: 1.25rem; }
}

/* Utility classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: var(--background);
}

/* Toast styles */
#toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-taxi);
    min-width: 300px;
    animation: toastSlideIn 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid var(--primary);
}

.toast.error {
    border-left: 4px solid var(--destructive);
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.toast-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #000000, #1f2937, #000000);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(212, 100%, 35%, 0.1), transparent, hsl(45, 93%, 58%, 0.1));
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, hsl(212, 100%, 35%, 0.15) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.company-info {
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .company-info {
        text-align: left;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    display: block;
    color: var(--taxi-yellow);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--taxi-yellow);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .contact-buttons {
        justify-content: flex-start;
    }
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--taxi-yellow);
    color: var(--taxi-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-button:hover {
    opacity: 0.9;
}

.phone-icon {
    height: 1.25rem;
    width: 1.25rem;
}

/* Booking Form */
.booking-form-container {
    display: flex;
    justify-content: center;
}

.booking-card {
    width: 100%;
    max-width: 28rem;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-taxi);
    overflow: hidden;
}

.booking-header {
    text-align: center;
    padding: 1.5rem 1.5rem 0;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.booking-content {
    padding: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

.label-icon {
    height: 1rem;
    width: 1rem;
    color: var(--muted-foreground);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsl(212, 100%, 35%, 0.2);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    opacity: 0.9;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--card);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--foreground);
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.contact-icon {
    height: 3rem;
    width: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.contact-item-text {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-item-subtext {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: var(--taxi-dark);
    color: white;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-title-accent {
    color: var(--taxi-yellow);
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}