/* --- CSS Variables --- */
:root {
    --primary-color: #1c355e; /* New dark blue from user */
    --primary-light: #26467a;
    --accent-color: #f7b731; /* Yellow/Gold */
    --accent-hover: #e5a420;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-white:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    transition: var(--transition);
}

.header.sticky .header-inner {
    height: 80px;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.header.sticky .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(11, 26, 48, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.support-text {
    font-size: 12px;
    color: var(--text-light);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 80vh;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.1) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.icon-circle svg, .icon-circle i {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.hero-car {
    position: absolute;
    right: -50px;
    bottom: 50px;
    width: 65%;
    z-index: 1;
}

.hero-car img {
    width: 100%;
}

.trust-badge {
    position: absolute;
    right: 80px;
    top: 150px;
    width: 160px;
    height: 160px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 25px rgba(11, 26, 48, 0.4);
    z-index: 2;
    border: 2px dashed rgba(255,255,255,0.3);
    padding: 10px;
    animation: float 4s ease-in-out infinite;
}

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

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-content .fa-star, .badge-content svg {
    color: var(--accent-color);
    fill: var(--accent-color);
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.badge-content .estd {
    font-size: 16px;
    font-weight: 700;
}

.badge-content .years {
    font-size: 12px;
    line-height: 1.3;
}

.badge-content .stars {
    display: flex;
    gap: 5px;
}

/* --- Booking Section --- */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.booking-form-wrapper {
    background-color: var(--primary-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    background-color: var(--primary-light);
    padding: 20px 40px;
}

.booking-header h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.booking-form {
    padding: 30px 40px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    z-index: 2;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
    appearance: none; /* For select */
}

/* Custom dropdown arrow for select */
.input-with-icon select {
    background: url("data:image/svg+xml;utf8,<svg fill='%23636e72' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 10px center;
    background-size: 20px;
    cursor: pointer;
}

.submit-btn-wrapper {
    flex: 0 0 auto;
}

.submit-btn-wrapper .btn {
    padding: 14px 30px;
    width: 100%;
    height: 48px;
    border-radius: 6px;
}

.booking-benefits {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: var(--primary-color);
}

.benefit {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit i, .benefit svg {
    color: var(--white);
    fill: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 3px;
    font-size: 10px;
    width: 18px;
    height: 18px;
}

/* --- Section Heading --- */
.section-heading {
    margin-bottom: 40px;
}

.section-heading .sub-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.section-heading .sub-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-heading .sub-title-inline::after {
    left: auto;
    right: -50px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
}

/* --- Why Choose Us --- */
.why-choose-us {
    padding: 100px 0;
}

.wcu-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.wcu-image {
    flex: 0 0 38%;
    position: relative;
    z-index: 1;
    padding-bottom: 25px;
    padding-right: 25px;
}

.wcu-image::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 0;
    left: 20%;
    border-radius: 0 150px 150px 0;
    border: 2px solid var(--accent-color);
    z-index: 0;
}

.wcu-image-inner {
    border-radius: 10px 150px 150px 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.wcu-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-pattern {
    position: absolute;
    background-size: 15px 15px;
    z-index: 3;
    opacity: 0.8;
}

.pattern-top {
    top: 20px;
    right: 30px;
    width: 100px;
    height: 60px;
    background-image: radial-gradient(rgba(255,255,255,0.8) 2px, transparent 2px);
}

.pattern-bottom {
    bottom: 40px;
    left: 20px;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
}

.wcu-content {
    flex: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    padding: 20px 15px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card .icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card .icon i,
.feature-card .icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.feature-card:hover .icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 12px;
    line-height: 1.4;
}

/* --- Our Fleet --- */
.our-fleet {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.fleet-header .section-heading {
    margin-bottom: 0;
}

.fleet-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    align-items: center;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 6px;
    background-color: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

.fleet-slider-container {
    position: relative;
    padding: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}

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

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    overflow: hidden;
}

.car-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.car-img {
    height: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.car-img img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.car-details {
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.car-details h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.car-specs span {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.car-price-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price .amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.price .duration {
    font-size: 14px;
    color: var(--text-light);
}

.car-price-row .btn {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

/* --- Promo Banner --- */
.promo-banner {
    padding: 60px 0;
}

.promo-wrapper {
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    padding-right: 45%;
}

.promo-wrapper::before {
    content: '';
    position: absolute;
    right: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

.promo-content {
    flex: 1;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.promo-action {
    padding: 0 40px 0 0;
    position: relative;
    z-index: 2;
}

.promo-image {
    width: 48%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

/* Removed promo-image overlay */

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* --- Statistics --- */
.statistics {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(11, 26, 48, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.stat-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    margin: 0;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-logo img {
    height: 80px;
}

.brand-col p {
    margin: 20px 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-col ul li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #081324;
    padding: 20px 0;
    font-size: 14px;
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-inner .fa-heart {
    color: #e74c3c;
}

/* --- Trendy Fleet Page Styles (Glassmorphism & Dark Mode) --- */
.trendy-fleet-page {
    background-color: #0b1120;
    color: #e2e8f0;
    min-height: 100vh;
}

.fleet-trendy-hero {
    position: relative;
    padding: 200px 0 100px;
    background: radial-gradient(circle at 50% -20%, #1e3a8a 0%, #0b1120 70%);
    overflow: hidden;
}

.fleet-trendy-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.fleet-trendy-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fleet-trendy-title span {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.fleet-trendy-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.fleet-trendy-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
}

.fleet-trendy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.2);
}

.glass-card:hover::before {
    left: 200%;
}

.glass-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.glass-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-card:hover .glass-card-image img {
    transform: scale(1.08);
}

.glass-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.glass-price-badge span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 2px;
}

.glass-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.glass-card-content h3 {
    font-size: 22px;
    color: #f8fafc;
    margin-bottom: 20px;
    font-weight: 700;
}

.glass-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.g-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.g-feature i {
    font-size: 18px;
    color: #818cf8;
}

.g-feature span {
    font-size: 13px;
    font-weight: 500;
}

.glass-card-footer {
    display: flex;
    gap: 15px;
}

.btn-glass-outline {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-glass-primary {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-glass-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
    color: #ffffff;
}

@media (max-width: 768px) {
    .fleet-trendy-title {
        font-size: 40px;
    }
    .fleet-trendy-hero {
        padding: 150px 0 80px;
    }
}
