/* ============================================
   SPARKS - iLab-style tasarım
   ============================================ */

:root {
    --accent: #c41e3a;
    --accent-dark: #a01830;
    --hero-overlay: rgba(20, 40, 120, 0.72);
    --footer-bg: #111;
    --footer-text: #888;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font);
    color: #333;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   HERO WRAPPER
   ======================================== */
.hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* ========================================
   HEADER - transparan, hero üzerinde
   ======================================== */
.main-header {
    position: relative;
    z-index: 10;
    padding: 1.25rem 0;
}

.header-logo {
    height: 48px;
    width: auto;
}

/* Navbar */
.main-header .navbar { padding: 0; }

.main-header .nav-link {
    color: rgb(255 255 255 / 87%) !important;
    font-size: 17px;
    font-weight: 600;
    padding: 0.5rem 1.15rem !important;
    letter-spacing: 0.01em;
    transition: color .2s;
    position: relative;
}

.main-header .nav-link:hover,
.main-header .nav-link:focus {
    color: #fff !important;
}

.main-header .nav-link::after { content: none; }

.main-header .nav-item:not(.dropdown) .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width .25s ease, left .25s ease;
}

.main-header .nav-item:not(.dropdown) .nav-link:hover::before {
    width: 60%;
    left: 20%;
}

/* Dropdown ok */
.main-header .dropdown-toggle::after {
    border: none;
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 5px;
    vertical-align: 2px;
    transition: transform .2s;
}

.main-header .dropdown.show .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.main-header .dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    padding: 8px 0;
    margin-top: 8px;
    animation: fadeDown .2s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.main-header .dropdown-item {
    font-size: 0.88rem;
    padding: 8px 20px;
    color: #444;
    transition: background .15s, color .15s;
}

.main-header .dropdown-item:hover {
    background: rgba(20,40,120,.06);
    color: #1a1a6c;
}

/* Dil seçici */
.lang-switcher .btn {
    background: transparent;
    border: 1.4px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.lang-switcher .btn:hover,
.lang-switcher .btn:focus {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.lang-switcher .dropdown-menu {
    min-width: 150px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    font-size: 0.85rem;
}

.lang-switcher .dropdown-item.active {
    background: rgba(20,40,120,.08);
    color: #1a1a6c;
}

/* Hamburger menü */
.navbar-toggler {
    border: none !important;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent !important;
    box-shadow: none !important;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO İÇERİK
   ======================================== */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 4rem;
    padding-bottom: 180px;
}

.hero-heading {
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    line-height: 43px;
    letter-spacing: -0.01em;
    width: 100%;
    max-width: 700px;
    display: table;
    margin: 0 auto;
    padding: 90px 0 0;
}

.hero-heading strong {
    font-weight: 700;
}

/* ========================================
   ABOUT INTRO (hero altı bölüm)
   ======================================== */
.about-intro {
    padding: 5rem 0;
}

.about-intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about-intro-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

.btn-about {
    background: #1a1a3e;
    color: #fff;
    padding: 0.75rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    letter-spacing: 0.02em;
    transition: background .2s, transform .2s;
}

.btn-about:hover {
    background: #12122e;
    color: #fff;
    transform: translateY(-1px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #0d0d1a;
    color: #8a8a9a;
    font-size: 0.88rem;
}

/* CTA bant */
.footer-cta {
    background: #1a1a3e;
    padding: 2.25rem 0;
}

.footer-cta-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-cta-btn {
    background: #fff;
    color: #1a1a3e;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.65rem 2rem;
    border-radius: 8px;
    border: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: #e8e9ee;
    color: #1a1a3e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* Ana footer */
.footer-main {
    padding: 4rem 0 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: .85;
}

.footer-desc {
    color: #6a6a7a;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.5);
    font-size: 0.88rem;
    transition: background .2s, color .2s, transform .2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: #7a7a8a;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color .2s;
}

.footer-links a:hover { color: #fff; }

/* Ofis blokları */
.footer-office {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-office:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-office-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,.5);
    margin-bottom: 0.5rem;
}

.footer-office-badge img {
    width: 16px;
    border-radius: 2px;
}

.footer-office p {
    margin: 0 0 3px;
    font-size: 0.85rem;
    color: #7a7a8a;
    line-height: 1.5;
}

.footer-office a {
    color: #7a7a8a;
    text-decoration: none;
    transition: color .2s;
}

.footer-office a:hover { color: #fff; }

/* Alt bant */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,.3);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.3);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ========================================
   MARKALAR SAYFASI
   ======================================== */
.brands-page {
    padding: 5rem 0;
    background: #f7f8fa;
}

.brand-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.brand-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.brand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.brand-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 62, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.brand-card:hover .brand-card-overlay {
    background: rgba(26, 26, 62, 0.4);
}

.brand-visit {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #1a1a3e;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
}

.brand-card:hover .brand-visit {
    opacity: 1;
    transform: translateY(0);
}

.brand-card-body {
    padding: 1.75rem;
}

.brand-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 0.5rem;
}

.brand-card-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #666;
    margin-bottom: 0.75rem;
}

.brand-card-url {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
}

/* ========================================
   HİZMET SAYFASI
   ======================================== */
.service-page {
    padding: 5rem 0;
    background: #fff;
}

.srv-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(196, 30, 58, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.srv-title {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a3e;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.srv-title strong { font-weight: 700; }

.srv-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.srv-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.srv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.srv-features {
    padding: 4rem 0 2rem;
}

.srv-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 2rem;
}

.srv-feature-card {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.srv-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.srv-feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1a1a3e;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.srv-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 0.5rem;
}

.srv-feature-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.srv-tech {
    padding: 2rem 0 1rem;
}

.srv-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.srv-tech-tags span {
    display: inline-block;
    padding: 0.5rem 1.15rem;
    background: #f0f1f5;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a3e;
    transition: background 0.2s, color 0.2s;
}

.srv-tech-tags span:hover {
    background: #1a1a3e;
    color: #fff;
}

/* Diğer hizmetler */
.srv-other {
    padding: 3rem 0 5rem;
    background: #f7f8fa;
}

.srv-other-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid #eef0f4;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.srv-other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.srv-other-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 26, 62, 0.06);
    color: #1a1a3e;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.srv-other-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a3e;
    margin: 0;
}

/* ========================================
   HAKKIMIZDA SAYFASI
   ======================================== */
.about-page {
    padding: 5rem 0;
    background: #fff;
}

.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(196, 30, 58, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a3e;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.about-title strong {
    font-weight: 700;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Misyon / Vizyon */
.about-mission-vision {
    padding: 4rem 0;
}

.mv-card {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1a1a3e;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.mv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 0.75rem;
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* İstatistikler */
.about-stats {
    padding: 3rem 0 4rem;
}

.stat-item {
    padding: 2rem 1rem;
    background: #f7f8fa;
    border-radius: 16px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a3e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.88rem;
    color: #888;
    font-weight: 500;
}

/* Değerler */
.about-values {
    padding: 3rem 0 2rem;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 2.5rem;
}

.value-card {
    background: #fff;
    border: 1.5px solid #eef0f4;
    border-radius: 16px;
    padding: 2.25rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 26, 62, 0.06);
    color: #1a1a3e;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */
.hero-sub {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: 0.5rem;
    margin-bottom: 0;
    display: block;
}

/* --- Form bölümü --- */
.ct-form-section {
    padding: 2rem 0 5rem;
    background: #f7f8fa;
}

.ct-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 6px 32px rgba(0,0,0,.06);
}

.ct-form-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a3e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f1f4;
}

.ct-input {
    border: 1.5px solid #e8eaee;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #333;
    transition: border-color .2s, box-shadow .2s;
    background: #fafbfc;
}

.ct-input:focus {
    border-color: #1a1a6c;
    box-shadow: 0 0 0 3px rgba(26,26,108,.07);
    background: #fff;
}

.ct-input::placeholder { color: #aaa; }

textarea.ct-input { resize: vertical; }

.ct-btn-send {
    background: #1a1a3e;
    color: #fff;
    padding: 0.7rem 2.2rem;
    font-size: 0.92rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.ct-btn-send:hover {
    background: #12122e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,26,62,.2);
}

.ct-form-social {
    display: flex;
    gap: 0.5rem;
}

.ct-form-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f1f4;
    color: #555;
    font-size: 0.88rem;
    transition: background .2s, color .2s, transform .2s;
    text-decoration: none;
}

.ct-form-social a:hover {
    background: #1a1a3e;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Ofis kartları --- */
.ct-offices {
    padding: 3rem 0 2rem;
    background: #f7f8fa;
}

.ct-office-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s;
}

.ct-office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

.ct-office-card--dark {
    background: #1a1a3e;
    color: #fff;
}

.ct-office-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.75rem 0 0 1.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f0f1f4;
    color: #1a1a3e;
}

.ct-office-card--dark .ct-office-badge {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.ct-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.ct-office-body {
    padding: 1.5rem 1.75rem 1.25rem;
}

.ct-office-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.ct-office-card--dark .ct-office-row {
    color: rgba(255,255,255,.75);
}

.ct-office-row i {
    font-size: 0.95rem;
    margin-top: 2px;
    color: #1a1a6c;
    min-width: 18px;
}

.ct-office-card--dark .ct-office-row i {
    color: rgba(255,255,255,.5);
}

.ct-office-row a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.ct-office-row a:hover { color: #1a1a6c; }
.ct-office-card--dark .ct-office-row a:hover { color: #fff; }

.ct-office-map {
    line-height: 0;
    border-top: 1px solid rgba(0,0,0,.05);
}

.ct-office-card--dark .ct-office-map {
    border-top-color: rgba(255,255,255,.08);
}

.ct-office-map iframe {
    display: block;
    filter: grayscale(10%) contrast(98%);
}

/* ========================================
   MOBİL
   ======================================== */
@media (max-width: 991.98px) {
    .hero-wrapper { min-height: 70vh; }

    .hero-heading { font-size: 1.75rem; }

    .navbar-collapse {
        background: rgba(10,20,60,.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin: 1rem -12px 0;
        padding: 1rem 1.25rem;
        border-radius: 8px;
    }

    .main-header .nav-link {
        padding: 0.7rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .main-header .nav-item:not(.dropdown) .nav-link::before {
        display: none;
    }

    .main-header .dropdown-menu {
        background: rgba(255,255,255,.08);
        box-shadow: none;
        padding-left: 0.75rem;
        animation: none;
    }

    .main-header .dropdown-item {
        color: rgba(255,255,255,.7);
    }

    .main-header .dropdown-item:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

    .lang-switcher {
        margin-top: 0.75rem;
        margin-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .hero-heading { font-size: 1.4rem; }
    .hero-sub { font-size: 0.9rem; }
    .header-logo { height: 36px; }
    .about-intro { padding: 3rem 0; }
    .about-intro-title { font-size: 1.4rem; }
    .brands-page { padding: 3rem 0; }
    .brand-card-body { padding: 1.25rem; }
    .brand-card-title { font-size: 1.05rem; }
    .service-page { padding: 3rem 0; }
    .srv-title { font-size: 1.5rem; }
    .srv-feature-card { padding: 1.5rem; }
    .srv-section-title { font-size: 1.25rem; }
    .srv-other { padding: 2rem 0 3rem; }
    .about-page { padding: 3rem 0; }
    .about-title { font-size: 1.5rem; }
    .mv-card { padding: 1.75rem; }
    .stat-number { font-size: 2rem; }
    .section-heading { font-size: 1.35rem; }
    .value-card { padding: 1.75rem; }
    .ct-form-section { padding: 2.5rem 0 1.5rem; }
    .ct-form-wrap { padding: 1.5rem; border-radius: 12px; }
    .ct-offices { padding-bottom: 3rem; }
    .ct-office-body { padding: 1.25rem 1.25rem 1rem; }
    .ct-office-badge { margin: 1.25rem 0 0 1.25rem; }
    .ct-office-map iframe { height: 180px; }
}

/* ========================================
   RTL (Arapça)
   ======================================== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav { margin-left: unset !important; margin-right: auto !important; }
[dir="rtl"] .lang-switcher { margin-left: 0 !important; margin-right: 1.5rem; }
[dir="rtl"] .dropdown-menu-end { --bs-position: left; }
[dir="rtl"] .ms-2 { margin-left: 0 !important; margin-right: 0.5rem !important; }
[dir="rtl"] .ms-lg-4 { margin-left: 0 !important; margin-right: 1.5rem !important; }
[dir="rtl"] .me-2 { margin-right: 0 !important; margin-left: 0.5rem !important; }
[dir="rtl"] .ct-office-row { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .ct-office-badge { margin: 1.75rem 1.75rem 0 0; }
[dir="rtl"] .footer-desc { direction: rtl; }
[dir="rtl"] .footer-social { justify-content: flex-start; }
[dir="rtl"] .footer-bottom-links { direction: rtl; }
