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

:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4D03F;
    --primary-gold-dark: #B8941F;
    --dark-bg: rgba(0, 0, 0, 0.9);
    --dark-bg-glass: rgba(15, 15, 15, 0.7);
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-gray: #CCCCCC;
    --section-bg: #0f0f0f;
    --card-bg: rgba(30, 30, 30, 0.6);
    --card-bg-hover: rgba(40, 40, 40, 0.8);
    --hover-gold: #F4D03F;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-white);
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    transition: width 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.arrow {
    font-size: 10px;
    margin-left: 3px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding-left: 25px;
}

.language-selector {
    display: flex;
    align-items: center;
    position: relative;
}

.language-selector .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.language-selector .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
}

.language-selector .lang-name {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-white);
}

.flag {
    font-size: 18px;
    display: inline-block;
    line-height: 1;
}

.language-menu {
    right: 0;
    left: auto;
    min-width: 160px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 2px 0;
    transition: all 0.2s ease;
    color: var(--text-light);
    font-size: 13px;
}

.language-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.language-menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    font-weight: 500;
}

.language-menu a.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--primary-gold);
    font-size: 12px;
}

.language-menu .flag {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.language-menu .lang-text {
    font-size: 13px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: optimize-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Mobile image optimization */
@media (max-width: 768px) {
    .hero-bg-image {
        background-attachment: scroll !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-style: italic;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.slider-indicators {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    width: 10px;
    height: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    font-family: 'Roboto', sans-serif;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-section {
    z-index: 1 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* About Section */
.about-section {
    background: #0f0f0f;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(40, 40, 40, 0.9);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-gold-light);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 15px;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.service-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* Fleet Section */
.fleet-section {
    background: #0f0f0f;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.fleet-card-single {
    max-width: 100%;
    margin: 0;
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
}

.fleet-card-single .fleet-image-gallery {
    flex: 0.6;
    min-width: 0;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.fleet-card-single .fleet-content {
    flex: 1;
    min-width: 0;
    padding: 30px 40px;
    background: rgba(15, 15, 15, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.fleet-section .container {
    max-width: 100%;
    padding: 0;
}

.fleet-section .section-header {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(40, 40, 40, 0.9);
}

.fleet-image {
    height: 250px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: optimize-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

/* Fleet Image Gallery */
.fleet-image-gallery {
    position: relative;
}

.fleet-main-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.fleet-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: optimize-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.fleet-thumbnails {
    display: flex;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(0, 0, 0, 0.3);
    border-radius: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.fleet-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.fleet-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.fleet-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.fleet-thumb {
    min-width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.8;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(0.95) contrast(1.15) saturate(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.fleet-thumb:hover {
    opacity: 1;
    border-color: var(--primary-gold);
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.fleet-thumb.active {
    opacity: 1;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    filter: brightness(1.15) contrast(1.3);
}

.fleet-placeholder {
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-gold);
    padding: 25px 25px 15px;
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.fleet-card-single .fleet-card {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
}

.fleet-card-single .fleet-content h3 {
    padding: 0 0 20px 0;
    margin: 0 0 15px 0;
    font-size: 28px;
}

.fleet-card-single .fleet-content p {
    padding: 0 0 25px 0;
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.8;
}

.fleet-card-single .fleet-content .fleet-features {
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    overflow-x: hidden;
}

.fleet-card-single .fleet-content .fleet-reviews {
    padding: 0;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 25px;
}

.fleet-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-gray);
    padding: 0 25px 20px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.fleet-features li {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    line-height: 1.6;
}

.fleet-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-gold);
    font-weight: bold;
    width: 20px;
    text-align: left;
    font-size: 16px;
}

/* Fleet Reviews */
.fleet-reviews {
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.reviews-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 14px;
}

.reviews-count {
    color: var(--text-gray);
    font-size: 13px;
}

.reviews-list {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.review-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-gold);
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 13px;
}

.review-rating {
    color: var(--primary-gold);
    font-size: 12px;
}

.review-text {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

.review-date {
    color: var(--text-gray);
    font-size: 11px;
    margin-top: 5px;
}

.btn-review {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-review::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-review:hover::before {
    width: 300px;
    height: 300px;
}

.btn-review:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-review:active {
    transform: translateY(-1px);
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto !important;
}

.review-modal.active {
    display: flex !important;
    opacity: 1 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%) !important;
    margin: auto;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative !important;
    z-index: 100000 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.review-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.review-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.review-modal-close:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.review-modal-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.review-modal-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.review-modal-content .form-group {
    margin-bottom: 25px;
}

.review-modal-content .form-group input,
.review-modal-content .form-group textarea {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.review-modal-content .form-group input:focus,
.review-modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.review-modal-content .form-group input::placeholder,
.review-modal-content .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.review-modal-content .btn-primary {
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.review-modal-content .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

/* Captcha Styles */
.captcha-group {
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.captcha-question {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-gold);
    min-width: 80px;
}

.captcha-container input {
    flex: 1;
    max-width: 100px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.captcha-container input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.captcha-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rating span:first-child {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.star {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0);
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
}

.star:hover {
    color: var(--primary-gold);
    transform: scale(1.3) rotate(10deg);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.star.active {
    color: var(--primary-gold);
    transform: scale(1.2);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.star.filled,
.star.active.filled {
    color: var(--primary-gold) !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.star:not(.filled) {
    color: rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact-section {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-item h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.contact-item p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}

.contact-form {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.btn-primary {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-gold);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-photo-item {
    flex: 0 0 auto;
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-photo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-photo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-photo-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.footer-section p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.voles-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.voles-link:hover {
    color: var(--primary-gold-light);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.voles-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.voles-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .language-selector .lang-name {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .logo {
        font-size: 18px;
    }
    
    .language-selector .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-selector .lang-name {
        display: none;
    }
    
    .language-selector .lang-code {
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-bg-image {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-overlay {
        padding: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    /* Fleet Section */
    .fleet-card-single {
        flex-direction: column;
        margin: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .fleet-card-single .fleet-image-gallery {
        flex: 1;
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }
    
    .fleet-card-single .fleet-main-image {
        height: 300px;
        padding: 10px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .fleet-card-single .fleet-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }
    
    .fleet-card-single .fleet-thumbnails {
        padding: 10px;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fleet-card-single .fleet-thumb {
        min-width: 70px;
        height: 55px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .fleet-card-single .fleet-content {
        flex: 1;
        padding: 25px 20px;
        max-height: none;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fleet-card-single .fleet-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .fleet-card-single .fleet-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .fleet-features {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .fleet-features li {
        padding: 10px 0 10px 30px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }
    
    .fleet-features li:before {
        left: 0;
        top: 10px;
    }
    
    .reviews-header {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .reviews-list {
        max-height: 200px;
        margin-bottom: 15px;
    }
    
    .review-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .review-item-header {
        margin-bottom: 8px;
    }
    
    .review-item-name {
        font-size: 14px;
    }
    
    .review-item-text {
        font-size: 13px;
    }
    
    .btn-review {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 18px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .contact-info-item h4 {
        font-size: 16px;
    }
    
    .contact-info-item p {
        font-size: 14px;
    }
    
    /* Review Modal */
    .review-modal {
        padding: 20px 15px;
    }
    
    .review-modal-content {
        padding: 25px 20px;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 15px;
    }
    
    .review-modal-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .review-modal-content .form-group {
        margin-bottom: 18px;
    }
    
    .review-modal-content .form-group input,
    .review-modal-content .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .rating {
        margin-bottom: 15px;
    }
    
    .rating-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .stars {
        gap: 8px;
    }
    
    .star {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .captcha-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .captcha-question {
        font-size: 16px;
    }
    
    .captcha-input {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    .review-modal-content .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-photos {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .footer-photo-item {
        max-width: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
        width: auto;
        min-width: auto;
    }

    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    /* RTL adjustments for mobile */
    [dir="rtl"] .fleet-card-single {
        flex-direction: column;
    }
    
    [dir="rtl"] .fleet-card-single .fleet-content h3,
    [dir="rtl"] .fleet-card-single .fleet-content p,
    [dir="rtl"] .fleet-features {
        text-align: center;
    }
    
    [dir="rtl"] .fleet-thumbnails {
        flex-direction: row;
    }
    
    [dir="rtl"] .captcha-container {
        align-items: flex-end;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-bg-image {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }
    
    .hero-overlay {
        padding: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .fleet-card-single {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .fleet-card-single .fleet-main-image {
        height: 250px;
        padding: 8px;
    }
    
    .fleet-card-single .fleet-main-image img {
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }
    
    .fleet-card-single .fleet-thumb {
        min-width: 60px;
        height: 50px;
    }
    
    .fleet-card-single .fleet-content {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fleet-card-single .fleet-content h3 {
        font-size: 20px;
        width: 100%;
    }
    
    .fleet-features {
        width: 100%;
        padding: 0;
        margin: 0 0 15px 0;
    }
    
    .fleet-features li {
        padding: 8px 0 8px 25px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px 15px;
    }
    
    .review-modal-content {
        padding: 20px 15px;
        max-width: 98%;
    }
    
    .review-modal-content h3 {
        font-size: 20px;
    }
    
    .star {
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
    }
    
    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-photo-item {
        max-width: 120px;
    }
    
    .footer-photo-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-width: 100%;
    }
    
    /* General image fixes for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .service-icon {
        max-width: 100%;
        height: auto;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .fleet-card-single {
    flex-direction: row-reverse;
}

[dir="rtl"] .fleet-card-single .fleet-image-gallery {
    order: 2;
}

[dir="rtl"] .fleet-card-single .fleet-content {
    order: 1;
}

[dir="rtl"] .fleet-thumbnails {
    flex-direction: row-reverse;
}

[dir="rtl"] .fleet-features {
    text-align: right;
}

[dir="rtl"] .fleet-card-single .fleet-content h3,
[dir="rtl"] .fleet-card-single .fleet-content p {
    text-align: right;
}

[dir="rtl"] .reviews-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .review-item-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .review-modal-content {
    text-align: right;
}

[dir="rtl"] .review-modal-content h3 {
    text-align: center;
}

[dir="rtl"] .rating {
    text-align: right;
}

[dir="rtl"] .stars {
    flex-direction: row-reverse;
}

[dir="rtl"] .captcha-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .language-menu {
    left: auto;
    right: 0;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-light);
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: #000;
}

