/* ============================================
   ANA SAYFA - ÖZEL STİLLER
============================================ */

/* -------------------------------------------
   NAVBAR ALTINDA HİZMETLER BÖLÜMÜ
-------------------------------------------- */
.hizmetler-ozet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 30px 40px;   /* Üste daha az boşluk */
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hizmet-kutu {
    background: white;
    padding: 32px 22px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
}

.hizmet-kutu:hover {
    transform: translateY(-6px);
}

.hizmet-kutu i {
    font-size: 40px;
    color: #0077c2;
    margin-bottom: 15px;
}

.hizmet-kutu h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1f3d55;
}

.hizmet-kutu p {
    font-size: 16px;
    color: #4d4d4d;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hizmetler-ozet {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}


/* -------------------------------------------
   HERO SECTION (köprü/yol teması)
-------------------------------------------- */
.hero {
    background: url("images/hero_bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    padding: 90px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 70, 0.55);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 span {
    color: #5cc0ff;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e8f3ff;
}

/* HERO Buttons wrapper */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 20px;
}

.cta-btn {
    background: #00a6f6;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.25s;
    min-width: 220px;
}

.cta-btn:hover {
    background: #008ed1;
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 20px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }
}


/* -------------------------------------------
   MEGA DROPDOWN PANEL
-------------------------------------------- */
.dropdown-btn-container {
    position: relative;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    padding: 14px 0;
    min-width: 250px;
    z-index: 50;
}

.dropdown-panel a {
    display: block;
    padding: 12px 18px;
    color: #00375c;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}

.dropdown-panel a:hover {
    background: #eef6ff;
}


/* -------------------------------------------
   MARKALAR (SADE)
-------------------------------------------- */
.markalar {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.markalar h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1f3d55;
    font-weight: 700;
}

.marka-aciklama {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a4a4a;
}


/* -------------------------------------------
   AKAN PARTNER SLIDER
-------------------------------------------- */
.partner-slider {
    overflow: hidden;
    padding: 10px 0 0 0;
    background: transparent;
}

.partner-track {
    display: flex;
    gap: 70px;
    white-space: nowrap;
    animation: slideLeft 18s linear infinite;
}

.partner-track img {
    height: 55px;
    opacity: 0.85;
    transition: 0.3s;
}

.partner-track img:hover {
    opacity: 1;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* -------------------------------------------
   KISA TANITIM
-------------------------------------------- */
.kisa-tanitim {
    background: #eef4f8;
    padding: 70px 20px;
}

.tanitim-icerik {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.kisa-tanitim h2 {
    font-size: 28px;
    color: #1f3d55;
    margin-bottom: 15px;
}

.kisa-tanitim p {
    font-size: 17px;
    color: #3d3d3d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-primary.mini {
    padding: 10px 24px;
    font-size: 16px;
    display: inline-block;
}

