/* =====================================================
   DONG TRAVEL - Premium Cab & Travel Service
   Premium CSS with 3D Effects & Animations
   ===================================================== */

/* =====================================================
   CSS VARIABLES & THEME COLORS
   ===================================================== */
:root {
    --primary-color: #1a5f2a;
    --primary-dark: #0d3d1a;
    --primary-light: #2d8a3e;
    --secondary-color: #f59e1c;
    --secondary-dark: #d48a12;
    --accent-color: #e85d04;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --hero-gradient: linear-gradient(135deg, rgba(26, 95, 42, 0.9) 0%, rgba(26, 95, 42, 0.7) 50%, rgba(26, 95, 42, 0.5) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.3);

    /* 3D Shadows */
    --shadow-3d-up: 0 -10px 30px rgba(0, 0, 0, 0.15);
    --shadow-3d-down: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-3d-hover: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================================
   BASE STYLES & RESET
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090b11; /* Deep rich dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 320px;
    width: 90%;
}

.logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

.loading-car {
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: carPulse 1.5s ease-in-out infinite;
}

.loading-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.loading-brand span {
    color: var(--secondary-color);
}

.loading-bar-container {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 1rem auto;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--primary-gradient);
    border-radius: 10px;
    animation: loadingProgress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loading-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes carPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) translateY(-2px);
        opacity: 1;
        color: var(--secondary-color);
    }
}

@keyframes loadingProgress {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

/* =====================================================
   NAVBAR STYLES
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white) !important;
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-nav {
    background: var(--secondary-color);
    color: var(--dark-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-nav:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') center center/cover no-repeat;
    transform: scale(1.1);
    animation: parallax 30s ease-in-out infinite alternate;
}

@keyframes parallax {
    0% { transform: scale(1.1) translateX(0); }
    100% { transform: scale(1.2) translateX(-2%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-gradient);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero h1 span {
    color: var(--secondary-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 28, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-feature-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-feature-text strong {
    font-size: 1.1rem;
}

/* =====================================================
   SECTION STYLES
   ===================================================== */
.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   3D CARDS
   ===================================================== */
.card-3d {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: none;
    box-shadow: var(--shadow-md);
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: var(--shadow-3d-hover);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    transform: translateZ(-20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.card-3d:hover::before {
    opacity: 1;
}

.card-3d-content {
    position: relative;
    z-index: 1;
}

/* =====================================================
   CAR CARDS
   ===================================================== */
.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
}

.car-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: var(--shadow-3d);
}

.car-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    opacity: 0.1;
    transition: var(--transition-normal);
}

.car-card:hover::after {
    transform: scale(3);
}

.car-image {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.car-info {
    padding: 1.5rem;
}

.car-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.car-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.car-feature i {
    color: var(--primary-color);
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.car-price span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* =====================================================
   PRICING CARDS
   ===================================================== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-color);
    color: var(--white);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-amount {
    color: var(--white);
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-card.featured .pricing-amount span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--secondary-color);
}

/* =====================================================
   SERVICES CARDS
   ===================================================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 95, 42, 0.3);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
}

/* =====================================================
   ATTRACTIONS CAROUSEL
   ===================================================== */
.attraction-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.attraction-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.15);
}

.attraction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.attraction-overlay h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.attraction-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 30px rgba(26, 95, 42, 0.3);
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.blog-link:hover {
    gap: 1rem;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */
.about-hero, .services-hero, .contact-hero, .cabs-hero {
    position: relative;
    padding: 12rem 0 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

.about-hero {
    background-image: url('../imgs/imgs/dibrugarh-tea-garden-landscape-assam-sunset.jpg');
}

.services-hero {
    background-image: url('../imgs/imgs/toyota-innova-crysta-white-mpv-outdoor-scenic.jpg');
}

.contact-hero {
    background-image: url('../imgs/imgs/majuli-island-assam-brahmaputra-river-landscape.jpg');
}

.cabs-hero {
    background-image: url('../imgs/imgs/modern-luxury-car-experience-website-hero.jpg');
}

.about-hero::before, .services-hero::before, .contact-hero::before, .cabs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 42, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

.about-hero .container, .services-hero .container, .contact-hero .container, .cabs-hero .container {
    position: relative;
    z-index: 2;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.mission-card:hover .mission-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(26, 95, 42, 0.3);
}

.stat-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-section {
    background: var(--gray-100);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

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

/* =====================================================
   MAP SECTION
   ===================================================== */
.map-section {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* =====================================================
   BOOKING POPUP MODAL
   ===================================================== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border: none;
    padding: 0 2rem 2rem;
}

/* =====================================================
   FOOTER STYLES
   ===================================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--secondary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    border-radius: var(--radius-sm) !important;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 42, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    background: var(--secondary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 28, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* =====================================================
   ANIMATION UTILITIES
   ===================================================== */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    /* Make links dark-colored on mobile collapse menu regardless of scroll position */
    .navbar .nav-link {
        color: var(--gray-800) !important;
        padding: 0.75rem 1rem !important;
        text-align: center;
        width: 100%;
        border-radius: var(--radius-sm);
        margin-bottom: 0.25rem;
    }
    
    .navbar .nav-link::after {
        display: none; /* remove hover line under link on mobile */
    }
    
    .navbar .nav-link:hover, .navbar .nav-link.active {
        color: var(--primary-color) !important;
        background: rgba(26, 95, 42, 0.05);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 0.75rem;
    }

    .hero-features {
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: var(--primary-color) !important;
}

.bg-light-custom {
    background: var(--gray-100) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.shadow-lg-custom {
    box-shadow: var(--shadow-xl) !important;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

/* =====================================================
   ALERT MESSAGES
   ===================================================== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* =====================================================
   LOADING SPINNER
   ===================================================== */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Trust Badge Strip Styles */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust-item {
    padding: 0.5rem 1rem;
    transition: var(--transition-normal);
}
.trust-item:hover {
    transform: translateY(-2px);
}
.trust-icon {
    color: var(--primary-color);
    transition: var(--transition-normal);
}
.trust-item:hover .trust-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}
.trust-text h6 {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Route Cards Styling */
.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}
.route-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 95, 42, 0.2);
}
.route-card h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    font-weight: 700;
}
.badge.bg-success-light {
    background-color: rgba(26, 95, 42, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
}

/* FAQ Accordion Styling */
.accordion-item {
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.accordion-item:hover {
    box-shadow: var(--shadow-md);
}
.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: rgba(26, 95, 42, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}
.accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
}

/* =====================================================
   UPGRADED MODAL & COMPACT FORMS
   ===================================================== */
.modal-dialog {
    max-width: 720px;
}

.modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #090b11 0%, #152219 100%);
    border-bottom: 2px solid var(--secondary-color);
    padding: 1.25rem 1.75rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.modal-title i {
    color: var(--secondary-color);
}

.modal-body {
    padding: 1.75rem;
}

.modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.75rem;
}

/* Premium Form Elements */
.modal .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.modal .input-group-text {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-right: none;
    color: #64748b;
    border-radius: 8px 0 0 8px;
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.modal .form-control,
.modal .form-select {
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0 8px 8px 0;
    background-color: #ffffff;
    color: var(--gray-800);
    transition: var(--transition-fast);
}

.modal .form-select {
    border-radius: 0 8px 8px 0;
}

.modal textarea.form-control {
    border-radius: 8px;
    min-height: 80px;
    padding: 0.65rem 0.85rem;
}

.modal .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(26, 95, 42, 0.02);
}

.modal .form-control:focus,
.modal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 42, 0.1);
    background-color: #ffffff;
}

/* Upgraded Toast Alert */
.notification-toast {
    box-shadow: var(--shadow-lg) !important;
    border-radius: 8px !important;
    font-weight: 500;
    border: none !important;
    background: #090b11 !important;
    color: var(--white) !important;
}
.notification-toast.alert-danger {
    border-left: 4px solid #ef4444 !important;
}
.notification-toast.alert-success {
    border-left: 4px solid var(--secondary-color) !important;
}

/* Cabs Filter Tabs */
.fleet-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    border: 1px solid #e2e8f0;
    background: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 95, 42, 0.2);
}

/* Fleet Grid Cards */
.fleet-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fleet-image {
    position: relative;
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fleet-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.fleet-class {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.fleet-feature {
    font-size: 0.8rem;
    background: #f8fafc;
    color: var(--gray-600);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fleet-feature i {
    color: var(--primary-color);
}

.fleet-highlights {
    border-top: 1px dashed #e2e8f0;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.fleet-highlights h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.fleet-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-highlights li {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fleet-highlights li i {
    color: #10b981;
    font-size: 0.75rem;
}

.fleet-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.fleet-actions .btn {
    border-radius: 8px;
}

/* Responsiveness overrides */
@media (max-width: 576px) {
    .modal-body {
        padding: 1.25rem 1rem;
    }
    .modal-footer {
        padding: 0.75rem 1rem 1.25rem;
    }
    .modal-header {
        padding: 1rem 1.25rem;
    }
    .modal-title {
        font-size: 1.15rem;
    }
    .modal .row.g-3 {
        --bs-gutter-y: 0.75rem;
    }
    .fleet-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .fleet-actions a, .fleet-actions button {
        width: 100%;
        text-align: center;
    }
}
