/* 
   Arasi Travels - Premium Design System 
   Theme: Modern, Trustworthy, Premium (Deep Navy, Gold, White)
*/

:root {
    /* Bootstrap Overrides */
    --bs-primary: #5CE65C;
    --bs-primary-rgb: 92, 230, 92;

    /* Brand Colors - Fresh & Trustworthy */
    --primary-color: #5CE65C;
    /* Bright Lime Green */
    --primary-dark: #3db83d;
    --secondary-color: #0f172a;
    /* Deep Navy */
    --accent-color: #FFD700;
    /* Gold for highlights */

    /* UI Colors */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;

    /* Utilities */
    --border-radius-xl: 24px;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Setup */
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.fw-black {
    font-weight: 900;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.text-xs {
    font-size: 0.75rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    top: 48px;
    /* Offset for top-bar height approx */
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 100px;
    /* max-height: 100px; */
    /* Significantly increased from 50px */
    width: auto;
    object-fit: contain;
    border-radius: 10%;
    transition: all 0.3s ease;
    mix-blend-mode: multiply;
    /* Make white bg transparent */
}

@media (max-width: 768px) {
    .navbar-logo {
        max-height: 60px;
        /* Smaller on mobile but still clear */
    }
}

.nav-link {
    font-weight: 600;
    color: var(--text-main) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: #000;
    box-shadow: 0 4px 6px rgba(92, 230, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(92, 230, 92, 0.4);
}

.btn-outline-danger {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-danger:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
    min-height: auto;
    padding: 1.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 1rem;
}

/* Remove extra space after navbar */
.navbar + .hero-section,
.navbar ~ .hero-section {
    margin-top: 0;
    padding-top: 1rem;
}

.hero-content-row {
    min-height: auto;
    padding: 0.5rem 0;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 2rem 0 2.5rem;
    }
    
    .hero-content-row {
        padding: 1rem 0;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 1rem 0 1.5rem;
    }
    
    .hero-content-row {
        padding: 0.5rem 0;
    }
}

.hero-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-color);
    clip-path: ellipse(80% 100% at 50% 120%);
    z-index: 1;
    opacity: 0.05;
}

/* Modern Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.trust-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(92, 230, 92, 0.15);
    border: 1px solid rgba(92, 230, 92, 0.2);
    transition: all 0.3s ease;
}

.trust-badge-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(92, 230, 92, 0.25);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #3db83d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.badge-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Discount Banner */
.hero-discount-banner {
    display: inline-block;
    margin-bottom: 1rem;
}

.discount-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.discount-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.discount-content {
    display: flex;
    flex-direction: column;
}

.discount-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #92400e;
    margin-bottom: 3px;
}

.discount-text {
    font-size: 14px;
    font-weight: 800;
    color: #78350f;
}

.discount-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Modern Hero Title */
.hero-title-modern {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db83d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle-modern {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 95%;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Hero CTA Buttons */
.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db83d 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(92, 230, 92, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(92, 230, 92, 0.5);
    color: white;
}

.btn-hero-primary .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary i {
    font-size: 18px;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-hero-secondary i {
    font-size: 16px;
}

/* Hero Stats */
.hero-stats-wrapper {
    margin-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(92, 230, 92, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(92, 230, 92, 0.2);
    border-color: rgba(92, 230, 92, 0.3);
}

.stat-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(92, 230, 92, 0.1), rgba(61, 184, 61, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    .hero-image-container {
        min-height: 450px;
        padding: 0;
    }
}

.hero-decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 10%;
    right: -10%;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: 10%;
    left: -5%;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(92, 230, 92, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-bottom: 50px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    animation: floatImage 6s ease-in-out infinite;
    position: relative;
    transition: transform 0.5s ease;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hero-slider:hover .hero-main-image {
    transform: scale(1.02);
}

/* Remove any box styling from carousel items */
.hero-slider .carousel-item {
    background: transparent;
    border: none;
    box-shadow: none;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-image-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 50px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    opacity: 0.8;
}

/* Hero Slider - Integrated Design (Blended with Background) */
.hero-slider {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
}

.hero-slider .carousel-inner {
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.hero-slider .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Side navigation controls removed - using only bottom indicators */

/* Slider Indicators - Enhanced Design (Only Navigation) */
.hero-slider .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 5;
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 0.8;
    cursor: pointer;
}

.hero-slider .carousel-indicators button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-slider .carousel-indicators button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 3px 10px rgba(92, 230, 92, 0.5);
    transform: scale(1.1);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-image-container {
        min-height: 350px;
        margin-top: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px 8px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 10px;
    }
    
    .hero-slider .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0.75rem 0 1.5rem;
        padding-top: 0.5rem;
    }
    
    .hero-title-modern {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle-modern {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-image-container {
        min-height: 250px;
        margin-top: 1.5rem;
        padding: 0.5rem;
    }
    
/* Side navigation controls removed */
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .stat-card {
        padding: 10px 6px;
    }
    
    .stat-number {
        font-size: 13px;
    }
    
    .stat-label {
        font-size: 7px;
    }
}

.hero-car-img {
    max-width: 140%;
    margin-right: -20%;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bg-soft-primary {
    background-color: #dcfce7;
}

/* Premium CTA Cards */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db83d 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.cta-card:hover::before {
    top: -30%;
    right: -30%;
}

.cta-card-primary {
    background: linear-gradient(135deg, #5CE65C 0%, #3db83d 100%);
}

.cta-card-secondary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.cta-card-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-card .btn-light:hover {
    background: white;
    transform: scale(1.05);
}

.cta-card .btn-dark:hover {
    background: #000;
    transform: scale(1.05);
}

/* Cards */
.car-card {
    border: none;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.car-img-wrapper {
    height: 220px;
    background: radial-gradient(circle at center, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.car-card:hover .car-img-wrapper img {
    transform: scale(1.1) translateY(-5px);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Gradient - Deep Blue */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db83d 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Text Colors on Hover */
.feature-card:hover h4,
.feature-card:hover p {
    color: white !important;
}

.feature-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Gallery Card Effects */
.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.gallery-card img {
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Icon Animation */
.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 2rem;
        /* Clear navbar + space */
        min-height: auto !important;
        padding-bottom: 4rem;
    }

    /* Override Bootstrap min-vh-100 on mobile */
    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-bottom: 0 !important;
    }

    .hero-car-img {
        max-width: 100%;
        margin-right: 0;
        margin-top: 2rem;
    }

    .cta-widget {
        margin-top: 2rem !important;
        padding: 1.5rem !important;
    }

    .cta-widget h4 {
        font-size: 1.25rem;
    }

    .cta-widget p {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }

    .cta-widget .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem 2rem !important;
    }

    .blob-shape {
        display: none;
    }
}

/* Reference-style Car Card */
.rent-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.rent-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rent-card-header {
    position: relative;
    padding: 1rem;
    padding-bottom: 0;
}

.rent-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #059669;
    /* Green like reference */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.rent-card-fav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: #94a3b8;
}

.rent-card-img-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.rent-card-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.rent-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rent-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.rent-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rent-card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.75rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--text-main);
}

.spec-item i {
    font-size: 1rem;
    color: var(--text-muted);
}

.spec-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.rent-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 0.5rem;
}

.rent-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.rent-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.rent-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

/* Mobile Responsive for Premium CTA Cards */
@media (max-width: 768px) {
    .cta-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-card-title {
        font-size: 1.5rem;
    }

    .cta-card-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-card .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem !important;
    }
}

/* Enhanced Hero Section Styles */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db83d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

.trust-badge {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.trust-badge h4 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2rem;
    }

    .trust-badge {
        padding: 0.75rem !important;
    }

    .trust-badge h4 {
        font-size: 1.25rem;
    }
}

/* Mobile fixes for trust badges */
@media (max-width: 576px) {
    .trust-badge h5 {
        font-size: 1rem !important;
    }

    .trust-badge small {
        font-size: 0.65rem !important;
    }

    .trust-badge .rounded-circle {
        width: 32px !important;
        height: 32px !important;
        padding: 0.5rem !important;
    }

    .trust-badge .rounded-circle i {
        font-size: 1rem !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .gradient-text {
        font-size: 2rem !important;
    }
}

/* Mobile button alignment fixes */
@media (max-width: 576px) {
    .hero-section .btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .hero-section .d-flex.flex-wrap {
        flex-direction: column !important;
    }
}

/* Premium Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 0.8rem 0;
    /* Increased padding */
    font-size: 1rem;
    /* Base font size increased */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    /* Sticky Top Bar */
    top: 0;
    z-index: 1040;
    /* High z-index */
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    /* Much larger font for phone */
    font-weight: 700;
}

.top-bar-link:hover {
    color: var(--primary-color);
}

.top-bar-link i {
    color: var(--primary-color);
    font-size: 1.25rem;
    /* Larger icon */
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-right: 0.75rem;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #d32f2f;
    /* Red for offer */
    margin-bottom: 1.5rem;
    border: 1px solid #ffcdd2;
    animation: pulse-red 2s infinite;
}

.discount-badge i {
    color: #d32f2f;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    /* Larger social icons */
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.top-bar-social:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0;
    }

    .top-bar-left {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }

    .top-bar-link {
        font-size: 0.8rem;
    }

    .top-bar-link i {
        font-size: 0.85rem;
    }

    .top-bar-right {
        padding: 0.25rem 0;
    }

    .top-bar-social {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Premium Footer */
.premium-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    margin-top: 5rem;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

/* Enhanced Mobile Responsiveness for Top Bar and Footer */
@media (max-width: 768px) {

    /* Top Bar Mobile Fixes */
    .top-bar {
        padding: 0.75rem 0;
    }

    .top-bar-link {
        font-size: 0.95rem;
    }

    .top-bar-social {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    /* Footer Mobile Fixes */
    .footer-brand {
        font-size: 1.75rem;
        text-align: center;
    }

    .footer-desc {
        text-align: center;
        font-size: 1rem;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .footer-title {
        text-align: center;
        font-size: 1.2rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-contact li {
        font-size: 1rem;
        justify-content: center;
        text-align: center;
    }

    .footer-contact i {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 1rem;
    }

    .col-lg-4,
    .col-lg-2,
    .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {

    /* Extra small screens */
    .top-bar {
        padding: 0.4rem 0;
    }

    .top-bar-left {
        font-size: 0.75rem;
    }

    .top-bar-link {
        font-size: 0.75rem;
    }

    .top-bar-link span {
        display: inline;
    }

    .top-bar-text {
        font-size: 0.75rem;
    }

    .top-bar-social {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .footer-contact li {
        /* flex-direction: column; */
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Fix footer contact centering on mobile */
@media (max-width: 768px) {
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
}

/* Smooth Carousel Transition & Scale Effect (Grid Method) */
.carousel-fade .carousel-inner {
    display: grid;
    grid-template-columns: 100%;
}

.carousel-fade .carousel-item {
    grid-area: 1 / 1;
    display: block !important;
    /* Provide stable layout */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: none !important;
    /* Disable BS transforms */
    position: relative !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 2;
}

/* Handle Bootstrap Transition Classes */
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 2;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
    z-index: 1;
}

/* Ken Burns Zoom Effect */
.carousel-inner .carousel-item img {
    transform-origin: center;
    transition: transform 10s ease;
    transform: scale(1.0);
    width: 100%;
    /* Ensure full width */
}

.carousel-inner .carousel-item.active img {
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.05);
        /* Reduced zoom */
    }
}

/* Premium Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0;
    transition: all 0.3s ease;
}

/* Specific positioning for Hero Slider (matches 140% width image) */
#heroImageSlider .carousel-control-prev {
    left: -20%;
}

#heroImageSlider .carousel-control-next {
    right: -20%;
}

/* Specific positioning for About Slider (standard width) */
#aboutImageSlider .carousel-control-prev {
    left: 10px;
}

#aboutImageSlider .carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(92, 230, 92, 0.4);
    border-color: transparent;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
    width: 1.5rem;
    height: 1.5rem;
}

/* Ensure controls are visible on mobile */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 36px;
        margin: 0;
    }
}