
/* --- CORAL CLEAN DESIGN SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0a0a0a;      
    --secondary: #141414;    
    --accent: #e63946;       
    --accent-hover: #c1121f; 
    --text-main: #f8f9fa;    
    --text-muted: #adb5bd;   
    --surface: #1c1c1c;
    --border: #333333;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* --- REUSABLE UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #ffffff;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background-color: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.logo-text span {
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul a {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul a:hover, nav ul a.active {
    color: #fff;
}

nav ul a:hover::after, nav ul a.active::after {
    width: 100%;
}

nav ul a.btn::after {
    display: none;
}

nav ul a.btn {
    background: linear-gradient(135deg, var(--accent) 0%, #f03038 100%);
    border-radius: 50px;
    padding: 12px 28px !important;
    font-weight: 700;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(209, 18, 42, 0.4);
    transition: all 0.3s ease;
}

nav ul a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 18, 42, 0.6);
}

/* --- HERO SECTION --- */
/* old hero removed */

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title span {
    color: #fff;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 auto 40px auto;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Booking Panel Overlay Simulation */
/* old booking removed */
.old-book {
    border-radius: 8px;
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-field label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.booking-field input {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    color: var(--text-main);
    font-family: 'Poppins';
}

/* --- FLEET / SHOWCASE AREA --- */






/* .showcase-area old removed */ .old-showcase {
    background: var(--surface);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 968px) {
    /* .showcase-area old removed */ .old-showcase {
        flex-direction: column;
    }
}

.showcase-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    position: sticky;
    top: 40px;
}

/* .gallery-main old removed */ .old-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--secondary);
}

/* .gallery-main img old removed */ .old-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    color: var(--text-main);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-nav:hover {
    background: var(--accent);
    color: #ffffff;
}

.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }

.gallery-thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}
.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}

/* .gallery-thumbnails img old removed */ .old-thumbnails-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumbnails img.active, .gallery-thumbnails img:hover {
    opacity: 1;
    border-color: var(--accent);
}

/* .showcase-details old removed */ .old-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

/* .showcase-specs old removed */ .old-specs {
    margin-bottom: 30px;
}

.showcase-specs p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CATALOG GRID */
/* old catalog-grid removed */


/* 3D SWIPER CAROUSEL (ABANICO EFFECT) */
.swiper {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 400px;
    border-radius: 24px;
}

.swiper-slide .catalog-card {
    width: 100%;
    height: 100%;
    flex: none; /* remove flex basis from old logic */
}


/* Refined Swiper Controls */
.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    width: 60px;
    height: 60px;
    border-radius: 4px;
    box-shadow: none;
    transition: all 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.05);
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 0;
    background: rgba(255,255,255,0.2);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 50px;
}
/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background: var(--surface);
}



.contact-info-panel {
    padding: 60px;
    background: var(--accent);
    color: #fff;
}
.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.info-list {
    list-style: none;
    margin: 30px 0;
}

.info-list li {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-list li i {
    color: #fff;
}

.form-panel {
    background: var(--surface);
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

input, select, textarea {
    width: 100%;
    background-color: #242424;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 15px;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* --- FOOTER --- */
.site-footer {
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 2px solid #222;
}

.footer-contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-40px);
    position: relative;
    z-index: 10;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 10px 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 77, 79, 0.1);
    border: 1px solid rgba(255, 77, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.contact-item:hover .icon-circle {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 77, 79, 0.4);
}

.contact-info strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-divider {
    width: 1px;
    height: 60px;
    background: #2a2a2a;
}

.footer-main {
    padding: 60px 0 40px 0;
    position: relative;
}

.footer-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(255, 77, 79, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.brand-col h3 {
    font-size: 1.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.brand-col h3 span {
    color: #fff;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-col ul a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-col ul a i {
    font-size: 0.8rem;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.3);
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 0.9rem;
}

.footer-newsletter button {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background: #f03038;
}



.footer-bottom {
    background: #050505;
    padding: 20px 0;
    text-align: left;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-contact-banner {
        flex-direction: column;
        margin: 0 20px;
        transform: translateY(-20px);
    }
    .contact-divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONS & EFFECTS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade {
    animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-scale {
    animation: scaleIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.showcase-area {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.showcase-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ff9a9e);
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.gallery-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-thumbnails img.active, .gallery-thumbnails img:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.2);
}

.showcase-details {
    flex: 1;
    padding: 20px;
}

.showcase-specs {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--accent);
    padding: 20px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 30px;
}

/* --- 3D DEPTH & DYNAMISM --- */
body {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
}

.hero {
    position: relative;
    padding: 220px 0 160px 0;
    background: url('hero_tanker.png') center/cover no-repeat fixed;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.booking-panel {
    width: 90%;
    max-width: 1000px;
    margin: -80px auto 0 auto;
    background: rgba(28, 28, 28, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    border-radius: 4px;
    
    padding: 40px;
    border-radius: 16px;
}

.booking-field input {
    background: transparent;
    border-bottom: 2px solid var(--border);
    transition: all 0.3s;
    color: var(--text-main);
}

.booking-field input:focus {
    border-bottom: 2px solid var(--accent);
    transform: translateY(0);
    background: rgba(255,255,255,0.02);
}

.btn-primary {
    background: var(--accent);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    border-radius: 0px;
    padding: 16px 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    transform: translateY(0) scale(1);
    background-color: var(--accent-hover);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
}

.catalog-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.catalog-card-info {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: left;
    background: transparent !important;
}

.catalog-card-info h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.catalog-card-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catalog-card-info .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.catalog-card-info .price span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,77,79,0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.catalog-card:hover {
    transform: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.catalog-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.catalog-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.catalog-card:hover .catalog-card-img {
    transform: none;
}

.catalog-btn {
    background: var(--accent);
    color: #ffffff !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 2px;
    padding: 12px 28px;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

.catalog-card:hover .catalog-btn {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}

.contact-section {
    background: var(--secondary);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px; left: 0; width: 100%; height: 100px;
    background: var(--secondary);
    transform: skewY(-2deg);
    z-index: 0;
}

.contact-box {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: var(--surface);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .booking-field {
        flex: 1 1 100%;
    }
    .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
    .fleet-modal .showcase-area {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.catalog-card:hover::after {
    height: 80%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
}

/* --- NEW STRUCTURAL ARCHITECTURE --- */

/* Hero Split Design */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--accent);
    border: 1px solid rgba(230, 57, 70, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.8;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent);
    padding: 25px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    animation: fadeSlideLeft 0.8s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }

.stat-card:hover {
    transform: translateX(-10px);
    background: rgba(30, 30, 30, 0.9);
}

.stat-card h3 {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Banner */
.trust-banner {
    background: var(--accent);
    padding: 15px 0;
    text-align: center;
}

.trust-banner p {
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin: 0;
}

/* Features Grid */
.features-section {
    padding: 100px 0 50px 0;
    background: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--secondary);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Fleet Modal */
.fleet-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Red Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 77, 79, 0.4);
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 77, 79, 0.8);
}

.fleet-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    color: #fff;
    width: 40px; height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.modal-badge {
    align-self: flex-start;
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-radius: 2px;
    text-transform: uppercase;
}

/* Adjust showcase area inside modal */
.fleet-modal .showcase-area {
    margin: 0;
    padding: 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.rent-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 12px 24px;
    margin-top: 15px;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 77, 79, 0.4);
}

.fleet-modal .showcase-details {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

#showcase-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

#showcase-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Specs Tables */
.showcase-tables-wrapper {
    padding: 20px 0 20px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.spec-category {
    margin-top: 0;
}

.spec-category h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.spec-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    border-bottom: none;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

.spec-key {
    flex: 0 0 130px;
    padding: 8px 12px;
    color: var(--text-muted);
    font-weight: 600;
    background: transparent;
    border-right: none;
    font-size: 0.9rem;
}

.spec-val {
    flex: 1;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-split { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .fleet-modal .showcase-area { padding: 20px; gap: 30px; }
    .showcase-gallery { position: relative; top: auto; align-self: stretch; }
    .showcase-tables-wrapper { padding: 0 0 40px 0; }
    .gallery-main { height: 300px; }
    .fleet-modal .showcase-details { padding: 0; text-align: left; }
    .spec-row { flex-direction: column; }
    .spec-key { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 15px; }
    .spec-val { padding: 10px 15px; }
}

/* --- FLEET SECTION --- */
.fleet-section {
    padding: 50px 0 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}



.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header p {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}
