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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #333;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.flash-banner {
    background: linear-gradient(90deg, #ff0000, #ffff00, #ff0000);
    background-size: 200% 100%;
    animation: flashRainbow 1s linear infinite;
    text-align: center;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes flashRainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.flash-text {
    font-weight: 900;
    font-size: 1.2rem;
    color: #000;
    text-shadow: 1px 1px 2px #fff;
}

header {
    margin-top: 60px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 60px;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.hero {
    padding: 2rem 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.rotating-text {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: visible;
    vertical-align: top;
    width: 100%;
    min-width: 400px;
    text-align: center;
}

.rotating-text span {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    animation: rotateText 6s infinite;
    opacity: 0;
    transform: translateY(100%);
    white-space: nowrap;
    text-align: center;
    display: block;
}

.rotating-text span:nth-child(1) { 
    animation-delay: 0s; 
}
.rotating-text span:nth-child(2) { 
    animation-delay: 2s; 
}
.rotating-text span:nth-child(3) { 
    animation-delay: 4s; 
}

@keyframes rotateText {
    0% { 
        opacity: 0; 
        transform: translateY(100%); 
    }
    8.33% { 
        opacity: 1; 
        transform: translateY(0); 
    }
    25% { 
        opacity: 1; 
        transform: translateY(0); 
    }
    33.33% { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-book {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 8px 20px rgba(255,107,107,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,107,107,0.6);
}

.pulsing {
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.hero-animation {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
}

.plane {
    animation: fly 4s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -20px) rotate(5deg); }
    50% { transform: translate(100px, 0) rotate(0deg); }
    75% { transform: translate(50px, 20px) rotate(-5deg); }
}

.clouds {
    margin-top: 2rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

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

.features {
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.ticker {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: scroll 60s linear infinite;
    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.booking-preview {
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.9);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input, .form-row select {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.btn-book {
    width: 100%;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    margin-top: 1rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78,205,196,0.4);
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b6b;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ff6b6b;
    font-size: 0.9rem;
}

/* Fee Highlights Section */
.fee-highlights {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.fee-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fee-item {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #333;
}

.fee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.fee-item ul {
    list-style: none;
    padding: 0;
}

.fee-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    color: #333;
}

.fee-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.9rem;
    opacity: 1;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Priority Levels Section */
.priority-levels {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.priority-levels h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.priority-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.priority-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.priority-card.premium {
    border: 3px solid #ff6b6b;
    transform: scale(1.05);
}

.priority-card.luxury {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.priority-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(15deg);
}

.priority-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.priority-card li {
    padding: 0.5rem 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.small-print {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Live Updates Section */
.live-updates {
    padding: 4rem 2rem;
    background: #333;
    color: white;
}

.live-updates h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.queue-display {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.queue-item {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    align-items: center;
}

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

.queue-item.yours {
    background: rgba(255,107,107,0.2);
    border-radius: 10px;
    border: 2px solid #ff6b6b;
}

.position {
    font-weight: 700;
    color: #4ecdc4;
    font-family: monospace;
}

.passenger {
    font-weight: 600;
}

.status {
    color: #ccc;
    font-size: 0.9rem;
}

.queue-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ecdc4;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .testimonial-grid,
    .fee-grid,
    .priority-grid {
        grid-template-columns: 1fr;
    }
    
    .queue-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .priority-card.premium {
        transform: none;
    }
    
    .badge {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    /* Hide passenger counter on mobile */
    .passenger-counter {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .rotating-text {
        min-width: 250px;
        font-size: 0.9em;
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rotating-text {
        min-width: 200px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 35vh;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .rotating-text {
        min-width: 200px;
        font-size: 0.8em;
        width: 100%;
    }
    
    .rotating-text span {
        font-size: 0.9em;
    }
}

/* Simple Legal Disclaimer */
.simple-disclaimer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
}

.simple-disclaimer p {
    margin: 0.25rem 0;
    font-weight: 600;
    color: #333;
}

/* Dark Mode Variables */
:root {
    --bg-primary: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    --bg-secondary: rgba(255,255,255,0.95);
    --text-primary: #333;
    --text-secondary: #666;
    --card-bg: white;
}

body.dark-mode {
    --bg-primary: linear-gradient(45deg, #2c1810, #1a2f2a, #1e2a3a, #2a3a2e);
    --bg-secondary: rgba(30,30,30,0.95);
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --card-bg: #2a2a2a;
}

body.dark-mode {
    color: var(--text-primary);
}

body.dark-mode .features {
    background: var(--bg-secondary);
}

body.dark-mode .feature-card,
body.dark-mode .testimonial-card,
body.dark-mode .priority-card {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Navigation Buttons */
.nav-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.spin-btn {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    animation: spinButtonPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.spin-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

@keyframes spinButtonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }
}

/* Delay Counter */
.delay-counter {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.delay-display h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: urgentFlash 2s ease-in-out infinite;
}

.delay-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
}

.delay-time {
    color: #ffff99;
    font-size: 1.2rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #000;
}

/* Seat Selection */
.seat-modal-content {
    max-width: 900px;
}

.airplane-map {
    background: #f0f8ff;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.seat-map {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.seat {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.seat.available {
    background: #4ecdc4;
    color: white;
}

.seat.standard {
    background: #45b7d1;
    color: white;
}

.seat.premium {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
}

.seat.occupied {
    background: #999;
    color: #666;
    cursor: not-allowed;
}

.seat.selected {
    border: 3px solid #ff6b6b;
    transform: scale(1.1);
}

.seat-selection-info {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Baggage Calculator */
.baggage-calculator {
    text-align: center;
}

.baggage-calculator label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.baggage-calculator input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 200px;
    text-align: center;
    margin-bottom: 2rem;
}

.baggage-fees {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
}

.fee-breakdown p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fee-breakdown hr {
    margin: 1rem 0;
    border: 1px solid #ddd;
}

.baggage-note {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .delay-info {
        flex-direction: column;
        text-align: center;
    }
    
    .seat-legend {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1rem;
    }
    
    /* Mobile widget positioning */
    .passenger-counter {
        bottom: 100px;
        left: 10px;
        min-width: 140px;
        padding: 1rem;
        transform: scale(0.75);
        position: fixed;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        gap: 1.5rem;
        z-index: 1000;
        box-sizing: border-box;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a,
    .nav-btn {
        width: 80%;
        padding: 1rem;
        margin: 0 auto;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }
    
    .navbar {
        padding: 1rem;
        align-items: center;
        flex-direction: row;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        align-items: center;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    /* Ensure full width containers on mobile */
    .container,
    .hero,
    .features,
    .testimonials,
    .fee-highlights,
    .priority-levels,
    .live-updates,
    .booking-preview {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .passenger-counter {
        bottom: 100px;
        left: 5px;
        min-width: 120px;
        padding: 0.6rem;
        transform: scale(0.65);
        position: fixed;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-title {
        font-size: 0.7rem;
    }
    
    .counter-subtitle {
        font-size: 0.6rem;
    }
    
    .counter-warning {
        font-size: 0.5rem;
    }
    
    .chatbot-widget {
        bottom: 35px;
        right: 15px;
    }
    
    .chatbot-widget:not(.mobile-circle) {
        bottom: 20px;
        right: 15px;
    }
}

/* Passenger Counter Widget */
.passenger-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9998;
    text-align: center;
    min-width: 200px;
    animation: counterPulse 3s ease-in-out infinite;
}

.counter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.counter-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: numberChange 1s ease-in-out;
}

.counter-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.counter-warning {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.5rem;
    border-radius: 10px;
    animation: urgentBlink 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes numberChange {
    0% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

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

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        gap: 1.5rem;
        z-index: 1000;
        box-sizing: border-box;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a,
    .nav-btn {
        width: 80%;
        padding: 1rem;
        margin: 0 auto;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }
    
    .navbar {
        padding: 1rem;
        align-items: center;
        flex-direction: row;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        align-items: center;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    /* Ensure full width containers on mobile */
    .container,
    .hero,
    .features,
    .testimonials,
    .fee-highlights,
    .priority-levels,
    .live-updates,
    .booking-preview {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    body {
        overflow-x: hidden;
    }
}

/* Spin Wheel Styles */
.wheel-container {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ff6b6b;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 2rem auto;
    position: relative;
    border: 5px solid #ff6b6b;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
    background: conic-gradient(
        from 0deg,
        #ff6b6b 0deg 45deg,
        #4ecdc4 45deg 90deg,
        #45b7d1 90deg 135deg,
        #96ceb4 135deg 180deg,
        #ffeb3b 180deg 225deg,
        #ff9800 225deg 270deg,
        #9c27b0 270deg 315deg,
        #f44336 315deg 360deg
    );
}

.wheel-section {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.wheel-section:nth-child(1) { transform: rotate(0deg) translate(0, -100%); }
.wheel-section:nth-child(2) { transform: rotate(45deg) translate(0, -100%); }
.wheel-section:nth-child(3) { transform: rotate(90deg) translate(0, -100%); }
.wheel-section:nth-child(4) { transform: rotate(135deg) translate(0, -100%); }
.wheel-section:nth-child(5) { transform: rotate(180deg) translate(0, -100%); }
.wheel-section:nth-child(6) { transform: rotate(225deg) translate(0, -100%); }
.wheel-section:nth-child(7) { transform: rotate(270deg) translate(0, -100%); }
.wheel-section:nth-child(8) { transform: rotate(315deg) translate(0, -100%); }

#spin-button {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    animation: buttonPulse 2s ease-in-out infinite;
}

.spin-result {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.spin-result h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.spin-result p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.result-disclaimer {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Auto Popup Styles */
.auto-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15000;
    animation: popupSlideIn 0.5s ease-out;
}

.auto-popup-content {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.auto-popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.auto-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: bounce 1s ease-in-out infinite alternate;
}

.popup-offer {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 2px dashed white;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.popup-buttons button {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.9;
    margin-top: 1rem;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .wheel {
        width: 250px;
        height: 250px;
    }
    
    .wheel-section {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .auto-popup-content {
        margin: 0 0.5rem;
        padding: 2rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons button {
        min-width: auto;
    }
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chatbot-widget.minimized .chatbot-body {
    display: none;
}

.chatbot-widget.mobile-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: visible;
}

.chatbot-widget.mobile-circle .chatbot-header {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding: 0;
}

.chatbot-widget.mobile-circle .chatbot-header span:first-child {
    display: none;
}

.chatbot-widget.mobile-circle .chatbot-header::before {
    content: "💬";
    font-size: 1.5rem;
}

.chatbot-widget.mobile-circle .chatbot-close {
    display: none;
    font-size: 1.5rem;
}

.chatbot-widget.mobile-circle .chatbot-body {
    display: none !important;
}

.chatbot-header {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chatbot-header:hover {
    background: linear-gradient(45deg, #ee5a52, #44a08d);
}

.chatbot-close {
    font-size: 1.5rem;
    font-weight: bold;
}

.chatbot-body {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
}

.message-bubble {
    background: #e9ecef;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    display: flex;
    justify-content: flex-start;
}

.bot-message .message-bubble {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

.user-message .message-bubble {
    background: #007bff;
    color: white;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    background: white;
    border-top: 1px solid #dee2e6;
}

.chatbot-input input {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.chatbot-input button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mobile Responsiveness for Chatbot */
@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 30px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .chatbot-widget:not(.mobile-circle) {
        width: calc(100% - 40px);
        max-width: 350px;
        height: auto;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 35px;
        right: 15px;
    }
    
    .chatbot-widget:not(.mobile-circle) {
        bottom: 20px;
        right: 15px;
    }
}
