/* ===================================================
   GLOBAL
=================================================== */

html {
    font-size: 14px;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ===================================================
   WPA RENK SİSTEMİ
=================================================== */

/*:root {
    --wpa-primary: #1CA7C6;
    --wpa-primary-dark: #1589A6;
    --wpa-deep: #0E2A3B;
    --wpa-light: #F4FAFC;
}*/
:root {
    --primary-dark: #0B1F3A; /* Lacivert ana renk */
    --primary-accent: #C6A75E; /* Altın vurgu */
    --text-dark: #1E1E1E;
    --bg-light: #F4F6F9;
}

/* ===================================================
   LINKLER
=================================================== */

main a {
    color: var(--wpa-primary);
    text-decoration: none;
    transition: 0.2s ease;
}

    main a:hover {
        color: var(--wpa-primary-dark);
        text-decoration: underline;
    }

/* ===================================================
   NAVBAR
=================================================== */

.navbar {
    background: linear-gradient( 90deg, var(--wpa-primary), var(--wpa-primary-dark) );
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    transition: 0.2s ease;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        opacity: 0.8;
    }

.navbar-dark .navbar-brand {
    color: #ffffff;
    transition: 0.2s ease;
}

    .navbar-dark .navbar-brand:hover {
        color: var(--wpa-deep) !important;
    }

.navbar-brand img {
    height: 40px;
    transition: 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    opacity: 0.9;
}

.navbar-brand:hover img {
    opacity: 1;
}

/* Desktop dropdown hover */
@media (min-width: 992px) {

    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.25s ease;
        display: block;
    }

    .dropdown.show .dropdown-menu,
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ===================================================
   FOOTER
=================================================== */

footer {
    background: linear-gradient( 90deg, var(--wpa-primary), var(--wpa-primary-dark) );
}

    footer a {
        color: #ffffff;
        transition: 0.3s ease;
    }

        footer a:hover {
            color: #00E0D3;
            text-decoration: none;
        }

/* ===================================================
   BUTON
=================================================== */

.btn-primary {
    background-color: var(--wpa-primary);
    border-color: var(--wpa-primary);
}

    .btn-primary:hover {
        background-color: var(--wpa-primary-dark);
        border-color: var(--wpa-primary-dark);
    }

/* ===================================================
   CARD
=================================================== */

.card {
    border: none;
    border-top: 3px solid var(--wpa-primary);
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
    }

/* ===================================================
   HERO
=================================================== */

.hero-section {
    background: linear-gradient( 135deg, var(--wpa-primary), var(--wpa-primary-dark) );
    color: #ffffff;
}

.hero-title {
    font-size: 2rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.95;
}

/* ===================================================
   YÖNETİM ÖNİZLEME – ÜÇGEN
=================================================== */

.triangle-board {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.triangle-top {
    display: flex;
    justify-content: center;
}

.triangle-bottom {
    display: flex;
    gap: 35px;
}

.hero-partner-large {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.6);
    transition: 0.25s ease;
    flex-shrink: 0;
}

    .hero-partner-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-partner-large:hover {
        transform: translateY(-4px);
        border-color: #ffffff;
    }

.board-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.board-link {
    text-decoration: none;
}

/* Mobile düzeltme */
@media (max-width: 768px) {

    .triangle-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-partner-large {
        width: 95px;
    }
}

/* ===================================================
   KURUMSAL LİSTE
=================================================== */

.corporate-list {
    list-style: none;
    padding: 0;
}

    .corporate-list li {
        margin-bottom: 10px;
        padding-left: 18px;
        position: relative;
    }

        .corporate-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--wpa-primary);
            position: absolute;
            left: 0;
            top: 8px;
        }

/* ===================================================
   CONTACT
=================================================== */

.contact-section {
    background-color: var(--wpa-light);
}

.contact-card {
    background: #ffffff;
    border-left: 4px solid var(--wpa-primary);
    border-radius: 6px;
}

.map-card {
    background: #ffffff;
    border-radius: 6px;
}
/* ===============================
   YÖNETİM KURULU FOTOĞRAFLARI
================================ */

.partner-photo {
    width: 200px;
    aspect-ratio: 1 / 1; /* Mobil bozulmayı engeller */
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--wpa-deep); /* eski --wpa-dark yerine */
}

    .partner-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
/* ===============================
   YÖNETİM KURULU – KURUMSAL STİL
================================ */

.partner-card {
    background: #ffffff;
    border-left: 4px solid var(--wpa-primary);
    padding: 30px 25px;
}

    .partner-card h5 {
        font-weight: 600;
        margin-bottom: 6px;
    }

        .partner-card h5 a {
            color: var(--wpa-deep);
            text-decoration: none;
        }

            .partner-card h5 a:hover {
                text-decoration: underline;
            }

    .partner-card p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 4px;
    }

    /* Hover zıplama kaldırıldı */
    .partner-card:hover {
        transform: none;
        box-shadow: none;
    }
.navbar {
    background-color: var(--primary-dark);
    padding-top: 18px;
    padding-bottom: 18px;
}

    .navbar .nav-link {
        font-weight: 500;
        letter-spacing: 0.5px;
    }

        .navbar .nav-link:hover {
            color: var(--primary-accent) !important;
        }
.navbar-contact {
    font-size: 0.9rem;
    opacity: 0.9;
}
.hero-section {
    position: relative;
    height: 75vh;
    background: url('/img/modern-office-dark.jpg') center center / cover no-repeat;
}

    .hero-section .overlay {
        position: absolute;
        inset: 0;
        background: rgba(11,31,58,0.85);
    }
.board-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .board-card img {
        width: 130px;
        height: 130px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .board-card:hover {
        transform: translateY(-6px);
    }
.service-block {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    height: 100%;
}

    .service-block h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }
.footer-section {
    background-color: #0B1F3A; /* Koyu lacivert */
    color: #ffffff;
}

    .footer-section h6 {
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .footer-section p {
        margin-bottom: 8px;
        color: #e0e6ef; /* Daha yumuşak beyaz */
    }

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #e0e6ef;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #C6A75E; /* Premium altın vurgu */
        }

.footer-section hr {
    border-color: rgba(255,255,255,0.2);
}
.footer-section {
    background-color: #0B1F3A;
    color: #e6edf5;
    font-size: 0.95rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-about {
    line-height: 1.6;
    color: #cdd6e3;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #cdd6e3;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-links a:hover {
            color: #C6A75E;
        }

.footer-map iframe {
    border-radius: 8px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
}

.footer-social a {
    color: #cdd6e3;
    font-size: 1.2rem;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: #C6A75E;
    }
.board-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .board-link:hover .board-card {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
.hero-section {
    background-color: #f4f6f9;
}

.hero-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0B1F3A;
}

.hero-subtitle {
    color: #5c6678;
    font-size: 1.05rem;
    line-height: 1.7;
}

.board-preview {
    background: #0B1F3A;
    padding: 35px 25px;
    border-radius: 16px;
}

.board-mini img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 3px solid #ffffff;
}

.board-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.board-link {
    text-decoration: none;
}

    .board-link:hover img {
        transform: scale(1.05);
        transition: 0.3s ease;
    }
.board-preview {
    background: #F5F8FC;
    padding: 35px 25px;
    border-radius: 16px;
}
.board-name {
    color: #0B1F3A;
}