/* --- MASTER SETTINGS --- */
:root {
    --navy-deep: #020617;   
    --navy-brand: #0f172a;  
    --navy-accent: #1e293b; 
    --red-brand: #dc2626;   
    --white: #ffffff;
    --gray-light: #f8fafc;
    --text-body: #475569;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-light);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy-brand); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- TOP BAR (YENİ TASARIM) --- */
.top-bar {
    background: var(--navy-brand);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 5%;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--red-brand);
    z-index: 1001;
    position: relative;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red-brand), transparent);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info { 
    display: flex; 
    gap: 25px; 
    align-items: center;
}

.contact-info span { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 12px;
}

.contact-info span:hover {
    color: white;
}

.contact-info i { 
    color: var(--red-brand); 
    font-size: 11px;
    width: 14px;
    text-align: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dil Seçici */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--red-brand);
    color: white;
}

.language-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: var(--navy-brand);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    right: 0;
    left: auto;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.language-option.active {
    background: rgba(220, 38, 38, 0.2);
    color: white;
    font-weight: 600;
}

.social-icons { 
    display: flex; 
    gap: 6px; 
}

.social-icons a { 
    width: 28px; 
    height: 28px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 11px;
    color: white;
}

.social-icons a:hover { 
    background: var(--red-brand); 
    color: white; 
    transform: translateY(-2px);
    border-color: var(--red-brand);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.social-icons a.whatsapp-link {
    padding: 0;
    overflow: hidden;
}

.social-icons a.whatsapp-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-icons a.whatsapp-link:hover img {
    transform: scale(1.1);
}

.social-icons a.whatsapp-link:hover {
    background: white;
    border-color: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* --- HEADER & NAV --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 90px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 100%;
}

.logo img { 
    height: 42px; 
    width: auto; 
    transition: all 0.3s ease;
}

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

/* Desktop Nav */
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links > li { position: relative; padding: 25px 0; }

.nav-links > li > a {
    color: var(--navy-brand); font-weight: 600; font-size: 14px;
    text-transform: uppercase; position: relative;
}
.nav-links > li > a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--red-brand); transition: var(--transition);
}
.nav-links > li:hover > a::after { width: 100%; }
.nav-links > li:hover > a { color: var(--red-brand); }

/* Dropdown */
.dropdown {
    position: absolute; top: 100%; left: 0; width: 220px;
    background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--red-brand);
    opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: var(--transition); z-index: 999;
}
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 12px 20px; font-size: 13px; border-bottom: 1px solid #f1f5f9; }
.dropdown li a:hover { background: #f8fafc; color: var(--red-brand); padding-left: 25px; }

.quote-btn {
    background: var(--red-brand); color: white; padding: 12px 30px;
    font-weight: 700; font-size: 14px; text-transform: uppercase;
    border-radius: 2px;
}
.quote-btn:hover { background: var(--navy-brand); color: white; }

/* Mobile Hamburger */
.hamburger { display: none; font-size: 24px; color: var(--navy-brand); cursor: pointer; }

/* --- SWIPER SLIDER (HERO) --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 90vh;
    background: #000;
    overflow-x: hidden;
}

.swiper { width: 100%; height: 100%; }

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2; padding-left: 8%; padding-right: 5%;
    max-width: 900px; color: white; margin-top: -50px;
    width: 100%;
    box-sizing: border-box;
}

.hero-tag {
    background: rgba(220, 38, 38, 0.9); display: inline-block;
    padding: 8px 16px; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 25px;
    border-left: 4px solid white;
    opacity: 0; transform: translateY(30px);
}

.hero-title {
    font-size: 64px; line-height: 1.1; font-weight: 700; margin-bottom: 25px; color: white;
    opacity: 0; transform: translateY(30px);
}
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; font-weight: 300; max-width: 600px;
    opacity: 0; transform: translateY(30px);
}
.hero-btns { opacity: 0; transform: translateY(30px); display: flex; gap: 20px; }

.hero-btn-outline {
    padding: 14px 35px; font-weight: 700; font-size: 14px; text-transform: uppercase;
    border: 2px solid white; color: white;
}
.hero-btn-outline:hover { background: white; color: var(--navy-brand); }

/* Slide Animasyonları */
.swiper-slide-active .hero-tag { animation: fadeInUp 0.8s 0.3s forwards; }
.swiper-slide-active .hero-title { animation: fadeInUp 0.8s 0.5s forwards; }
.swiper-slide-active .hero-desc { animation: fadeInUp 0.8s 0.7s forwards; }
.swiper-slide-active .hero-btns { animation: fadeInUp 0.8s 0.9s forwards; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Dikey Slider Kontrolleri (GİZLENDİ) */
.mySwiper .swiper-pagination,
.custom-pagination,
.hero-slider-section .swiper-pagination {
    display: none !important;
}

/* --- STATS SECTION (OVERLAP) --- */
.stats-section {
    position: relative;
    z-index: 20;
    margin-top: -50px;
    padding: 0 5%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy-brand);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    gap: 1px;
}

.stat-card {
    padding: 30px 15px;
    text-align: center;
    background: var(--navy-brand);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { 
    background: var(--navy-accent);
    transform: translateY(-2px);
}

.stat-card::before {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 3px;
    background: var(--red-brand); 
    transition: 0.4s ease;
}
.stat-card:hover::before { 
    width: 100%; 
}

.stat-val { 
    font-size: 42px; 
    font-family: 'Oswald'; 
    font-weight: 700; 
    color: white; 
    line-height: 1; 
    display: block; 
    margin-bottom: 8px; 
}
.stat-label { 
    font-size: 12px; 
    color: #94a3b8; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    font-weight: 500; 
    line-height: 1.4;
}

/* --- ABOUT SECTION --- */
.section-padding { 
    padding: 120px 5%; 
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.about-text h4 { color: var(--red-brand); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.about-text h2 { font-size: 42px; margin-bottom: 25px; line-height: 1.2; }
.about-text p { margin-bottom: 20px; font-size: 16px; color: #64748b; }

.check-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 500; color: var(--navy-brand); }
.check-list i { color: var(--red-brand); }

.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 4px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

.exp-box {
    position: absolute; bottom: -30px; left: -30px;
    background: var(--white); padding: 30px;
    border-left: 5px solid var(--red-brand);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.exp-box span { font-size: 48px; font-weight: 700; color: var(--navy-brand); font-family: 'Oswald'; display: block; line-height: 1; }
.exp-box p { font-size: 14px; font-weight: 600; color: #64748b; margin: 0; }

/* --- SERVICES AREA --- */
.services-area { 
    background: #e2e8f0; 
    padding: 120px 5%; 
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.sec-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.sec-header h2 { font-size: 42px; }
.sec-header .divider { height: 4px; width: 60px; background: var(--red-brand); margin: 20px auto; }

.service-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.service-card {
    height: 380px; position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #020617 10%, transparent 80%);
    opacity: 0.9; transition: 0.3s;
}

.service-content { position: absolute; bottom: 30px; left: 30px; right: 30px; z-index: 2; }
.service-icon { font-size: 40px; color: var(--red-brand); margin-bottom: 20px; opacity: 0; transform: translateY(20px); transition: 0.4s; }
.service-content h3 { color: white; font-size: 22px; margin-bottom: 10px; transform: translateY(20px); transition: 0.4s; }
.service-content p { color: #cbd5e1; font-size: 14px; opacity: 0; transform: translateY(20px); transition: 0.4s 0.1s; display: block; }

.service-card:hover .service-icon, 
.service-card:hover .service-content h3, 
.service-card:hover .service-content p { opacity: 1; transform: translateY(0); }
.service-card:hover .service-bg { transform: scale(1.1); }
.service-card:hover .service-overlay { background: linear-gradient(to top, #020617 70%, rgba(220,38,38,0.2) 100%); }

/* --- FOOTER --- */
footer { 
    background: var(--navy-deep); 
    color: #94a3b8; 
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.footer-top { padding: 80px 5%; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; }

.footer-logo { font-family: 'Oswald'; font-size: 28px; color: white; margin-bottom: 20px; display: block; }
.footer-logo span { color: var(--red-brand); }

.f-title { color: white; font-size: 16px; margin-bottom: 25px; letter-spacing: 1px; }
.f-links li { margin-bottom: 12px; }
.f-links a:hover { color: white; padding-left: 5px; }

.contact-li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 5%; text-align: center; }

/* --- SERVICE REGIONS SECTION --- */
.service-regions {
    position: relative;
    padding: 100px 5%;
    background: var(--white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.regions-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.region-panel {
    position: relative;
}

.region-header-section {
    margin-bottom: 40px;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red-brand);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.region-badge.import-badge {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.region-badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    background: var(--red-brand);
}

.region-badge.import-badge .region-badge-icon {
    background: #3b82f6;
}

.region-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-brand);
    margin-bottom: 15px;
    line-height: 1.2;
}

.region-subtitle {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 35px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.country-item {
    background: var(--gray-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.country-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-brand);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.country-item:hover::before {
    transform: scaleY(1);
}

.country-item:hover {
    background: white;
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.import-panel .country-item::before {
    background: #3b82f6;
}

.import-panel .country-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.country-flag {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red-brand), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.import-panel .country-flag {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.country-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-brand);
    flex: 1;
}

.country-item:hover .country-name {
    color: var(--red-brand);
}

.import-panel .country-item:hover .country-name {
    color: #3b82f6;
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-section {
    padding: 100px 5%;
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: var(--red-brand);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--red-brand), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-brand);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- QUOTE SECTION --- */
.quote-section {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--navy-brand) 0%, var(--navy-accent) 100%);
    background-image: url('../../uploads/images/sl1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
    z-index: 1;
}

.quote-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.quote-badge i {
    font-size: 10px;
}

.quote-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quote-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-btn-primary {
    background: var(--red-brand);
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--red-brand);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.quote-btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* --- BLOG SECTION --- */
.blog-section {
    padding: 100px 5%;
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--red-brand);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--navy-brand);
}

.blog-card-title a:hover {
    color: var(--red-brand);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card-link {
    color: var(--red-brand);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 100px 5%;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero-title { font-size: 42px; }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1px;
    }
    .stat-card { 
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 25px 15px;
    }
    .stat-card:nth-child(2n) {
        border-right: none;
    }
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
    }
    .stat-val {
        font-size: 36px;
    }
    .stat-label {
        font-size: 11px;
    }
    
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }
    .exp-box { position: relative; bottom: auto; left: auto; display: inline-block; margin-top: -50px; margin-left: 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }
    .regions-split {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .nav-links { display: flex !important; }
    .hamburger { display: none !important; }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .top-bar {
        display: none;
    }
    
    header {
        height: 70px;
        padding: 0 4%;
        width: 100%;
        max-width: 100%;
    }
    .logo img {
        height: 36px;
    }
    
    .hero-slider-section {
        height: 70vh;
    }
    .hero-content {
        padding-left: 4% !important;
        padding-right: 4% !important;
        margin-top: 0;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-tag {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btn-outline,
    .quote-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .stats-section { 
        margin-top: 0; 
        padding: 20px 4%; 
        background: transparent;
        width: 100%;
        max-width: 100%;
    }
    .stats-grid { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
        border-radius: 8px;
        gap: 1px;
    }
    .stat-card { 
        border: none; 
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 20px 10px; 
    }
    .stat-card:nth-child(2n) {
        border-right: none;
    }
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
    }
    .stat-val {
        font-size: 32px;
    }
    .stat-label {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .section-padding {
        padding: 60px 4%;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .about-text p {
        font-size: 14px;
    }
    .exp-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        padding: 20px;
    }
    .exp-box span {
        font-size: 36px;
    }
    
    .services-area {
        padding: 60px 4%;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .sec-header h2 {
        font-size: 32px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    .service-card {
        height: 300px;
    }
    
    .service-regions {
        padding: 60px 4%;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .region-title {
        font-size: 24px;
    }
    .region-subtitle {
        font-size: 14px;
    }
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-section {
        padding: 60px 4%;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    .feature-item {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .quote-section {
        padding: 60px 4%;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .quote-title {
        font-size: 28px;
    }
    .quote-subtitle {
        font-size: 14px;
    }
    .quote-actions {
        flex-direction: column;
        gap: 12px;
    }
    .quote-btn-primary,
    .quote-btn-secondary {
        width: 100%;
        padding: 14px 20px;
    }
    
    .footer-top { 
        grid-template-columns: 1fr;
        padding: 50px 4%;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile Menu Drawer */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background: var(--white); z-index: 2000; padding: 80px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2); transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav ul li { margin-bottom: 20px; }
.mobile-nav ul li a { font-size: 16px; font-weight: 600; color: var(--navy-brand); text-transform: uppercase; }
.close-menu { position: absolute; top: 25px; right: 25px; font-size: 24px; cursor: pointer; color: var(--red-brand); }

.mobile-nav .language-selector {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.mobile-nav .language-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--gray-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--navy-brand);
}

.mobile-nav .language-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--red-brand);
    color: var(--red-brand);
}

.mobile-nav .language-dropdown {
    position: static;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: white;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
}

.mobile-nav .language-selector.active .language-dropdown {
    display: block;
}

.mobile-nav .language-option {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--navy-brand);
}

.mobile-nav .language-option:hover {
    background: var(--gray-light);
    color: var(--red-brand);
}

.mobile-nav .language-option.active {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red-brand);
}

.overlay-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s;
}
.overlay-bg.active { opacity: 1; visibility: visible; }

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

[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .mobile-nav ul {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .language-selector {
    direction: ltr;
}

[dir="rtl"] .top-bar-left,
[dir="rtl"] .top-bar-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-top {
    direction: rtl;
}

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

[dir="rtl"] .contact-li {
    direction: rtl;
    text-align: right;
}

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

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

[dir="rtl"] .sec-header {
    text-align: center;
}

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

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

[dir="rtl"] .quote-container {
    text-align: center;
}

