/*
Theme Name: Du Lịch Bàu Bàng
Description: Theme chuyên nghiệp cho website du lịch Bàu Bàng
Author: Du Lịch Bàu Bàng
Version: 1.1
*/

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto';
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles - Transport Company Style */
.header {
    background: linear-gradient(135deg, #0d1421 0%, #1e3c72 30%, #2a5298 70%, #3a6fb8 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-bottom: 3px solid #ffd700;
    overflow: hidden;
    min-height: 80px;
}

/* Add dynamic background pattern */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
    pointer-events: none;
    animation: headerShine 8s ease-in-out infinite;
}

@keyframes headerShine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

/* Add subtle scan line effect */
.header-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

/* Logo Styles - Industrial/Transport Design */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 3;
}

.logo-icon {
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.4));
}

.logo-text h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
    font-family: 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

/* Fallback styles để đảm bảo logo text luôn hiển thị */
.logo-text h1 {
    display: block !important;
    visibility: visible !important;
}

.logo-text .tagline {
    display: block !important;
    visibility: visible !important;
}

/* Alternative simple logo text (no animation) */
.logo-text.simple h1 {
    width: auto !important;
    overflow: visible !important;
    white-space: normal !important;
    border-right: none !important;
    animation: none !important;
}

.logo-text.simple .tagline {
    opacity: 1 !important;
    animation: none !important;
}

@keyframes logoGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
    display: block;
    margin-top: 4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
    background-size: 200% 200%;
    animation: taglineShine 2s ease-in-out infinite alternate;
}

@keyframes taglineShine {
    0% { color: #ffd700; text-shadow: 1px 1px 2px rgba(0,0,0,0.7), 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { color: #ffed4a; text-shadow: 1px 1px 2px rgba(0,0,0,0.7), 0 0 20px rgba(255, 215, 0, 0.6); }
}

/* DLBB Logo SVG - Enhanced Industrial Design */
.logo svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    box-shadow: 
        0 4px 12px rgba(30, 64, 175, 0.4),
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #1e3c72, #2a5298);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.logo svg:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 
        0 8px 24px rgba(30, 64, 175, 0.6),
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

/* Add pulse effect to logo */
.logo svg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    opacity: 0;
    animation: logoPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* Header responsive adjustments - Transport Style */
@media (max-width: 768px) {
    .header {
        min-height: 70px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo svg {
        width: 50px !important;
        height: 50px !important;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
    
    .logo-text .tagline {
        font-size: 0.75rem;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-text .tagline {
        display: none;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-icon,
    .logo svg {
        width: 40px !important;
        height: 40px !important;
    }
    
    .nav ul {
        gap: 0.5rem;
    }
    
    .nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Add vehicle silhouettes animation in header background */
.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 120px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M10 25h25v5h10v-5h20v5h5l-5 5h-5v-5h-20v5h-10v-5h-25z' fill='rgba(255,215,0,0.1)'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    opacity: 0.3;
    animation: vehicleMove 15s linear infinite;
    pointer-events: none;
}

@keyframes vehicleMove {
    0% { left: -200px; }
    100% { left: calc(100% + 100px); }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 3;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden !important;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav a:hover::before {
    opacity: 1;
}

.nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.2),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.nav a:active {
    transform: translateY(-1px);
}

/* Ripple effect for navigation links */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: slideInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-content .btn {
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #ff6b35;
    border-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

/* Services Grid */
.services-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: bold;
    color: #ff6b35;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Grid */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3c72;
    font-size: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Contact Grid - Inline Layout for 5 items on one line */
.contact-grid-inline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-items: center;
    align-items: stretch;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #1e3c72;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Enhanced Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(58, 111, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 1px 8px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(58, 111, 184, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 111, 184, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(58, 111, 184, 0.2);
    border-color: rgba(58, 111, 184, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3a6fb8 0%, #2a5298 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(58, 111, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-icon::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: iconShine 3s linear infinite;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a5298;
    color: #ccc;
}

/* Booking Form Styles */
.booking-btn {
    background: #28a745 !important;
}

.booking-btn:hover {
    background: #218838 !important;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 2rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #f8f9fa;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #1e3c72;
    color: white;
}

/* Loading states */
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Success/Error messages */
.message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Inline contact grid responsive - stack on mobile */
    .contact-grid-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .car-specs {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-grid-inline {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
        min-height: 160px;
    }
    
    .contact-card h3 {
        font-size: 0.9rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
}

/* Medium screens */
@media (max-width: 768px) and (min-width: 481px) {
    .contact-grid-inline {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.8rem;
    }
    
    .contact-card {
        padding: 0.8rem;
        min-height: 140px;
    }
    
    .contact-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-grid-inline {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }
    
    .contact-card {
        flex: 0 0 140px;
        padding: 0.6rem;
        min-height: 120px;
        scroll-snap-align: start;
    }
    
    .contact-card h3 {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-card p {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
      .car-info {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Floating Zalo Button */
.floating-zalo-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: bounce 2s infinite, blink 3s infinite;
}

.floating-zalo-btn a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0068FF 0%, #0052CC 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 104, 255, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.floating-zalo-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 104, 255, 0.6);
    background: linear-gradient(135deg, #0052CC 0%, #0068FF 100%);
}

.zalo-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

.zalo-text {
    white-space: nowrap;
}

/* Pulse ring effect */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid #0068FF;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0;
    z-index: -1;
}

/* Zalo Button Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes blink {
    0%, 90% {
        opacity: 1;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile responsive for Zalo button */
@media (max-width: 768px) {
    .floating-zalo-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-zalo-btn a {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .zalo-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .zalo-text {
        display: none;
    }
    
    .floating-zalo-btn a {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
      .pulse-ring {
        width: 50px;
        height: 50px;
    }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9998;
    animation: bounce 2.5s infinite;
}

.floating-call-btn a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.floating-call-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
}

.call-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    font-size: 18px;
    animation: pulse 1.8s infinite;
}

.call-text {
    white-space: nowrap;
}

/* Mobile responsive for call button */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 80px;
        right: 15px;
    }
    
    .floating-call-btn a {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
    
    .call-icon {
        width: 20px;
        height: 20px;
        margin-right: 0;
        font-size: 16px;
    }
      .call-text {
        display: none;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 9997;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    display: none;
    align-items: center;
    animation: fadeInUp 0.5s ease;
}

.back-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.back-to-top-btn.show {
    display: flex;
    animation: bounceIn 0.5s ease;
}

.back-to-top-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.back-to-top-text {
    white-space: nowrap;
}

.pulse-ring-call {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid #ff6b35;
    border-radius: 50%;
    animation: pulse-ring 2.2s infinite;
    opacity: 0;
    z-index: -1;
}

/* Additional animations for floating buttons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile responsive for back to top button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 130px;
        right: 15px;
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
    
    .back-to-top-icon {
        width: 20px;
        height: 20px;
        margin-right: 0;
    }
    
    .back-to-top-text {
        display: none;
    }
    
    .pulse-ring-call {
        width: 50px;
        height: 50px;
    }
}

/* Transport Company Header - Additional Effects */
.nav a {
    position: relative !important;
    overflow: hidden !important;
}

/* Logo entrance animation */
.logo svg {
    animation: logoEntrance 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Text styling for company name - SIMPLE VERSION */
.logo-text h1 {
    margin: 0 !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: white !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    letter-spacing: -0.5px !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    text-transform: uppercase !important;
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% 200% !important;
    animation: logoGlow 3s ease-in-out infinite alternate !important;
    /* Remove typing animation for now */
    width: auto !important;
    overflow: visible !important;
    white-space: normal !important;
    border-right: none !important;
}

@keyframes typing {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blinker {
    50% { border-color: transparent; }
}

/* Tagline styling - SIMPLE VERSION */
.logo-text .tagline {
    font-size: 0.9rem !important;
    color: #ffd700 !important;
    font-weight: 600 !important;
    display: block !important;
    margin-top: 4px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-family: Arial, sans-serif !important;
    animation: taglineShine 2s ease-in-out infinite alternate !important;
    /* Remove fade animation for now */
    opacity: 1 !important;
}

@keyframes fadeInUpTagline {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(58, 111, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 1px 8px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(58, 111, 184, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 111, 184, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(58, 111, 184, 0.2);
    border-color: rgba(58, 111, 184, 0.3);
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3a6fb8 0%, #2a5298 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(58, 111, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon-bg::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: iconShine 3s linear infinite;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1e3c72;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3a6fb8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: testimonialsBg 10s ease-in-out infinite alternate;
}

@keyframes testimonialsBg {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, transparent, #ffd700);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.star {
    color: #ffd700;
    margin-right: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1421 0%, #1e3c72 50%, #2a5298 100%);
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(58, 111, 184, 0.1), rgba(255, 215, 0, 0.05));
    animation: ctaOverlay 8s ease-in-out infinite alternate;
}

@keyframes ctaOverlay {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-icon {
    font-size: 1.2rem;
    color: #ffd700;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    min-width: 250px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    background: #ffd700;
    color: #1e3c72;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn-cta-primary::before,
.btn-cta-secondary::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.6s ease;
}

.btn-cta-primary:hover::before,
.btn-cta-secondary:hover::before {
    left: 100%;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .features-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1421 0%, #1e3c72 25%, #2a5298 75%, #3a6fb8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 20, 33, 0.3);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(58, 111, 184, 0.1) 50%, transparent 70%);
}

.floating-vehicles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.vehicle-float {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatMove 20s linear infinite;
}

.vehicle-1 {
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.vehicle-2 {
    top: 50%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.vehicle-3 {
    top: 80%;
    animation-delay: -15s;
    animation-duration: 22s;
}

@keyframes floatMove {
    0% {
        left: -200px;
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-3deg);
    }
    100% {
        left: calc(100% + 200px);
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-line-2 {
    display: block;
    margin-top: 10px;
    color: white;
    opacity: 0.95;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0d1421;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Quick Booking Section */
.quick-booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.quick-booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(58, 111, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(58, 111, 184, 0.1);
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 111, 184, 0.02) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d1421;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.booking-icon {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
}

.booking-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.5;
}

.booking-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: #0d1421;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #0d1421;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a6fb8;
    box-shadow: 0 0 0 3px rgba(58, 111, 184, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-booking {
    background: linear-gradient(135deg, #3a6fb8 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(58, 111, 184, 0.4);
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(58, 111, 184, 0.6);
    background: linear-gradient(135deg, #2a5298 0%, #3a6fb8 100%);
}

.btn-loading {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-alternatives {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3a6fb8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2a5298;
    transform: translateY(-1px);
}

.contact-icon {
    font-size: 1.1rem;
}

/* Responsive Design for Hero and Booking */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .booking-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .contact-alternatives {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-card {
        border-radius: 15px;
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
}

/* ======================================
   BANNER IMAGE FALLBACK STYLES
   ====================================== */

/* Banner image error handling */
.banner-image-error {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-family: monospace;
    text-align: center;
    padding: 2rem;
    border: 2px dashed #dee2e6;
}

.banner-image-error .error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.banner-image-error .error-url {
    font-size: 0.9rem;
    word-break: break-all;
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    max-width: 80%;
}

.banner-image-error .error-message {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.6;
}

/* Banner fallback when no admin banners exist */
.banner-fallback-notice {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.banner-fallback-notice .notice-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Mobile responsive for error displays */
@media (max-width: 768px) {
    .banner-image-error {
        padding: 1rem;
    }
    
    .banner-image-error .error-icon {
        font-size: 2rem;
    }
    
    .banner-image-error .error-url {
        font-size: 0.8rem;
        max-width: 90%;
    }
}