/* =========================================
   GENEL AYARLAR
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f4f4f4; color: #333; overflow-x: hidden; }
ul { list-style: none; }
a { text-decoration: none; }

/* =========================================
   HEADER STİLLERİ
   ========================================= */
.main-header {
    background-color: transparent;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background-color: #212529;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo-section { display: flex; align-items: center; gap: 12px; }
.logo-icon-box {
    width: 45px; height: 45px; background-color: #d32f2f;
    border-radius: 8px; display: flex; justify-content: center; align-items: center;
    color: white; font-size: 20px; position: relative;
}
.status-dot {
    position: absolute; top: -3px; right: -3px; width: 10px; height: 10px;
    background-color: #4caf50; border-radius: 50%; border: 2px solid #212529;
}
.logo-text h1 { font-size: 20px; color: #ffffff; font-weight: 700; line-height: 1.1;  padding:0; margin:0;}
.status-text { font-size: 12px; color: #4caf50; font-weight: 500; }

/* Desktop Navbar */
.nav-links { display: flex; gap: 30px; }
.nav-links li { position: relative; }
.nav-links a {
    color: #e0e0e0; font-size: 15px; font-weight: 500;
    transition: color 0.3s ease; display: flex; align-items: center; gap: 5px;
}
.nav-links a:hover, .nav-links a.active { color: #c9302c; }
.nav-links li.dropdown > a i { font-size: 12px; transition: transform 0.3s; }
.nav-links li.dropdown:hover > a i { transform: rotate(180deg); }

/* Mega Menü (Desktop) */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
    background-color: #fff; width: 360px; box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 12px; padding: 20px; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 1000;
}
.dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.mega-menu-title { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: #222; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
.brand-card {
    background-color: #fcfcfc; border: 1px solid #f0f0f0; border-radius: 8px;
    padding: 10px 5px; display: flex; flex-direction: column; align-items: center;
    text-align: center; transition: all 0.2s; cursor: pointer;
}
.brand-card:hover { background-color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.brand-logo { height: 25px; margin-bottom: 8px; object-fit: contain; filter: grayscale(100%); opacity: 0.7; }
.brand-card:hover .brand-logo { filter: grayscale(0%); opacity: 1; }
.brand-name { font-size: 13px; font-weight: 600; color: #444; }
.brand-category { font-size: 10px; color: #999; }
.view-all-btn {
    display: flex; justify-content: center; align-items: center; width: 100%;
    background-color: #4a6ee0; color: white !important; padding: 12px 0;
    border-radius: 8px; font-weight: 600; font-size: 14px; margin-top: 5px;
}

.call-btn {
    background-color: #c9302c; color: white; padding: 10px 25px; border-radius: 50px;
    font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 10px;
    transition: background 0.3s;
}
.call-btn:hover { background-color: #b0211d; }
.call-btn i { font-size: 14px; transform: rotate(-15deg); }
.mobile-menu-btn { display: none; color: white; font-size: 24px; cursor: pointer; }

/* =========================================
   ÖZEL MOBİL MENÜ
   ========================================= */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-card {
    width: 90%; max-width: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 30px 25px;
    transform: scale(0.9); transition: transform 0.3s ease;
    display: flex; flex-direction: column; gap: 25px;
}

.mobile-menu-overlay.active .mobile-menu-card { transform: scale(1); }

.mobile-card-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.mobile-card-header .logo-text h1 { color: #fff; font-size: 18px; }
.mobile-card-header .logo-icon-box { width: 40px; height: 40px; font-size: 18px; }
.close-mobile-menu { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

.mobile-card-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.mobile-card-links a { color: #f0f0f0; font-size: 18px; font-weight: 500; transition: 0.3s; display: block; }
.mobile-card-links a:hover { color: #fff; padding-left: 5px; }
.highlight-link { color: #90cdf4 !important; font-weight: 600; }

.mobile-card-footer { margin-top: 10px; }
.mobile-card-call-btn {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    background-color: #d32f2f; color: white; text-decoration: none;
    padding: 15px; border-radius: 50px; font-weight: 600; font-size: 18px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    transition: background 0.3s;
}
.mobile-card-call-btn:hover { background-color: #b71c1c; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative; width: 100%; height: 100vh; min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?q=80&w=2070&auto=format&fit=crop');
    background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
}

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

.hero-container {
    position: relative; z-index: 2; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: 100%;
    padding-top: 150px; padding-bottom: 50px;
}

.hero-content { max-width: 800px; margin-bottom: 50px; margin-top:20px; }
.hero-title { font-size: 48px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.highlight-blue { color: #4a90e2; font-weight: 800; }
.hero-subtitle { font-size: 18px; color: #e0e0e0; margin-bottom: 30px; font-weight: 300; }

.hero-cta-box { display: flex; justify-content: center; }
.hero-main-btn {
    background-color: #2f6bf3; color: white; padding: 15px 40px; border-radius: 12px;
    display: flex; align-items: center; gap: 20px; text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 25px rgba(47, 107, 243, 0.4);
}
.hero-main-btn:hover { transform: translateY(-5px); background-color: #255bd9; }
.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-label { font-size: 12px; opacity: 0.9; }
.btn-phone { font-size: 20px; font-weight: 700; }
.hero-main-btn i { font-size: 24px; }

.hero-features { display: flex; gap: 20px; margin-top: auto; margin-bottom: 40px; }
.feature-box {
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px;
    padding: 15px 25px; width: 140px; text-align: center; color: white;
    transition: background 0.3s;
}
.feature-box:hover { background: rgba(255, 255, 255, 0.15); }
.feature-icon { font-size: 20px; margin-bottom: 8px; color: #ff6b6b; }
.feature-box h3 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.feature-box p { font-size: 11px; opacity: 0.8; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-title .highlight-blue { color: #2f6bf3; }
.section-title .highlight-red { color: #e53e3e; }

.section-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}
.tag i { color: #2eb85c; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-list li i { color: #2eb85c; }

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: #2f6bf3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.card-link:hover { gap: 8px; color: #1a54d4; }

/* =========================================
   CTA BANNER SECTION
   ========================================= */
.cta-banner-section {
    padding: 0 20px 80px 20px;
    background-color: #fff;
}

.cta-box {
    background-color: #2f6bf3;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(47, 107, 243, 0.3);
}

.cta-title { font-size: 32px; font-weight: 700; margin-bottom: 15px; color: white; }
.cta-text { font-size: 16px; color: rgba(255, 255, 255, 0.9); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.cta-btn-white {
    background-color: white; color: #2f6bf3; padding: 15px 35px; border-radius: 8px;
    font-weight: 600; font-size: 16px; text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px; transition: all 0.3s ease;
}
.cta-btn-white:hover { background-color: #f0f0f0; transform: translateY(-2px); }

.cta-btn-outline {
    background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.6);
    color: white; padding: 15px 35px; border-radius: 8px; font-weight: 600;
    font-size: 16px; cursor: pointer; transition: all 0.3s ease;
}
.cta-btn-outline:hover { background-color: rgba(255, 255, 255, 0.1); border-color: white; }

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 80px 20px 100px 20px;
    background-color: #fff;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.process-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background-color: #eff6ff; color: #2f6bf3;
    padding: 6px 15px; border-radius: 30px;
    font-size: 13px; font-weight: 600; margin-bottom: 15px;
}
.process-desc {
    color: #666; margin-top: 15px; max-width: 600px; margin-left: auto; margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}

.step-icon-box {
    width: 60px; height: 60px; border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 24px; color: white; margin-bottom: -30px;
    z-index: 2; position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 24px; height: 24px; background-color: #fff; color: #999;
    border: 1px solid #e0e0e0; border-radius: 50%;
    font-size: 12px; font-weight: 600;
    display: flex; justify-content: center; align-items: center;
    position: absolute; top: 50%; right: -12px; z-index: 3;
    display: none;
}

.blue-icon { background-color: #2f6bf3; }
.green-icon { background-color: #2eb85c; }
.purple-icon { background-color: #9b59b6; }
.orange-icon { background-color: #f39c12; }

.step-card {
    padding: 50px 20px 30px 20px;
    border-radius: 12px;
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center;
}

.blue-card { background-color: #eff6ff; }
.green-card { background-color: #effbf3; }
.purple-card { background-color: #f8f0fc; }
.orange-card { background-color: #fef6e8; }

.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #333; }
.step-card p { font-size: 13px; color: #666; line-height: 1.5; }

.process-footer { text-align: center; margin-top: 40px; }
.process-footer h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.process-footer p { color: #666; margin-bottom: 25px; }

.process-cta-btn {
    background-color: #2f6bf3; color: white; padding: 12px 30px;
    border-radius: 6px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.3s;
}
.process-cta-btn:hover { background-color: #1a54d4; }

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    padding: 80px 20px 100px 20px;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateY(-5px); }

.color-yellow { background-color: #fff9e6; color: #f1c40f; }
.color-green  { background-color: #e6fffa; color: #2ecc71; }
.color-blue   { background-color: #e3f2fd; color: #2196f3; }
.color-purple { background-color: #f3e5f5; color: #9b59b6; }
.color-indigo { background-color: #e8eaf6; color: #3f51b5; }
.color-orange { background-color: #fff3e0; color: #ff9800; }
.color-red    { background-color: #ffebee; color: #f44336; }
.color-mint   { background-color: #e0f2f1; color: #009688; }

.stat-icon { font-size: 32px; margin-bottom: 15px; }

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
}

.percent { font-size: 24px; font-weight: 700; color: #333; }

.stat-card p {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-banner {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
}

.stats-banner h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.stats-banner p { font-size: 16px; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* =========================================
   BRANDS SECTION (MARKALAR) - YENİ
   ========================================= */
.brands-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.brands-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f0f0f0;
    color: #333;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #e53e3e;
    color: white;
    border-color: #e53e3e;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3);
}

.logo-slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.slide-track {
    display: flex;
    width: calc(200px * 28);
    animation: scroll 80s linear infinite; /* HIZ DÜŞÜRÜLDÜ */
}

.slide {
    height: 60px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 14)); }
}

.brands-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-box {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.brand-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d32f2f;
    transform: translateY(-3px);
}

.brand-box img {
    max-width: 70%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-box span {
    font-size: 0;
}

.brand-box.hide { display: none; }
.brand-box.show { animation: fadeIn 0.5s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.brands-footer-text {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #666;
}

.brands-footer-text .count-text {
    color: #e53e3e;
    font-weight: 700;
    font-size: 18px;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer { background-color: #0b1120; color: #a0aec0; padding-top: 60px; font-size: 14px; }
.footer-container {
    max-width: 1300px; margin: 0 auto; display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: 0 20px 50px 20px;
}
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 20px; font-weight: 600; }
.footer-logo { color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.logo-box { background-color: #e53e3e; padding: 5px 8px; border-radius: 4px; font-size: 14px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #a0aec0; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }

.footer-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
.footer-btn { width: 100%; padding: 12px; border-radius: 6px; font-weight: 600; text-align: center; cursor: pointer; border: none; font-size: 14px; }
.red-btn { background-color: #e53e3e; color: white; }
.red-btn:hover { background-color: #c53030; }
.outline-btn { background-color: transparent; border: 1px solid #4a5568; color: white; }
.outline-btn:hover { border-color: #fff; background-color: rgba(255,255,255,0.05); }

.working-hours { background-color: #1a202c; padding: 15px; border-radius: 6px; }
.working-hours h4 { color: #fff; margin-bottom: 10px; font-size: 14px; }
.wh-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 12px; }
.footer-bottom { border-top: 1px solid #2d3748; padding: 20px 0; color: #718096; font-size: 12px; }
.bottom-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; padding: 0 20px; }
.bottom-links a { color: #718096; margin-left: 20px; }

/* =========================================
   FAB & POPUP (DÜZELTİLDİ)
   ========================================= */
.floating-fab {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #e53e3e; color: white; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 24px; box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    cursor: pointer; z-index: 9999;
    transition: transform 0.3s ease;
}
.floating-fab:hover { transform: scale(1.1); }

.chat-popup {
    position: fixed; bottom: 100px; right: 30px; width: 320px;
    background-color: #1e2433; border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3); padding: 20px;
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.3s ease;
}
.chat-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }
.popup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #2d3748; padding-bottom: 10px; }
.popup-header h3 { color: white; font-size: 16px; font-weight: 600; }
.close-popup-btn { background: none; border: none; color: #a0aec0; font-size: 18px; cursor: pointer; }
.problem-list { display: flex; flex-direction: column; gap: 8px; }
.problem-btn { background-color: #2d3748; border: none; padding: 12px; border-radius: 6px; color: white; text-align: left; font-size: 14px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: background 0.2s; }
.problem-btn:hover { background-color: #4a5568; }
.problem-btn i { color: #90cdf4; width: 20px; text-align: center; }
.popup-footer { text-align: center; margin-top: 15px; font-size: 12px; color: #a0aec0; }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content.light-theme {
    background-color: #fff; width: 90%; max-width: 400px; padding: 30px;
    border-radius: 12px; text-align: center; position: relative;
    transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.call-icon-circle { width: 60px; height: 60px; background-color: #fee2e2; color: #c53030; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; margin: 0 auto 15px auto; }
.light-theme h3 { font-size: 20px; margin-bottom: 10px; color: #1a202c; }
.call-desc { color: #4a5568; font-size: 14px; margin-bottom: 25px; line-height: 1.5; }
.call-actions { display: flex; gap: 15px; justify-content: space-between; align-items: center; }
.cancel-btn { background: none; border: none; color: #718096; font-size: 16px; cursor: pointer; }
.confirm-call-btn { flex: 1; background-color: #c53030; color: white; padding: 12px; border-radius: 6px; font-weight: 600; display: flex; justify-content: center; gap: 8px; }
.confirm-call-btn:hover { background-color: #9b2c2c; }

/* =========================================
   RESPONSIVE (MOBİL UYUM)
   ========================================= */
@media (max-width: 1200px) {
    .brands-grid-container { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-title { font-size: 32px; margin-bottom: 15px; }
    .hero-subtitle { font-size: 15px; max-width: 90%; margin: 0 auto 25px auto; }
    .hero-container { padding-top: 130px; justify-content: flex-start; }
    .hero-features { flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
    .feature-box { width: 45%; max-width: 150px; }
    
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .cta-section { display: none; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .cta-box { padding: 40px 20px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-btn-white, .cta-btn-outline { width: 100%; justify-content: center; }
    
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .brands-grid-container { grid-template-columns: repeat(4, 1fr); }
    .brands-filter { gap: 10px; }
    .filter-btn { padding: 8px 15px; font-size: 13px; }
}

@media (max-width: 768px) {
    .brands-grid-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 26px; }
    
    .process-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .bottom-container { flex-direction: column; text-align: center; gap: 10px; }
    .chat-popup { width: 300px; right: 20px; bottom: 90px; }
    
    .brands-grid-container { grid-template-columns: repeat(2, 1fr); }
    .slide { width: 150px; }
    .slide-track { width: calc(150px * 28); }
    @keyframes scroll {
        100% { transform: translateX(calc(-150px * 14)); }
    }
}
/* =========================================
   FEATURES SECTION (AVANTAJLAR) - YENİ
   ========================================= */
.features-section {
    padding: 80px 20px 100px 20px;
    background-color: #ffffff; /* Beyaz zemin */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütun */
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* İkon Kutusu Renkleri (Görseldeki gibi) */
.box-blue { background-color: #e3f2fd; color: #2196f3; }
.box-green { background-color: #e6fffa; color: #2ecc71; }
.box-yellow { background-color: #fff9e6; color: #f1c40f; }
.box-purple { background-color: #f3e5f5; color: #9b59b6; }
.box-orange { background-color: #fff3e0; color: #ff9800; }
.box-red { background-color: #ffebee; color: #f44336; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2eb85c;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto; /* En alta it */
}

/* Features Alt Mavi Banner */
.features-cta-banner {
    background-color: #1a54d4; /* Görseldeki koyu mavi */
    color: white;
    text-align: center;
    padding: 50px 30px;
    border-radius: 12px;
}

.features-cta-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.features-cta-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.features-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-cta-buttons { flex-direction: column; width: 100%; }
    .features-cta-buttons .cta-btn-white, 
    .features-cta-buttons .cta-btn-outline { width: 100%; justify-content: center; }
}
/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb; /* Çok açık gri arka plan */
    color: #333;
}

/* Bölüm Yapısı */
.reviews-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Başlık Alanı */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.section-header .highlight {
    color: #dc2626; /* Kırmızı vurgu */
}

.section-header p {
    color: #6b7280;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid Yapısı (Kartların dizilimi) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Kart Tasarımı */
.review-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* İkonlar ve Yıldızlar */
.quote-icon {
    width: 50px;
    height: 50px;
    background-color: #fef2f2; /* Açık kırmızı daire */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-icon i {
    color: #f87171; /* Kırmızı tırnak */
    font-size: 20px;
}

.stars {
    color: #fbbf24; /* Sarı yıldız rengi */
    font-size: 14px;
    margin-bottom: 20px;
}

.stars i {
    margin: 0 1px;
}

/* Yorum Metni */
.review-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Kart boylarını eşitlemek için */
}

/* Hizmet Etiketi (Badge) */
.service-badge {
    display: inline-block;
    background-color: #fee2e2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 25px;
}

/* Kullanıcı Profili */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center; /* Ortalamak için */
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info div {
    text-align: left;
}

.user-info h4 {
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.user-info span {
    font-size: 12px;
    color: #6b7280;
}

/* İstatistik Alanı (Alt Kısım) */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #e5e7eb;
    padding-top: 60px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: #dc2626;
    margin: 0 0 10px 0;
}

.stat-item p {
    color: #4b5563;
    font-size: 16px;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
}
/* Genel Ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Başlık Stilleri */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Grid Yapısı */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütunlu yapı */
    gap: 30px;
    margin-bottom: 100px;
    text-align: center;
}

/* Kart / Özellik Ögesi */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    margin-top: 25px;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 250px;
}

/* İkon Kutuları */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Tam yuvarlak */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
}

/* Renk Temaları (İkonlar için) */
.icon-green {
    background-color: #f0fdf4; /* Çok açık yeşil */
    color: #22c55e; /* Yeşil ikon */
}

.icon-blue {
    background-color: #eff6ff; /* Çok açık mavi */
    color: #3b82f6; /* Mavi ikon */
}

.icon-orange {
    background-color: #fff7ed; /* Çok açık turuncu */
    color: #f97316; /* Turuncu ikon */
}

.icon-purple {
    background-color: #faf5ff; /* Çok açık mor */
    color: #a855f7; /* Mor ikon */
}

/* Sertifikalar Bölümü (Alt Kısım) */
.certificates-section {
    text-align: center;
    border-top: 1px solid #f3f4f6; /* Üstteki ince çizgi yoksa kaldırabilirsiniz, görselde tam belli değil ama ayırıcı olarak iyi durur */
    padding-top: 60px;
}

.certificates-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
}

.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

/* Renkli Noktalar (Dots) */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.dot-green { background-color: #22c55e; }
.dot-blue { background-color: #3b82f6; }
.dot-purple { background-color: #a855f7; }
.dot-orange { background-color: #f97316; }

/* Animasyon Sınıfları (JS ile çalışır) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    
    .cert-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
/* =========================================
   YENİ: FINAL BLUE CTA SECTION
   ========================================= */
.final-blue-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 100px 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blue-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
}

.blue-subtitle {
    font-size: 18px;
    color: #dbeafe;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Butonlar */
.blue-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-white {
    background-color: #ffffff;
    color: #1e40af;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); }
.btn-white i { margin-right: 10px; }

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}
.btn-outline:hover { background-color: rgba(255, 255, 255, 0.1); border-color: #ffffff; }
.btn-outline i:first-child { margin-right: 10px; }
.arrow-icon { margin-left: 10px; font-size: 14px; }

/* Mavi Alan İçi Grid */
.info-grid-blue {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.info-card-blue {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-card-blue h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; }
.info-card-blue p { font-size: 15px; color: #dbeafe; line-height: 1.5; }

/* Glassmorphism Emergency Box */
.glass-emergency-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.emergency-header h3 { font-size: 18px; font-weight: 700; margin: 0; color: white; }
.glass-emergency-box p { font-size: 15px; color: #dbeafe; margin: 0; }

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Önceki Responsive Ayarlarına Eklemeler */
@media (max-width: 992px) {
    .info-grid-blue { grid-template-columns: 1fr; gap: 30px; }
    .blue-cta-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; box-sizing: border-box; }
}
/* =========================================
   PAGE HEADER (SERVİSLERİMİZ BAŞLIĞI)
   ========================================= */
.page-header-section {
    /* Görseldeki canlı mavi arka plan */
    background-color: #2563eb; 
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    
    /* Fixed Header olduğu için üstten boşluk bırakıyoruz */
    padding: 160px 20px 80px 20px;
    
    text-align: center;
    color: #ffffff;
    position: relative;
    width: 100%;
}

.header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.header-content p {
    font-size: 18px;
    color: #dbeafe; /* Hafif şeffaf beyaz/mavi */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-header-section {
        padding-top: 140px; /* Mobilde header daha dar olabilir */
        padding-bottom: 60px;
    }

    .header-content h1 {
        font-size: 32px;
    }

    .header-content p {
        font-size: 15px;
        padding: 0 10px;
    }
}
/* =========================================
   HİZMET LİSTESİ (KARTLAR GRID)
   ========================================= */
.services-list-section {
    padding: 80px 20px 100px 20px;
    background-color: #fcfcfc; /* Hafif kırık beyaz */
}

/* Grid Yapısı */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Kart Genel Stil */
.service-page-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Resim Alanı */
.card-image-box {
    width: 100%;
    height: 220px;
    position: relative;
}

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

.service-page-card:hover .card-image-box img {
    transform: scale(1.05);
}

/* Resim Üzerindeki İkon (Sol Üst) */
.card-icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(30, 40, 50, 0.8); /* Yarı saydam siyah/lacivert */
    backdrop-filter: blur(4px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    z-index: 2;
}

/* Kart İçerik Alanı */
.card-content-box {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

/* Özel renkli başlık (Klima örneğindeki gibi kırmızı) */
.card-content-box h3.highlight-red {
    color: #dc2626;
}

.card-content-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Liste Özellikleri (Kırmızı Noktalı) */
.service-feature-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
    flex-grow: 1; /* Linki en alta itmek için */
}

.service-feature-list li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.service-feature-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #dc2626; /* Kırmızı nokta */
    border-radius: 50%;
    margin-right: 10px;
}

/* Detaylı Bilgi Linki */
.detail-link {
    font-size: 14px;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.detail-link:hover {
    gap: 12px;
    color: #b91c1c;
}

/* Responsive (Mobil/Tablet) */
@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .card-image-box {
        height: 200px;
    }
}
/* =========================================
   NEDEN BİZ SECTION (WHY US)
   ========================================= */
.why-us-section {
    padding: 100px 20px;
    background-color: #f9fafb; /* Görseldeki çok açık gri ton */
    border-top: 1px solid #eee;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Görseldeki açık kırmızı daire ve kırmızı ikon */
.icon-circle-light-red {
    width: 90px;
    height: 90px;
    background-color: #fef2f2; /* Çok uçuk kırmızı zemin */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #dc2626; /* Canlı kırmızı ikon */
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item:hover .icon-circle-light-red {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
}

.why-us-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.why-us-item p {
    font-size: 16px;
    color: #4b5563; /* Koyu gri metin */
    line-height: 1.6;
    max-width: 320px; /* Metinlerin çok yayılmasını engeller */
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(1, 1fr); /* Mobilde alt alta */
        gap: 60px;
    }
    
    .why-us-section {
        padding: 80px 20px;
    }
}
/* =========================================
   KIRMIZI CTA BANNER
   ========================================= */
.red-cta-section {
    background-color: #c53030; /* Görseldeki koyu kırmızı ton */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.red-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.red-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9); /* Hafif şeffaf beyaz */
    margin-bottom: 40px;
    font-weight: 400;
}

/* Beyaz Hap Buton (Görseldeki Gibi) */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #2563eb; /* Mavi yazı rengi (Tema mavisi) */
    padding: 18px 40px;
    border-radius: 50px; /* Tam yuvarlak köşeler */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #1d4ed8; /* Hover'da koyu mavi */
}

.btn-white-pill i {
    font-size: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .red-cta-content h2 {
        font-size: 28px;
    }
    
    .red-cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-white-pill {
        width: 100%; /* Mobilde tam genişlik */
        font-size: 16px;
        padding: 15px 20px;
    }
}
/* =========================================
   PAGE HEADER (ORTAK SAYFA BAŞLIĞI)
   ========================================= */
.page-header-section {
    /* Görseldeki mavi arka plan */
    background-color: #2563eb; 
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    
    /* Fixed Header olduğu için üstten boşluk bırakıyoruz */
    padding: 160px 20px 80px 20px;
    
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header-content p {
    font-size: 18px;
    color: #dbeafe; /* Hafif şeffaf beyaz */
    font-weight: 400;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-header-section {
        padding-top: 140px; 
        padding-bottom: 60px;
    }

    .header-content h1 {
        font-size: 32px;
    }
    
    .header-content p {
        font-size: 16px;
    }
}
/* =========================================
   HİKAYEMİZ (OUR STORY)
   ========================================= */
.our-story-section {
    padding: 100px 20px;
    background-color: #ffffff; /* Beyaz arka plan */
}

.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Sol Taraf: Metin */
.story-content {
    flex: 1; /* Alanın yarısını kapla */
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 16px;
    color: #4b5563; /* Koyu gri okunabilir metin */
    line-height: 1.8; /* Satır aralığı geniş, ferah okuma */
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Sağ Taraf: Görsel Kutusu */
.story-image-box {
    flex: 1; /* Alanın diğer yarısını kapla */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Görseldeki o hafif gölgeli beyaz kart efekti */
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); 
    padding: 15px; /* Resim ile dış çerçeve arasındaki beyaz boşluk */
    border: 1px solid #f3f4f6;
}

.story-image-box img {
    width: 100%;
    height: 400px; /* Sabit yükseklik, düzenli durması için */
    object-fit: cover; /* Resmi kutuya sığdır, oranları bozma */
    border-radius: 15px; /* İç resmin köşelerini de yuvarla */
    display: block;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .story-wrapper {
        flex-direction: column; /* Mobilde alt alta */
        gap: 40px;
    }

    .story-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .story-content p {
        text-align: center; /* Mobilde metni ortalayabiliriz */
    }

    .story-image-box {
        width: 100%;
    }

    .story-image-box img {
        height: 300px; /* Mobilde resmi biraz küçültelim */
    }
}
/* =========================================
   DEĞERLERİMİZ SECTION (OUR VALUES)
   ========================================= */
.our-values-section {
    padding: 100px 20px;
    background-color: #f9fafb; /* Görseldeki çok açık gri arka plan */
    border-top: 1px solid #eee;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütunlu yapı */
    gap: 30px;
    text-align: center;
}

.values-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* İkon Dairesi Stili (Neden Biz bölümüyle aynı stili kullanıyoruz) */
.values-item .icon-circle-light-red {
    width: 90px;
    height: 90px;
    background-color: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #dc2626;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-item:hover .icon-circle-light-red {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
}

.values-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.values-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 280px; /* Metin genişliğini sınırla */
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
        gap: 50px;
    }
    
    .our-values-section {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr; /* Mobilde 1 sütun */
        gap: 60px;
    }
}
/* =========================================
   UZMAN EKİBİMİZ SECTION
   ========================================= */
.team-section {
    padding: 100px 20px;
    background-color: #ffffff; /* Beyaz arka plan */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 30px;
}

.team-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Profil Resmi */
.team-img-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #f9fafb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kişi Bilgileri */
.team-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: #dc2626; /* Kırmızı Unvan */
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-exp {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Yetenek Listesi (Yeşil Tikli) */
.team-skills {
    width: 100%;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.team-skills ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block; /* Ortalamak için */
}

.team-skills li {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-skills li i {
    color: #22c55e; /* Yeşil Tik */
    font-size: 14px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr; /* Mobilde 1 sütun */
    }
}
/* =========================================
   SERTİFİKALAR GRID SECTION
   ========================================= */
.certificates-grid-section {
    padding: 100px 20px;
    background-color: #f9fafb; /* Görseldeki açık gri arka plan */
    border-top: 1px solid #eee;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütun */
    gap: 30px;
}

.certificate-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #fee2e2; /* Hover'da hafif kırmızı sınır */
}

/* İkon Kutusu (Yuvarlak, Açık Kırmızı) */
.cert-icon-box {
    width: 60px;
    height: 60px;
    background-color: #fee2e2; /* Açık kırmızı zemin */
    color: #dc2626; /* Kırmızı ikon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0; /* Küçülmesini engelle */
}

.cert-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 600px) {
    .certificates-grid {
        grid-template-columns: 1fr; /* Mobilde 1 sütun */
    }
    
    .certificate-card {
        padding: 20px;
    }
}
/* =========================================
   RAKAMLARLA BİZ (İSTATİSTİKLER) SECTION
   ========================================= */
.about-stats-section {
    background-color: #c53030; /* Görseldeki koyu kırmızı */
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

/* Başlık düzenlemeleri (Beyaz renk için) */
.about-stats-section .section-header {
    margin-bottom: 50px;
}

.about-stats-section .section-title {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.about-stats-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Grid Yapısı */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 30px;
    margin-top: 40px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Rakam ve Sembol Kutusu */
.stat-number-box {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-number {
    color: #ffffff;
}

.symbol {
    color: #ffffff;
    font-size: 36px; /* Sembolleri rakamdan biraz küçük yap */
    margin: 0 2px;
}

.about-stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2'li */
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .about-stats-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
    
    .stat-number-box {
        font-size: 42px;
    }
}
/* =========================================
   İLETİŞİM BİLGİLERİ SECTION
   ========================================= */
.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütun */
    gap: 30px;
    text-align: center;
}

.contact-info-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

/* İkon Dairesi (Diğer sayfalardaki stille uyumlu) */
.contact-info-item .icon-circle-light-red {
    width: 80px;
    height: 80px;
    background-color: #fef2f2; /* Açık kırmızı zemin */
    color: #dc2626; /* Kırmızı ikon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover .icon-circle-light-red {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
}

.contact-info-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.contact-info-item .highlight-text {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626; /* Kırmızı metin */
    margin-bottom: 5px;
}

.contact-info-item .sub-text {
    font-size: 14px;
    color: #6b7280; /* Gri metin */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 50px;
    }
}
/* =========================================
   SERVİS TALEBİ FORMU SECTION
   ========================================= */
.contact-form-section {
    padding: 80px 20px 100px 20px;
    background-color: #f9fafb; /* Görseldeki çok açık gri arka plan */
}

/* Form Kutusu (Beyaz Kart) */
.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04); /* Hafif gölge */
    border: 1px solid #f3f4f6;
}

/* 2 Kolonlu Yapı */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
}

/* Label (Etiket) Stili */
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151; /* Koyu gri */
    margin-bottom: 8px;
}

/* Input, Select, Textarea Stilleri */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    color: #1f2937;
    background-color: #fff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

/* Odaklanınca (Focus) */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626; /* Kırmızı çerçeve */
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.05); /* Kırmızımsı glow */
}

/* Placeholder Rengi */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Gönder Butonu */
.form-submit-box {
    text-align: center;
}

.btn-red-submit {
    background-color: #c53030; /* Görseldeki koyu kırmızı */
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(197, 48, 48, 0.2);
}

.btn-red-submit:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 48, 48, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 25px; /* Mobilde iç boşluğu azalt */
    }

    .form-grid {
        grid-template-columns: 1fr; /* Mobilde tek kolon */
        gap: 20px;
    }
}
/* =========================================
   ACİL DURUM CTA SECTION
   ========================================= */
.emergency-cta-section {
    background-color: #c53030; /* Görseldeki koyu kırmızı */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.emergency-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.emergency-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Eğer daha önce btn-white-pill eklemediyseniz bu kodu kullanın. 
   Eklediyseniz tekrar yazmanıza gerek yok. */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #c53030; /* Kırmızı yazı */
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #991b1b; /* Hover'da daha koyu kırmızı */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .emergency-content h2 {
        font-size: 28px;
    }
    
    .emergency-content p {
        font-size: 16px;
    }
    
    .btn-white-pill {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}
/* =========================================
   MARKA SAYFASI (BRAND HERO) SECTION
   ========================================= */
.brand-hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); /* Marka mavisi */
    padding: 180px 20px 100px 20px; /* Header altı boşluk */
    color: white;
}

.brand-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Sol Taraf: Logo Kutusu */
.brand-logo-col {
    flex-shrink: 0;
}

.brand-logo-box {
    background-color: #ffffff;
    width: 280px;
    height: 160px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.brand-logo-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Sağ Taraf: İçerik */
.brand-content-col {
    max-width: 700px;
}

.brand-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-content-col h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.brand-content-col p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Etiketler (Tags) */
.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.brand-tag {
    background-color: rgba(255, 255, 255, 0.15); /* Yarı saydam beyaz */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.brand-tag i {
    font-size: 14px;
}

/* Beyaz Buton */
.btn-brand-white {
    background-color: #ffffff;
    color: #2563eb; /* Mavi yazı */
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-brand-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #1d4ed8;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .brand-hero-wrapper {
        flex-direction: column; /* Mobilde alt alta */
        text-align: center;
        gap: 40px;
    }

    .brand-logo-box {
        width: 200px;
        height: 120px;
    }

    .brand-content-col h1 {
        font-size: 32px;
    }

    .brand-tags {
        justify-content: center;
    }
}
/* =========================================
   MARKA ÖZELLİKLERİ (FEATURES) SECTION
   ========================================= */
.brand-features-section {
    padding: 80px 20px;
    background-color: #f9fafb; /* Çok açık gri arka plan (Kartlar öne çıksın diye) */
    position: relative;
    margin-top: -50px; /* Hero bölümünün üzerine hafifçe binmesi için (Opsiyonel, görselde düz duruyor ama modern durur) */
    z-index: 10;
}

/* Görseldeki gibi düz durmasını istersen margin-top satırını silebilirsin. 
   Ben görseldeki gibi temiz bir grid yapısı kuruyorum: */

.brand-features-section {
    margin-top: 0; 
    padding-top: 100px;
    padding-bottom: 100px;
}

.brand-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-feature-card {
    background-color: #ffffff;
    border-radius: 16px; /* Köşeleri yumuşak */
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Hafif gölge */
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Mavi İkon Kutusu */
.feature-icon-blue {
    width: 60px;
    height: 60px;
    background-color: #eff6ff; /* Çok açık mavi zemin */
    color: #2563eb; /* Marka mavisi ikon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.brand-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.brand-feature-card p {
    font-size: 15px;
    color: #6b7280; /* Gri metin */
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .brand-features-grid {
        grid-template-columns: 1fr; /* Mobilde kartlar alt alta */
        gap: 30px;
    }
    
    .brand-feature-card {
        padding: 30px;
    }
}
/* =========================================
   MARKA SERVİS HİZMETLERİ LİSTESİ
   ========================================= */
.brand-services-list-section {
    padding: 80px 20px 100px 20px;
    background-color: #f9f9f9; /* Çok hafif gri */
}

/* Başlık Alanı (Flex: Sol yazı, Sağ buton) */
.brand-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-services-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.brand-services-header p {
    font-size: 16px;
    color: #6b7280;
}

/* Küçük Mavi Buton (Header için) */
.btn-brand-blue-sm {
    background-color: #2563eb;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-brand-blue-sm:hover { background-color: #1d4ed8; }

/* Grid Yapısı */
.brand-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun */
    gap: 30px;
}

/* Kart Yapısı */
.brand-service-item {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Kart Üst Kısım (İkon + Metin) */
.bs-top {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.bs-icon {
    width: 50px;
    height: 50px;
    background-color: #2563eb; /* Mavi Kutu */
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.bs-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.bs-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Kart Özellik Listesi (2 Sütun) */
.bs-features {
    background-color: #f9fafb; /* Gri kutu içi */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.bs-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Liste içi 2 sütun */
    gap: 10px;
}

.bs-features li {
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
}

.bs-features li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #2563eb; /* Mavi nokta */
    border-radius: 50%;
    margin-right: 8px;
}

/* Kart Butonları */
.bs-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-bs-gray {
    flex: 1;
    background-color: #f3f4f6;
    color: #374151;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-bs-gray:hover { background-color: #e5e7eb; }

.btn-bs-blue {
    flex: 1;
    background-color: #2563eb;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-bs-blue:hover { background-color: #1d4ed8; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .brand-services-grid {
        grid-template-columns: 1fr; /* Mobilde kartlar alt alta */
    }
    
    .bs-top {
        flex-direction: column; /* İkon üste */
        gap: 15px;
    }
}
/* =========================================
   MARKA ALT CTA (KIRMIZI) SECTION
   ========================================= */
.brand-bottom-cta {
    background-color: #dc2626; /* Görseldeki canlı kırmızı */
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.brand-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.brand-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Mevcut Beyaz Butonun Mavi Yazılı Versiyonu */
.btn-white-pill.blue-text {
    color: #2563eb; /* Mavi yazı rengi */
}

.btn-white-pill.blue-text:hover {
    color: #1e40af; /* Hover'da koyu mavi */
    background-color: #f8fafc;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .brand-bottom-cta {
        padding: 80px 20px;
    }

    .brand-cta-content h2 {
        font-size: 28px;
    }

    .brand-cta-content p {
        font-size: 16px;
    }
}
/* =========================================
   DETAY SAYFASI HERO (KIRMIZI)
   ========================================= */
.detail-hero-section {
    /* Görseldeki canlı kırmızı gradient */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 180px 20px 100px 20px; /* Header altı boşluk */
    color: #ffffff;
}

.detail-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* Sol Taraf: Logo Kutusu */
.detail-logo-col {
    flex-shrink: 0;
}

.detail-logo-box {
    background-color: #ffffff;
    width: 260px;
    height: 140px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.detail-logo-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* Sağ Taraf: İçerik */
.detail-content-col {
    max-width: 700px;
}

/* Başlık ve İkon Düzeni */
.detail-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Küçük Kare İkon (Başlık Yanı) */
.category-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2); /* Yarı saydam beyaz */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.detail-content-col h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.detail-content-col p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Kırmızı Yazılı Beyaz Buton */
.btn-white-pill.red-text {
    color: #dc2626; /* Kırmızı yazı */
    font-weight: 700;
}

.btn-white-pill.red-text:hover {
    color: #991b1b; /* Hover'da koyu kırmızı */
    background-color: #fef2f2;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .detail-hero-wrapper {
        flex-direction: column; /* Mobilde alt alta */
        text-align: center;
        gap: 30px;
    }

    .detail-title-row {
        justify-content: center; /* Başlığı ortala */
        flex-direction: column;
        gap: 10px;
    }

    .detail-content-col h1 {
        font-size: 28px;
    }
    
    .detail-logo-box {
        width: 200px;
        height: 100px;
    }
}
/* =========================================
   DETAY SAYFASI HİZMETLER (SUNDUĞUMUZ HİZMETLER)
   ========================================= */
.detail-services-section {
    padding: 80px 20px;
    background-color: #f9fafb; /* Çok hafif gri arka plan */
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.offering-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

/* Yeşil İkon */
.offering-icon {
    color: #22c55e; /* Görseldeki yeşil renk */
    font-size: 24px;
    display: flex;
    align-items: center;
}

.offering-text {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
}
/* =========================================
   SIK KARŞILAŞILAN SORUNLAR (TROUBLESHOOTING)
   ========================================= */
.troubleshooting-section {
    padding: 80px 20px 100px 20px;
    background-color: #ffffff;
}

/* Başlık Alanı */
.ts-header {
    margin-bottom: 40px;
}

.ts-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ts-title-row i {
    font-size: 28px;
    color: #dc2626; /* Kırmızı Uyarı İkonu */
}

.ts-title-row h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.ts-header p {
    font-size: 16px;
    color: #6b7280;
    margin-left: 40px; /* İkonun altını boş bırakıp metni hizalamak için */
}

/* Grid Yapısı */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütun */
    gap: 25px;
}

/* Kart Stili */
.ts-card {
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 25px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.ts-card:hover {
    border-color: #fee2e2; /* Hover'da hafif kırmızı sınır */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ts-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-content h3 i {
    color: #dc2626; /* Kırmızı İngiliz Anahtarı */
    font-size: 18px;
}

.ts-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc2626; /* Kırmızı Link Rengi */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.ts-link:hover {
    color: #991b1b;
    text-decoration: underline;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .troubleshooting-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 */
    }
}

@media (max-width: 600px) {
    .ts-header p {
        margin-left: 0; /* Mobilde girintiyi kaldır */
    }

    .troubleshooting-grid {
        grid-template-columns: 1fr; /* Mobilde 1 */
    }
}
/* =========================================
   DETAY SAYFASI AYRICALIKLAR (ÖZELLİKLER)
   ========================================= */
.detail-features-section {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütun */
    gap: 30px;
}

.detail-feature-card {
    background-color: #fff1f2; /* Görseldeki açık kırmızı/pembe zemin */
    border: 1px solid #ffe4e6;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.detail-feature-card:hover {
    transform: translateY(-5px);
}

/* İkon Stili */
.df-icon {
    font-size: 32px;
    color: #dc2626; /* Kırmızı İkon */
    margin-bottom: 20px;
}

.detail-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.detail-feature-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .detail-features-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 20px;
    }
}
/* =========================================
   DETAY SAYFASI ALT CTA (KIRMIZI)
   ========================================= */
.detail-bottom-cta {
    background-color: #ef4444; /* Görseldeki canlı kırmızı */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .detail-bottom-cta {
        padding: 80px 20px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}
/* =========================================
   GİZLİLİK POLİTİKASI BAŞLIĞI (KIRMIZI)
   ========================================= */
.privacy-hero-section {
    /* Görseldeki kırmızı ton */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    
    /* Fixed Header olduğu için üstten boşluk */
    padding: 160px 20px 80px 20px;
    
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.privacy-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.privacy-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95); /* Hafif şeffaf beyaz */
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .privacy-hero-section {
        padding-top: 140px; 
        padding-bottom: 60px;
    }

    .privacy-header-content h1 {
        font-size: 32px;
    }
    
    .privacy-header-content p {
        font-size: 16px;
    }
}
/* =========================================
   GİZLİLİK POLİTİKASI İÇERİK
   ========================================= */
.privacy-content-section {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.privacy-wrapper {
    max-width: 900px; /* Metinlerin çok yayılmaması için */
    margin: 0 auto;
}

/* Güncelleme Tarihi Kutusu (Mavi) */
.update-date-box {
    background-color: #eff6ff; /* Açık mavi zemin */
    border-left: 4px solid #2563eb; /* Sol taraf mavi çizgi */
    padding: 15px 20px;
    color: #1e40af;
    font-size: 14px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.update-date-box strong {
    font-weight: 700;
    color: #1e3a8a;
}

/* Maddeler Arası Boşluk */
.privacy-item {
    margin-bottom: 40px;
}

/* Başlıklar */
.privacy-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.privacy-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraf ve Liste Metinleri */
.privacy-item p, 
.privacy-item li {
    font-size: 16px;
    color: #4b5563; /* Koyu gri okunaklı metin */
    line-height: 1.7;
}

.privacy-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.privacy-item li {
    margin-bottom: 8px;
}

/* 7. Madde İçindeki İletişim Kutusu (Gri) */
.privacy-contact-box {
    background-color: #f9fafb; /* Çok açık gri */
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid #f3f4f6;
}

.privacy-contact-box p {
    margin-bottom: 5px;
    color: #1f2937;
}

.privacy-contact-box p:last-child {
    margin-bottom: 0;
}

.privacy-contact-box strong {
    color: #111;
    font-weight: 600;
    margin-right: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .privacy-content-section {
        padding: 40px 20px;
    }

    .privacy-item h2 {
        font-size: 22px;
    }
}
/* =========================================
   KVKK AYDINLATMA METNİ BAŞLIĞI (KIRMIZI)
   ========================================= */
.kvkk-hero-section {
    /* Görseldeki canlı kırmızı ton */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    
    /* Fixed Header olduğu için üstten boşluk */
    padding: 160px 20px 80px 20px;
    
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.kvkk-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.kvkk-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95); /* Hafif şeffaf beyaz */
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .kvkk-hero-section {
        padding-top: 140px; 
        padding-bottom: 60px;
    }

    .kvkk-header-content h1 {
        font-size: 28px;
    }
    
    .kvkk-header-content p {
        font-size: 15px;
    }
}
/* =========================================
   KVKK İÇERİK STİLLERİ
   ========================================= */
.kvkk-content-section {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.kvkk-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Genel Başlıklar */
.kvkk-item {
    margin-bottom: 50px;
}

.kvkk-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.kvkk-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Gri Bilgi Kutusu (Veri Sorumlusu) */
.info-box-gray {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.info-box-gray p {
    margin-bottom: 8px;
    color: #374151;
}

/* 3. Veri Kategorileri Grid (Renkli Kutular) */
.data-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.data-cat-box {
    padding: 20px;
    border-radius: 8px;
}

.data-cat-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.data-cat-box ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Renk Temaları */
.data-cat-box.blue { background-color: #eff6ff; color: #1e3a8a; }
.data-cat-box.green { background-color: #f0fdf4; color: #14532d; }
.data-cat-box.yellow { background-color: #fefce8; color: #713f12; }
.data-cat-box.purple { background-color: #faf5ff; color: #581c87; }

/* 4. İşlenme Amaçları (Sol Çizgili Liste) */
.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purpose-item {
    padding-left: 15px;
    border-left: 4px solid #ddd;
}

.purpose-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.purpose-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Kenarlık Renkleri */
.purpose-item.border-red { border-left-color: #ef4444; }
.purpose-item.border-blue { border-left-color: #3b82f6; }
.purpose-item.border-green { border-left-color: #22c55e; }
.purpose-item.border-yellow { border-left-color: #eab308; }
.purpose-item.border-purple { border-left-color: #a855f7; }

/* 5. Hukuki Sebepler Kutusu */
.legal-reasons-box {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lr-col strong {
    display: block;
    color: #111;
    font-size: 14px;
    margin-bottom: 2px;
}

.lr-col p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* 7. Tablo */
.kvkk-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 15px;
}

.kvkk-table th, .kvkk-table td {
    border: 1px solid #e5e7eb;
    padding: 12px 15px;
    text-align: left;
}

.kvkk-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111;
}

/* 8. Haklar Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rights-box {
    padding: 15px;
    border-radius: 6px;
}

.rights-box h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rights-box p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* Haklar Renkleri (Görseldeki gibi açık tonlar) */
.rights-box.bg-red { background-color: #fef2f2; color: #991b1b; }
.rights-box.bg-blue { background-color: #eff6ff; color: #1e40af; }
.rights-box.bg-green { background-color: #f0fdf4; color: #166534; }
.rights-box.bg-yellow { background-color: #fefce8; color: #854d0e; }
.rights-box.bg-purple { background-color: #faf5ff; color: #6b21a8; }
.rights-box.bg-darkblue { background-color: #f0f9ff; color: #0c4a6e; } /* Açık lacivert */

/* 9. Başvuru Süreci Kutusu */
.application-process-box {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.step-num {
    background-color: #ef4444; /* Kırmızı Yuvarlak */
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 10. İletişim Kutusu (Pembe) */
.contact-box-pink {
    background-color: #fff1f2; /* Çok açık kırmızı/pembe */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffe4e6;
}

.contact-box-pink p {
    margin-bottom: 5px;
    color: #111;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .data-category-grid,
    .legal-reasons-box,
    .rights-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}
/* =========================================
   ÇEREZ POLİTİKASI BAŞLIĞI (KIRMIZI)
   ========================================= */
.cookie-hero-section {
    /* Görseldeki canlı kırmızı gradient */
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    
    /* Fixed Header olduğu için üstten boşluk */
    padding: 160px 20px 80px 20px;
    
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.cookie-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cookie-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95); /* Hafif şeffaf beyaz */
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .cookie-hero-section {
        padding-top: 140px; 
        padding-bottom: 60px;
    }

    .cookie-header-content h1 {
        font-size: 32px;
    }
    
    .cookie-header-content p {
        font-size: 16px;
    }
}
/* =========================================
   ÇEREZ POLİTİKASI İÇERİK STİLLERİ
   ========================================= */
.cookie-content-section {
    padding: 60px 20px 100px 20px;
    background-color: #ffffff;
}

.cookie-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Genel Başlıklar */
.cookie-item {
    margin-bottom: 50px;
}

.cookie-item h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.cookie-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Son Güncelleme Kutusu (Mavi Dolu) */
.update-date-box-blue {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 15px 20px;
    color: #1e3a8a;
    font-size: 14px;
    margin-bottom: 30px;
    border-radius: 4px;
}

/* Sarı Uyarı Kutusu */
.alert-box-yellow {
    background-color: #fefce8;
    border: 1px solid #fef08a;
    color: #854d0e;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* 2. Çerez Türleri Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.type-card {
    padding: 20px;
    border-radius: 8px;
}

.type-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.type-card.bg-light-blue { background-color: #eff6ff; color: #1e40af; }
.type-card.bg-light-green { background-color: #f0fdf4; color: #166534; }

.type-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    font-size: 14px;
}

/* 3. Çerez Kategorileri Kartları */
.cookie-categories-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.cat-header {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cat-icon.icon-red { background-color: #fee2e2; color: #dc2626; }
.cat-icon.icon-blue { background-color: #dbeafe; color: #2563eb; }
.cat-icon.icon-green { background-color: #dcfce7; color: #16a34a; }
.cat-icon.icon-purple { background-color: #f3e8ff; color: #9333ea; }

.cat-title h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.cat-title p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.cat-footer {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

.bg-red-faint { background-color: #fef2f2; color: #991b1b; }
.bg-blue-faint { background-color: #eff6ff; color: #1e40af; }
.bg-green-faint { background-color: #f0fdf4; color: #166534; }
.bg-purple-faint { background-color: #faf5ff; color: #6b21a8; }

/* 4. Tablo */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: #111;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-red { background-color: #fee2e2; color: #991b1b; }
.badge-green { background-color: #dcfce7; color: #166534; }
.badge-blue { background-color: #dbeafe; color: #1e40af; }

/* 5. Ayarlar Grid */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.settings-left {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
}

.browser-list {
    list-style: none;
    padding: 0;
}

.browser-list li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ef4444; }
.dot.orange { background: #f97316; }
.dot.green { background: #22c55e; }
.dot.blue { background: #3b82f6; }

.warning-box {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
}

.warning-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.warning-box ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 13px;
    color: #555;
}

/* 6. Üçüncü Taraf */
.third-party-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tp-card {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 8px;
}

.tp-card a {
    font-size: 13px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

/* 7. Onay Kutusu (Yeşil) */
.consent-box-green {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 25px;
    border-radius: 8px;
}

.consent-options {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #e5e7eb;
}

.consent-options h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.consent-options ul {
    list-style: none;
    padding: 0;
}

.consent-options li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-green { color: #16a34a; }
.text-gray { color: #4b5563; }
.text-red { color: #dc2626; }

/* 8. Öneri Kutusu (Mavi Çerçeve) */
.alert-box-blue-outline {
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    color: #1e3a8a;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* 9. İletişim Basit Kutu */
.contact-box-simple {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 6px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .cookie-types-grid,
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
}
/* =========================================
   BEYAZ EŞYA SAYFASI (HERO)
   ========================================= */
.white-goods-hero {
    /* Görseldeki koyu mavi ton */
    background-color: #1e3a8a; 
    background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%);
    
    /* Header için üst boşluk */
    padding: 180px 20px 100px 20px;
    
    text-align: center;
    color: #ffffff;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ev İkonu */
.hero-icon-top {
    font-size: 48px;
    margin-bottom: 20px;
    /* İkonun etrafına hafif bir parlama efekti (Opsiyonel) */
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content-center h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-content-center p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Parlak Mavi Buton */
.btn-bright-blue {
    background-color: #3b82f6; /* Görseldeki açık/parlak mavi */
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); /* Mavi gölge */
}

.btn-bright-blue:hover {
    background-color: #2563eb; /* Hover'da biraz koyulaşsın */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .white-goods-hero {
        padding-top: 150px;
    }

    .hero-content-center h1 {
        font-size: 32px;
    }
    
    .hero-content-center p {
        font-size: 16px;
    }

    .btn-bright-blue {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
}
/* =========================================
   BEYAZ EŞYA HAKKINDA SECTION
   ========================================= */
.white-goods-about-section {
    padding: 100px 20px; /* Görseldeki geniş boşluk */
    background-color: #ffffff;
    text-align: center;
}

/* Başlık ve açıklama için mevcut 'section-header' sınıflarını kullandık.
   Ancak bu sayfaya özel genişlik ayarı yapmak istersen: */
.white-goods-about-section .section-desc {
    max-width: 800px; /* Metnin çok yayılmasını engelle */
    margin-left: auto;
    margin-right: auto;
    font-size: 18px; /* Okunabilirliği artır */
    line-height: 1.6;
    color: #4b5563;
}

.white-goods-about-section .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}
/* =========================================
   BEYAZ EŞYA HİZMET ALANLARI
   ========================================= */
.wg-services-section {
    padding: 80px 20px 100px 20px;
    background-color: #f9fafb; /* Görseldeki açık gri arka plan */
}

.wg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun */
    gap: 30px;
}

.wg-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Çok hafif gölge */
    border: 1px solid #f3f4f6; /* İnce çerçeve */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wg-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.wg-desc {
    font-size: 15px;
    color: #4b5563; /* Gri açıklama metni */
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Özellik Listesi (Yeşil İkonlu) */
.wg-features {
    list-style: none;
    padding: 0;
}

.wg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151; /* Koyu gri metin */
}

.wg-features li i {
    color: #22c55e; /* Görseldeki yeşil onay ikonu rengi */
    font-size: 18px;
    flex-shrink: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .wg-grid {
        grid-template-columns: 1fr; /* Tablet ve mobilde alt alta */
    }
}
/* =========================================
   SERVİS SÜRECİMİZ (ADIMLAR)
   ========================================= */
.service-process-section {
    padding: 80px 20px 100px 20px;
    background-color: #ffffff;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Kırmızı Numara Dairesi */
.step-circle {
    width: 70px;
    height: 70px;
    background-color: #c53030; /* Görseldeki koyu kırmızı */
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
    transition: transform 0.3s ease;
}

.process-step-item:hover .step-circle {
    transform: scale(1.1);
}

.process-step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.process-step-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    max-width: 250px; /* Metnin çok yayılmasını engeller */
    margin: 0 auto;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 */
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .process-steps-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
}
/* =========================================
   HİZMET VERDİĞİMİZ MARKALAR
   ========================================= */
.brands-grid-section {
    padding: 80px 20px 100px 20px;
    background-color: #f9fafb; /* Görseldeki açık gri zemin */
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 Sütunlu yapı */
    gap: 20px;
    margin-top: 40px;
}

.brand-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.brand-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #000;
}

/* Mobil Uyumluluk */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr); /* Küçük ekranlarda 4 sütun */
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablette 3 sütun */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
        gap: 12px;
    }
    
    .brand-box {
        font-size: 14px;
        padding: 15px 5px;
    }
}
/* =========================================
   BEYAZ EŞYA İLETİŞİM CTA (KIRMIZI)
   ========================================= */
.wg-contact-cta {
    background-color: #c53030; /* Görseldeki koyu kırmızı */
    background: linear-gradient(135deg, #c53030 0%, #b91c1c 100%);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.wg-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.wg-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Buton Grubu */
.wg-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Butonlar arası boşluk */
    flex-wrap: wrap;
}

/* Beyaz Buton (Hemen Ara) */
.btn-wg-white {
    background-color: #ffffff;
    color: #c53030; /* Kırmızı yazı */
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffffff; /* Boyut dengesi için */
}

.btn-wg-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: #991b1b;
}

/* Çerçeveli Buton (Online Talep) */
.btn-wg-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ffffff; /* Beyaz Çerçeve */
    transition: all 0.3s ease;
}

.btn-wg-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .wg-contact-cta {
        padding: 80px 20px;
    }

    .wg-cta-content h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .wg-cta-buttons {
        flex-direction: column; /* Mobilde butonlar alt alta */
        gap: 15px;
    }

    .btn-wg-white, .btn-wg-outline {
        width: 100%; /* Tam genişlik */
        justify-content: center;
    }
}