/* ===========================
   GLOBAL STYLES & RESET
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff0d0d;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --white: #ffffff;
    --gray: #a0a0a0;
    --light-gray: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--darker-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.red-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 15px 0;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 13, 13, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 13, 13, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0 50px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-premium span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover span {
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0a0a 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 13, 13, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 13, 13, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-indicator span {
    display: block;
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-red), transparent);
    animation: scroll 2s ease-in-out infinite;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 13, 13, 0.5);
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 13, 13, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===========================
   SECTION STYLES
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 20px;
}

.section-header .red-line {
    margin: 15px auto;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background-color: var(--darker-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
}

.owner-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.owner-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: center;
}

.owner-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.owner-section:hover .owner-image img {
    transform: scale(1.05);
}

.owner-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 13, 13, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.owner-badge svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 13, 13, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 13, 13, 0.7);
    }
}

.owner-text {
    padding: 50px;
}

.owner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 800;
    display: inline-block;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3897f0;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-left: 8px;
}

.verified-badge svg {
    width: 100%;
    height: 100%;
}

.owner-title {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.owner-text .highlight {
    color: var(--white);
    font-weight: 600;
    margin-top: 25px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.vision-mission {
    margin-top: 80px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vm-item {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.vm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 13, 13, 0.2);
}

.vm-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.vm-item p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.vm-item ol {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 2;
    padding-left: 20px;
}

.vm-item ol li {
    margin-bottom: 10px;
}

.tagline {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0a0a 100%);
    border-radius: 10px;
}

.tagline p {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}

/* ===========================
   WHY US SECTION
   =========================== */
.why-us {
    background-color: var(--dark-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 13, 13, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    border-radius: 50%;
}

.why-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.why-item p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===========================
   FLEET SECTION
   =========================== */
.fleet {
    background-color: var(--darker-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-item {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 13, 13, 0.3);
}

.fleet-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.fleet-info p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 15px;
}

.fleet-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.facility-tag {
    padding: 5px 12px;
    background: rgba(255, 13, 13, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-red);
}

.facility-badge {
    padding: 5px 12px;
    background: rgba(255, 13, 13, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-red);
}

.fleet-view-all {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
}

.fleet-view-all p {
    font-size: 1rem;
    color: var(--gray);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery {
    background-color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 13, 13, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 1.2rem;
}

.gallery-view-all {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
}

.gallery-view-all p {
    font-size: 1rem;
    color: var(--gray);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background-color: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 13, 13, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    border-radius: 50%;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-item p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-red);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    margin-top: 50px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0a0a 100%);
    border-radius: 15px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-cta .btn {
    background: var(--white);
    color: var(--primary-red);
    font-weight: 700;
}

.contact-cta .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===========================
   MODAL STYLES
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: var(--dark-bg);
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
}

.modal-close:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

/* Fleet Detail - Modern Design */
.fleet-detail-container {
    display: flex;
    flex-direction: column;
}

.fleet-detail-header {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.fleet-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.fleet-badge {
    background: var(--primary-red);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 13, 13, 0.4);
}

.fleet-detail-content {
    padding: 40px;
    background: var(--dark-bg);
}

.fleet-title-section {
    margin-bottom: 40px;
}

.fleet-detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-line-small {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.facilities-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.section-title svg {
    width: 28px;
    height: 28px;
    color: var(--primary-red);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.facility-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.facility-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 13, 13, 0.2);
}

.facility-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-icon svg {
    width: 18px;
    height: 18px;
    color: white;
    stroke-width: 3;
}

.facility-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.no-facilities {
    color: var(--gray);
    text-align: center;
    padding: 30px;
    font-style: italic;
}

.fleet-detail-footer {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px dashed rgba(255, 13, 13, 0.3);
}

.fleet-detail-footer p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.fleet-detail-footer .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.fleet-detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fleet-detail-type {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 5px;
}

.facility-item::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Modal */
.gallery-modal {
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
}

.gallery-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-modal-content img {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.gallery-nav:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--darker-bg);
    padding: 40px 0 20px;
    border-top: 2px solid var(--light-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-style: italic;
    margin: 0;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 3px 0;
    line-height: 1.4;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .owner-content {
        grid-template-columns: 1fr;
    }

    .owner-image {
        min-height: 400px;
    }

    .owner-text {
        padding: 30px;
    }

    .owner-text h3 {
        font-size: 1.8rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .tagline p {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        width: 45px;
        height: 45px;
    }

    .footer-logo p {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info p {
        font-size: 0.85rem;
    }

    .modal-body {
        padding: 0;
    }

    .fleet-detail-header {
        height: 300px;
    }

    .fleet-detail-content {
        padding: 30px 20px;
    }

    .fleet-detail-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facility-card {
        padding: 15px;
    }

    .fleet-detail-footer {
        padding: 25px 20px;
    }

    .fleet-detail-footer .btn {
        width: 100%;
        padding: 12px;
    }

    .fleet-detail-image {
        height: 250px;
    }

    .fleet-detail-info h2 {
        font-size: 1.8rem;
    }

    .facilities-list {
        grid-template-columns: 1fr;
    }

    .gallery-modal-content img {
        max-width: 100%;
        max-height: 60vh;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .owner-section {
        margin: 40px auto;
    }

    .owner-image {
        min-height: 350px;
    }

    .owner-text {
        padding: 25px;
    }

    .owner-text h3 {
        font-size: 1.5rem;
    }

    .owner-title {
        font-size: 0.95rem;
    }

    .owner-badge {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .owner-badge svg {
        width: 30px;
        height: 30px;
    }

    .vm-item {
        padding: 25px;
    }

    .why-item {
        padding: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-cta {
        padding: 30px 20px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}


.owner-text h3 {
    font-size: 1.8rem;
}

.vm-grid {
    grid-template-columns: 1fr;
}

.tagline p {
    font-size: 1.5rem;
}

.why-grid {
    grid-template-columns: 1fr;
}

.fleet-grid {
    grid-template-columns: 1fr;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.gallery-item {
    height: 200px;
}

.contact-grid {
    grid-template-columns: 1fr;
}

.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
}

.footer-logo {
    flex-direction: column;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo p {
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 0.75rem;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.8rem;
}

.modal-body {
    padding: 0;
}

.fleet-detail-header {
    height: 300px;
}

.fleet-detail-content {
    padding: 30px 20px;
}

.fleet-detail-title {
    font-size: 1.8rem;
}

.section-title {
    font-size: 1.3rem;
}

.facilities-grid {
    grid-template-columns: 1fr;
}

.facility-card {
    padding: 15px;
}

.fleet-detail-footer {
    padding: 25px 20px;
}

.fleet-detail-footer .btn {
    width: 100%;
    padding: 12px;
}

.fleet-detail-image {
    height: 250px;
}

.fleet-detail-info h2 {
    font-size: 1.8rem;
}

.facilities-list {
    grid-template-columns: 1fr;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 60vh;
}

.modal-close {
    top: 20px;
    right: 20px;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-nav {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .owner-section {
        margin: 40px auto;
    }

    .owner-image {
        min-height: 350px;
    }

    .owner-text {
        padding: 25px;
    }

    .owner-text h3 {
        font-size: 1.5rem;
    }

    .owner-title {
        font-size: 0.95rem;
    }

    .owner-badge {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .owner-badge svg {
        width: 30px;
        height: 30px;
    }

    .vm-item {
        padding: 25px;
    }

    .why-item {
        padding: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-cta {
        padding: 30px 20px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0a0a;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}