:root {
    --color-primary: #970f11;
    --color-black: #000000;
    --color-grey: #716e6f;
    --color-white: #ffffff;

    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-text-main: #000000;
    --color-text-light: #e0e0e0;

    --header-height: 80px;
    --container-width: 1200px;

    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-white);
    direction: rtl;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.top-bar {
    background-color: var(--color-black);
    color: var(--color-text-light);
    font-size: 0.9rem;
    padding: 10px 0;
    position: relative;
    z-index: 101;
    border-bottom: 3px solid var(--color-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--color-primary);
}

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
}

.sidebar-logo {
    height: 55px;
    width: auto;
    background: var(--color-white);
    padding: 5px;
    border-radius: 8px;
}

.desktop-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    border: 2px solid var(--color-primary);
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(151, 15, 17, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: none;
    transform: translateY(2px);
}

.sidebar-trigger {
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.sidebar-trigger:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-trigger span {
    width: 30px;
    height: 3px;
    background: var(--color-black);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.sidebar-trigger:hover span:nth-child(1) {
    width: 18px;
    transform: translateX(6px);
}

.sidebar-trigger:hover span:nth-child(3) {
    width: 18px;
    transform: translateX(-6px);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background: var(--color-black);
    z-index: 3000;
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    background: var(--color-white);
    padding: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 0 40px;
    /* Creative corner */
}

.btn-close-sidebar {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-close-sidebar:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--color-primary) !important;
}

.sidebar-menu {
    list-style: none;
    padding: 40px 20px;
    text-align: right;
    margin-top: 20px;
}

.sidebar-menu li {
    margin: 10px 0;
}

.sidebar-menu a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 15px 25px;
    border-radius: 20px;
    transition: 0.4s;
    transform: translateX(30px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.sidebar.active .sidebar-menu a {
    transform: translateX(0);
    opacity: 1;
}

.sidebar-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--color-primary);
    transition: 0.4s ease;
    z-index: -1;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    color: var(--color-white);
    padding-right: 35px;
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before {
    width: 100%;
}

.sidebar-footer {
    padding: 0 20px 40px;
}

.sidebar-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.sidebar-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-social a:hover {
    color: var(--color-primary);
    background: rgba(151, 15, 17, 0.2);
    transform: translateY(-5px);
}

.social-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-circle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    color: white;
}

.sidebar-pattern {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(151, 15, 17, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hero {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 90vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(151, 15, 17, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(113, 110, 111, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: right;
    position: relative;
}

.badge-new {
    background: rgba(151, 15, 17, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title span {
    color: var(--color-primary);
    -webkit-text-stroke: 0;
    display: block;
}

.hero-desc {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero .btn-outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero .btn-outline:hover {
    border-color: var(--color-black);
    background: rgba(0, 0, 0, 0.05);
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.hero-car-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero:hover .hero-car-img {
    transform: scale(1.15) translateY(-5px);
}




.car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(151, 15, 17, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 1;
}

.features-bar {
    margin-top: 0;
    background: var(--color-black);
    padding: 50px 0;
    z-index: 20;
    border-bottom: 5px solid var(--color-primary);
    width: 100%;
    position: relative;
    border-radius: 0;
    max-width: 100%;
}

.features-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--color-grey);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.feature-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: rotateY(360deg);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

/* --- Why Choose Us --- */
.why-us-section {
    padding: 100px 20px;
    background-color: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-title {
    color: var(--color-white);
    text-align: right;
    margin-bottom: 20px;
}

.why-us-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(151, 15, 17, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.trust-text p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--color-primary);
    filter: grayscale(20%);
    transition: 0.5s;
}

.why-us-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}


.testimonials-section {
    padding: 100px 20px 0px;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonials-swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: right;
    position: relative;
    border-top: 4px solid var(--color-primary);
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.testimonial-card i.quote-icon {
    font-size: 2rem;
    color: #eee;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    text-align: right;
    display: block;
    transition: var(--transition-fast);
}

.read-more-btn:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Modal */
.review-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 20px;
}

.modal-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--color-primary);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.modal-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: right;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.client-details h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--color-primary);
}

.rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background-color: var(--color-black);
    color: #aeaeae;
    padding: 80px 20px 30px;
    border-top: 5px solid var(--color-primary);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

.footer-about p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-about .footer-description {
    font-size: 1.15rem;
    line-height: 2;
    color: #c0c0c0;
    text-align: justify;
}

.footer-about .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-about .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #aeaeae;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(151, 15, 17, 0.4);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aeaeae;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-right: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact ul li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #aeaeae;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
}

.footer-contact ul li a:hover i {
    color: var(--color-primary);
}

.footer-contact .phone-number {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.map-embed {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}


.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    padding-bottom: 25px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title::before {
    content: 'SAMSAM';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.5rem;
    opacity: 0.05;
    white-space: nowrap;
    z-index: -1;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 10px;
    font-weight: 900;
    color: var(--color-black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Fleet */
.fleet-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 60px;
    flex-wrap: wrap;
    max-width: 600px;
}

.filter-btn {
    background: #fff;
    border: 2px solid #eee;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #555;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.fleet-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.fleet-cta .btn-primary {
    padding: 16px 45px;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(151, 15, 17, 0.2);
}

.car-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(151, 15, 17, 0.2);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.car-badge.featured {
    background: linear-gradient(45deg, #ff8a00, #da1b60);
}

.car-badge.new {
    background: linear-gradient(45deg, #00b09b, #96c93d);
}

.car-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    transition: all 0.4s ease;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

.car-card:hover .car-image-container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
}



.car-buttons {
    padding: 0 25px 25px;
    margin: auto 0 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.car-card:hover .car-buttons {
    transform: translateY(-5px);
}

.car-action-btn {
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

.car-action-btn.view-details {
    background: transparent;
    color: white;
}

.car-action-btn.view-details:hover {
    background: white;
    color: var(--color-primary);
}

.car-action-btn.book-now {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(151, 15, 17, 0.4);
}

.car-action-btn.book-now:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(151, 15, 17, 0.6);
}

.car-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.car-title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

.car-model {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-black);
    margin: 0;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    background: rgba(151, 15, 17, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.spec:hover {
    background: rgba(151, 15, 17, 0.15);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.price small {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(151, 15, 17, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
    z-index: 0;
}

.fleet-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(113, 110, 111, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
    z-index: 0;
}

@media (max-width: 900px) {
    .why-us-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-content .section-title {
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

.header-logo {
    height: 120px;
}

@media (max-width: 991px) {

    .desktop-nav,
    .btn-primary.desktop-only {
        display: none;
    }

    .sidebar-trigger {
        display: flex;
    }

    .nav-container {
        padding: 0 15px;
    }

    .header-logo {
        height: 80px !important;
    }
}

@media (max-width: 900px) {
    .main-header {
        height: 70px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .header-logo {
        height: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        order: 2;
        transform: none;
        animation: fadeInUp 0.8s ease 0.4s forwards;
    }

    .hero-car-img {
        width: 100%;
        max-width: 450px;
        height: auto;
        transform: rotate(0) scale(1);
        margin-bottom: 30px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .features-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 20px;
    }

    .feature-item {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    animation: pulse-btn 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
    animation-delay: 0.5s;
}

.call-btn {
    background: var(--color-primary, #970f11);
    animation-delay: 0s;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn {
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(151, 15, 17, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(151, 15, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(151, 15, 17, 0);
    }
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: none;
}

.btn-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .btn-tooltip {
        display: none;
    }
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(151, 15, 17, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(113, 110, 111, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(151, 15, 17, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(151, 15, 17, 0.1) 0%, transparent 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    flex-grow: 1;
    padding-left: 15px;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #28a745;
}

.faq-item.active .faq-toggle i {
    transform: rotate(-45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #c82333 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 30px rgba(151, 15, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    z-index: 0;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-cta .btn-primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.faq-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 0;
        padding-top: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .main-header {
        height: 60px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .header-logo {
        height: 100px !important;
    }

    .sidebar-trigger {
        width: 40px;
        height: 40px;
    }

    .sidebar-trigger span {
        width: 25px;
        height: 2px;
    }

    .container {
        padding: 0 10px;
    }
}

.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(151, 15, 17, 0.08) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(151, 15, 17, 0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.user-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.user-badge:hover::before {
    left: 100%;
}

.user-badge:hover,
.user-badge.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(151, 15, 17, 0.3);
    transform: translateY(-2px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.user-badge:hover .user-avatar,
.user-badge.active .user-avatar {
    background: white;
    color: var(--color-primary);
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.creative-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 6px;
}

.creative-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-user-info {
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c82333 100%);
    border-radius: 10px;
    color: white;
    margin-bottom: 6px;
}

.dropdown-user-info span {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
}

.dropdown-user-info small {
    display: block;
    opacity: 0.8;
    font-size: 0.75rem;
    word-break: break-all;
}

.creative-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.creative-item:hover {
    background: rgba(151, 15, 17, 0.08);
    color: var(--color-primary);
    transform: translateX(-5px);
}

.creative-item i {
    font-size: 1.1rem;
    color: var(--color-primary);
    transition: 0.3s;
}

.creative-item:hover i {
    transform: scale(1.2);
}

.creative-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 8px 10px;
}

.logout-creative {
    color: #e74c3c;
}

.logout-creative:hover {
    background: #fff5f5;
    color: #c0392b;
}

.logout-creative i {
    color: #e74c3c;
}

@media (max-width: 992px) {

    .user-name,
    .user-badge i:last-child {
        display: none;
    }

    .user-badge {
        padding: 5px;
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .creative-dropdown {
        left: -10px;
        width: 240px;
    }
}