:root {
    --primary-color: #0b5fb6;
    --primary-dark: #07478a;
    --accent-red: #d9222a;
    --accent-teal: #00a4b4;
    --accent-orange: #ea580c;
    --bg-light: #f8fafc;
    --bg-navy: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   Float Resets for style.css conflicts
   ========================================================================== */
.obey-modern-layout,
.obey-modern-layout *,
header,
header *,
footer,
footer * {
    float: none !important;
    box-sizing: border-box;
}

.obey-modern-layout h1,
.obey-modern-layout h2,
.obey-modern-layout h3,
.obey-modern-layout h4,
.obey-modern-layout h5,
.obey-modern-layout h6 {
    width: auto !important;
    display: block;
    clear: none !important;
}

/* Container Width Override to align with mock */
.container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

/* ==========================================================================
   Header & Navbar Modernization
   ========================================================================== */
header {
    background: var(--white) !important;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

header .row {
    display: flex !important;
    align-items: center !important;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.menuduzenle {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

.menuduzenle ul {
    list-style: none !important;
    display: flex !important;
    gap: 1.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menuduzenle ul li {
    position: relative !important;
}

.menuduzenle ul li a {
    text-decoration: none !important;
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s !important;
    padding: 10px 5px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.menuduzenle ul li a:hover {
    color: var(--primary-color) !important;
}

/* Header Actions Styles */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    justify-content: flex-end !important;
}

.header-action-btn {
    color: #475569 !important;
    font-size: 1.1rem !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: color 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.header-action-btn:hover {
    color: var(--primary-color) !important;
}

.lang-switcher {
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    color: #475569 !important;
    text-decoration: none !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    border: 1px solid #cbd5e1 !important;
    transition: all 0.3s !important;
    display: inline-block !important;
}

.lang-switcher:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Dropdown Menu Animations */
.menuduzenle ul li ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    box-shadow: var(--shadow-lg) !important;
    min-width: 220px !important;
    display: none !important;
    padding: 15px 0 !important;
    border-radius: 8px !important;
    z-index: 100 !important;
    border: 1px solid #f1f5f9 !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.menuduzenle ul li:hover > ul {
    display: block !important;
    animation: fadeInDown 0.25s ease !important;
}

.menuduzenle ul li ul li {
    width: 100% !important;
    display: block !important;
    padding: 0 20px !important;
}

.menuduzenle ul li ul li a {
    padding: 8px 0 !important;
    display: block !important;
    width: 100% !important;
    text-transform: none !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #f8fafc !important;
}

.menuduzenle ul li ul li:last-child a { border-bottom: none !important; }

/* ==========================================================================
   Modern Hero Section Slider — Pure CSS/JS, no Owl Carousel
   ========================================================================== */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #0f172a;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 600px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex !important;
    align-items: center !important;
    float: none !important;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.45) 55%, rgba(15,23,42,0.12) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide-content {
    color: white;
    max-width: 720px;
    text-align: left;
}

.hero-slide-content h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    float: none !important;
    width: auto !important;
}

.hero-slide-content h2 span {
    background-color: #e51a24 !important;
    color: #ffffff !important;
    padding: 5px 18px !important;
    border-radius: 5px !important;
    display: inline-block !important;
    margin-top: 8px !important;
    font-weight: 800 !important;
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
}

.hero-slide-content p {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.93) !important;
    margin: 1.1rem 0 1.8rem 0 !important;
    padding: 0 !important;
    max-width: 560px !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
    float: none !important;
    width: auto !important;
}

.btn-hero-white {
    background: #ffffff !important;
    color: #1e293b !important;
    padding: 0.85rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2) !important;
    float: none !important;
}

.btn-hero-white:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3) !important;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(0, 0, 0, 0.55) !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    float: none !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    text-shadow: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5) !important;
}

.hero-nav-btn i,
.hero-nav-btn span {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    line-height: 1 !important;
    display: block !important;
    font-style: normal !important;
}

.hero-nav-btn:hover {
    background: rgba(229, 26, 36, 0.85) !important;
    border-color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev { left: 20px; }
.hero-nav-next { right: 20px; }

.hero-thumbnails-container {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.hero-thumbnails-inner {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    pointer-events: auto;
}

.hero-thumbnails {
    display: flex;
    gap: 14px;
    z-index: 20;
    float: none !important;
}

.hero-thumb-card {
    width: 150px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.5) !important;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    float: none !important;
}

.hero-thumb-card.active,
.hero-thumb-card:hover {
    border-color: #ffffff !important;
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide-content {
    color: white;
    max-width: 720px;
    text-align: left;
}

/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
/* ==========================================================================
   Global Uniform Container (Site-Wide Single Standard)
   ========================================================================== */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1200px !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   Two-Column Section (Horizontal Cards)
   ========================================================================== */
.home-promo-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.promo-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.85);
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.promo-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.promo-slider-container {
    position: relative;
    width: 100%;
    height: 165px;
    overflow: hidden;
}

.promo-slides-wrapper {
    position: relative;
    width: 100%;
    height: 165px;
}

.promo-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 165px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1;
}

.promo-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dedicated Flex Layout inside cards */
.promo-item-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    height: 165px;
    box-sizing: border-box;
}

.promo-item-img {
    flex: 0 0 165px;
    width: 165px;
    height: 165px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.promo-item-img img {
    width: 165px !important;
    height: 165px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 14px !important;
}

.promo-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    height: 165px;
    padding: 0 0.25rem 0 0;
    box-sizing: border-box;
    min-width: 0;
}

.promo-item-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0b4c8c;
    margin: 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.promo-item-content p {
    color: #475569;
    font-size: 0.83rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-item-content div {
    margin-top: 0.15rem;
}

.btn-pill-blue {
    background: #004d9a !important;
    color: white !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 0.82rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 77, 154, 0.2) !important;
}

.btn-pill-blue:hover {
    background: #00366d !important;
    box-shadow: 0 6px 16px rgba(0, 77, 154, 0.3) !important;
    transform: translateY(-1px);
}

.btn-pill-cyan {
    background: #00a4b4 !important;
    color: white !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 0.82rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 164, 180, 0.2) !important;
}

.btn-pill-cyan:hover {
    background: #00818e !important;
    box-shadow: 0 6px 16px rgba(0, 164, 180, 0.3) !important;
    transform: translateY(-1px);
}

/* Dots pagination */
.promo-dots {
    position: absolute;
    bottom: 1.1rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.promo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background-color: #004d9a;
    width: 18px;
    border-radius: 4px;
}

@media (max-width: 575px) {
    .promo-item-inner {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    .promo-item-img {
        width: 100%;
        height: 160px;
        flex: 0 0 160px;
    }
    .promo-item-content {
        height: auto;
        padding: 0;
    }
    .promo-dots {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .promo-card-body {
        height: auto;
        padding: 1rem 0 0 0;
    }
    .promo-card .img-container {
        height: 160px;
    }
    .promo-dots {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        justify-content: center;
    }
}

/* ==========================================================================
   Features/Services Section (Navy blue BG)
   ========================================================================== */
.navy-features-section {
    background-color: #0b1329;
    padding: 70px 0;
    color: white;
}

@media (min-width: 992px) {
    .navy-col-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.feature-col-card {
    height: 100%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-col-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
}

.feature-col-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.checklist-items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

.checklist-items li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #cbd5e1 !important;
    margin-bottom: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
}

.checklist-items li i {
    color: #38bdf8 !important;
    font-size: 1.1rem !important;
    margin-right: 4px;
}

.feature-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    margin-top: auto;
}

.feature-col-card .btn-discover {
    color: white !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    transition: all 0.3s;
}

.feature-col-card .btn-discover:hover {
    gap: 12px;
    color: #38bdf8 !important;
}

/* ==========================================================================
   Sectors Section Carousel ("Tecrübe Sektörlerimiz" — 3 Cards, 1-by-1 Slider)
   ========================================================================== */
.sectors-section {
    background-color: #f8fafc;
    padding: 70px 0;
    overflow: hidden;
}

.sectors-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.3rem 0;
}

.sectors-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.sector-nav-btns button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    border: 2px solid #004d9a !important;
    background: #ffffff !important;
    color: #004d9a !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 77, 154, 0.15) !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    padding: 0 !important;
}

.sector-nav-btns button:hover {
    background: #004d9a !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 18px rgba(0, 77, 154, 0.3) !important;
}

.sector-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px 0;
}

.sector-slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.sector-slide-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .sector-slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .sector-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.sector-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
    border-color: rgba(0, 77, 154, 0.2);
}

.sector-card-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
}

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

.sector-card:hover .sector-card-img img {
    transform: scale(1.06);
}

.sector-card-body {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: left !important;
}

.sector-card-body p {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto !important;
    text-align: left !important;
}

.sector-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 1.2rem;
}

.sector-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-dot.active {
    background-color: #004d9a;
    width: 22px;
    border-radius: 4px;
}

/* ==========================================================================
   Fullwidth Partners/References Carousel (7 Visible Logos, Slides 1-by-1)
   ========================================================================== */
.partners-section-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff;
    padding: 45px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-container-fluid {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.partners-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* 7 Visible Items on Large Screens (100% / 7 = 14.285714%) */
.partner-slide-item {
    flex: 0 0 14.285714%;
    max-width: 14.285714%;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (max-width: 1399px) {
    .partner-slide-item {
        flex: 0 0 16.666666%;
        max-width: 16.666666%;
    }
}

@media (max-width: 1199px) {
    .partner-slide-item {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .partner-slide-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .partner-slide-item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 480px) {
    .partner-slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.partner-card {
    width: 100%;
    aspect-ratio: 300 / 225;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.partner-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-card:hover {
    border-color: #004d9a;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 77, 154, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    aspect-ratio: 300 / 225;
    filter: grayscale(0.5);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: block;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

.partner-text-fallback {
    font-weight: 700;
    color: #475569;
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background-color: #0f172a !important;
    color: white !important;
    padding: 60px 0 30px !important;
}

footer .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.footer-logo-block {
    margin-bottom: 1.25rem;
}

.footer-logo-block img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-contact-info {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
}

.footer-phone {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--white) !important;
    display: block !important;
    margin: 0.75rem 0 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.footer-phone:hover {
    color: var(--primary-color) !important;
}

.footer-email {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s !important;
    display: inline-block !important;
}

.footer-email:hover {
    color: white !important;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--white) !important;
    border-bottom: 2px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

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

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

.footer-links-list li a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: inline-block !important;
}

.footer-links-list li a:hover {
    color: white !important;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 35px;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-bottom a {
    color: #94a3b8 !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    color: white !important;
}

/* ==========================================================================
   Mega-Drawer Dropdown for #danismanlik (Kibar & Modern Tasarım)
   ========================================================================== */
.menuduzenle ul li.has-mega-drawer {
    position: static !important;
}

header {
    position: relative !important;
}

.mega-drawer-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 3px solid #004d9a;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 0 0 16px 16px;
    padding: 20px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 9999;
    box-sizing: border-box;
}

.menuduzenle ul li.has-mega-drawer:hover .mega-drawer-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-drawer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    text-decoration: none !important;
    text-transform: none !important;
    transition: all 0.25s ease;
}

.mega-drawer-item:hover {
    background: #ffffff;
    border-color: #004d9a;
    box-shadow: 0 4px 14px rgba(0, 77, 154, 0.08);
    transform: translateX(3px);
}

.mega-item-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.mega-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mega-item-title {
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: color 0.2s ease;
    line-height: 1.35;
}

.mega-drawer-item:hover .mega-item-title {
    color: #004d9a !important;
}

.mega-item-arrow {
    color: #cbd5e1;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.mega-drawer-item:hover .mega-item-arrow {
    color: #004d9a;
    transform: translateX(3px);
}

/* Right Corner CTA Card (Ortalı & Simetrik Tasarım) */
.mega-drawer-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #004d9a 100%);
    border-radius: 14px;
    padding: 20px 16px;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: none !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 77, 154, 0.18);
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.mega-drawer-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 77, 154, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #004d9a 100%);
}

.cta-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 auto 12px auto;
}

.mega-drawer-cta-card h4 {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: none !important;
    margin: 0 0 4px 0;
    line-height: 1.3;
    text-align: center;
}

.mega-drawer-cta-card p {
    font-size: 0.68rem !important;
    color: #cbd5e1 !important;
    text-transform: none !important;
    margin: 0 0 12px 0;
    line-height: 1.35;
    text-align: center;
    max-width: 95%;
}

.btn-cta-link {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.mega-drawer-cta-card:hover .btn-cta-link {
    background: #38bdf8 !important;
    color: #0f172a !important;
    border-color: #38bdf8 !important;
}

/* ==========================================================================
   Mega-Drawer Dropdown for #egitim (Akademi Tarzı 3x2 Kart Tasarımı)
   ========================================================================== */
.mega-drawer-egitim {
    border-top: 3px solid #0284c7 !important;
}

.egitim-drawer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.egitim-drawer-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none !important;
    text-transform: none !important;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.egitim-drawer-card:hover {
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.egitim-card-cover {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.egitim-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.egitim-drawer-card:hover .egitim-card-cover img {
    transform: scale(1.06);
}

.egitim-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #38bdf8;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: none !important;
}

.egitim-card-body {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    min-height: 42px;
}

.egitim-card-title {
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.egitim-drawer-card:hover .egitim-card-title {
    color: #0284c7 !important;
}

/* Eğitim CTA Kartı */
.egitim-cta-card {
    background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%) !important;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2) !important;
}

.egitim-cta-card:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0f172a 100%) !important;
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35) !important;
}

.egitim-icon {
    background: rgba(56, 189, 248, 0.25) !important;
}

/* ==========================================================================
   Standard Dropdown Sub-Menu & Right Drawer for Danışmanlık & Eğitim
   ========================================================================== */
.menuduzenle ul li.has-drawer-submenu {
    position: relative !important;
}

.menuduzenle ul li.has-drawer-submenu > ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    min-width: 250px !important;
    padding: 8px 0 !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12) !important;
    z-index: 9999 !important;
}

.menuduzenle ul li.has-drawer-submenu > ul > li {
    position: relative !important;
    width: 100% !important;
    padding: 0 8px !important;
}

.menuduzenle ul li.has-drawer-submenu > ul > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    color: #1e293b !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    transition: all 0.2s ease !important;
}

.menuduzenle ul li.has-drawer-submenu > ul > li:hover > a {
    background: #f1f5f9 !important;
    color: #004d9a !important;
}

.sub-drawer-pane {
    position: absolute;
    top: -8px;
    left: 100%;
    width: 520px;
    min-height: calc(100% + 16px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.15);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    z-index: 10000;
    box-sizing: border-box;
    pointer-events: none;
}

.sub-drawer-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 15px;
    height: 100%;
}

.menuduzenle ul li.has-drawer-submenu > ul > li:hover > .sub-drawer-pane {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.sub-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sub-drawer-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

.sub-drawer-all {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #004d9a !important;
    text-decoration: none !important;
}

.sub-drawer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
}

.menuduzenle ul li ul li a.sub-drawer-card,
a.sub-drawer-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.menuduzenle ul li ul li a.sub-drawer-card:hover,
a.sub-drawer-card:hover {
    background: #ffffff !important;
    border-color: #004d9a !important;
    box-shadow: 0 4px 14px rgba(0, 77, 154, 0.08) !important;
    transform: translateX(3px) !important;
}

.sub-drawer-card-thumb {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06) !important;
    display: block !important;
}

.sub-drawer-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.sub-drawer-card-info {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.sub-drawer-card-title {
    font-size: 0.83rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s ease !important;
}

.sub-drawer-card:hover .sub-drawer-card-title {
    color: #004d9a !important;
}

.sub-drawer-card-arrow {
    font-size: 0.72rem !important;
    color: #cbd5e1 !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    display: inline-block !important;
}

.sub-drawer-card:hover .sub-drawer-card-arrow {
    color: #004d9a !important;
    transform: translateX(3px) !important;
}
