/* Global overflow fix */
html,body{overflow-x:hidden;max-width:100%;margin:0;padding:0;}
*{margin:0;padding:0;box-sizing:border-box;}
section,div,main{margin:0;padding:0;}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Nunito:wght@400;500;600;700&display=swap');

/* ---- Üst Bilgi Çubuğu ---- */
.top-bar {
    background-color: #1a3a45;
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    padding: 8px 0;
    font-family: 'Nunito', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.25s ease;
    font-weight: 500;
}

.top-bar-left a:hover {
    color: #f0b400;
}

.top-bar-left a i {
    font-size: 0.9rem;
    color: #f0b400;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.25s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.top-bar-right a:hover {
    color: white;
    background: rgba(240, 180, 0, 0.3);
    transform: translateY(-1px);
}

.top-bar-right .whatsapp-btn {
    background: #25D366;
    color: white !important;
    padding: 5px 14px;
    border-radius: 20px;
    width: auto;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.top-bar-right .whatsapp-btn:hover {
    background: #20ba5a !important;
    transform: translateY(-1px);
    color: white !important;
}

.top-bar-right .whatsapp-btn i {
    font-size: 1rem;
}

/* ---- Ana Header ---- */
.site-header {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.site-header.scrolled {
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* ---- Logo ---- */
.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.site-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a6b7a;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.site-logo .logo-sub {
    font-size: 0.72rem;
    color: #888;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.site-logo:hover .logo-main {
    color: #155868;
}

/* ---- Ana Navigasyon ---- */
.site-nav {
    display: flex;
    align-items: center;
}

.site-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2px;
}

.site-nav > ul > li {
    position: relative;
}

.site-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    color: #2d2d2d;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.site-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 28px);
    height: 2px;
    background: #f0b400;
    border-radius: 2px;
    transition: transform 0.25s ease;
    transform-origin: center;
}

.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active {
    color: #1a6b7a;
    background: rgba(26, 107, 122, 0.06);
}

.site-nav > ul > li > a .chevron {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.site-nav > ul > li:hover > a .chevron {
    transform: rotate(180deg);
}

/* ---- Dropdown Menü ---- */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    list-style: none;
    padding: 8px;
    z-index: 200;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 18px;
    width: 10px;
    height: 10px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}

.site-nav > ul > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: #444;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.nav-dropdown li a i {
    width: 18px;
    color: #1a6b7a;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.nav-dropdown li a:hover {
    background: rgba(26, 107, 122, 0.08);
    color: #1a6b7a;
    padding-left: 18px;
}

/* ---- Hamburger ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(26, 107, 122, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: background 0.2s ease;
    padding: 0;
}

.nav-hamburger:hover {
    background: rgba(26, 107, 122, 0.15);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a6b7a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 992px) {
    .site-header .container {
        height: 65px;
    }

    .site-logo .logo-main {
        font-size: 1.3rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.12);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .site-nav.mobile-open {
        right: 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
        backdrop-filter: blur(2px);
    }

    .nav-overlay.active {
        display: block;
    }

    .site-nav > ul {
        flex-direction: column;
        width: 100%;
        gap: 2px;
    }

    .site-nav > ul > li {
        width: 100%;
    }

    .site-nav > ul > li > a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
        width: 100%;
        justify-content: space-between;
    }

    .site-nav > ul > li > a::after {
        display: none;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-left: 3px solid #1a6b7a;
        margin-left: 16px;
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 4px;
        background: rgba(26, 107, 122, 0.03);
        display: none;
    }

    .nav-dropdown::before {
        display: none;
    }

    .site-nav > ul > li.mob-open .nav-dropdown {
        display: block;
    }

    .site-nav > ul > li.mob-open > a .chevron {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .top-bar-left a:not(:first-child) {
        display: none;
    }

    .top-bar .container {
        justify-content: space-between;
    }
    
    .site-logo img {
        height: 38px !important;
        width: 38px !important;
    }

    .site-nav {
        width: min(300px, 88vw);
    }
}


.top-nav,
.main-header {
    display: none !important;
}
/* ── Navbar Yeni Logo ── */
.site-logo-new {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px 0;
}
.navbar-logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}
@media (max-width: 992px) {
    .navbar-logo-img { height: 50px; max-width: 180px; }
}
@media (max-width: 576px) {
    .navbar-logo-img { height: 42px; max-width: 150px; }
}

/* === FOOTER === */
.site-footer, .main-footer {
    background: #1e2a2f;
    color: rgba(255,255,255,.6);
    padding: 30px 0 0;
    margin-top: 0;
}
.site-footer .footer-grid, .main-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-footer .footer-col h3, .main-footer .footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.site-footer .footer-col p, .main-footer .footer-col p {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.site-footer .footer-social, .main-footer .footer-social {
    display: flex;
    gap: 10px;
}
.site-footer .footer-social a, .main-footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all .2s;
    text-decoration: none;
}
.site-footer .footer-social a:hover, .main-footer .footer-social a:hover {
    background: #c9a84c;
    color: #fff;
}
.site-footer .footer-col ul, .main-footer .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer .footer-col ul li, .main-footer .footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .84rem;
    line-height: 1.5;
}
.site-footer .footer-col ul a, .main-footer .footer-col ul a {
    color: rgba(255,255,255,.6);
    transition: color .2s;
    text-decoration: none;
}
.site-footer .footer-col ul a:hover, .main-footer .footer-col ul a:hover {
    color: #f0b400;
}
.site-footer .footer-col ul li i, .main-footer .footer-col ul li i {
    color: #c9a84c;
    font-size: .7rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.site-footer .footer-bottom, .main-footer .footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: .76rem;
    color: rgba(255,255,255,.28);
}

@media (max-width: 1024px) {
    .site-footer .footer-grid, .main-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .site-footer .footer-grid, .main-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Contact list in footer */
.site-footer .contact-list, .main-footer .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer .contact-list li, .main-footer .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .84rem;
    line-height: 1.5;
    color: rgba(255,255,255,.6);
}
.site-footer .contact-list li i, .main-footer .contact-list li i {
    color: #c9a84c;
    font-size: .8rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.site-footer .contact-list a, .main-footer .contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
}
.site-footer .contact-list a:hover, .main-footer .contact-list a:hover {
    color: #f0b400;
}

/* Ana sayfa footer stilleri */
.site-footer .fb-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 13px;
}
.site-footer .fb-desc {
    font-size: .865rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.site-footer .footer-socials {
    display: flex;
    gap: 9px;
}
.site-footer .footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    text-decoration: none;
    transition: all .2s ease;
}
.site-footer .footer-socials a:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.site-footer .fc h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 16px;
}
.site-footer .fc ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.site-footer .fc ul a {
    font-size: .86rem;
    color: rgba(255,255,255,.62);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s ease;
}
.site-footer .fc ul a:hover {
    color: #f0b400;
}
.site-footer .fc ul a i {
    font-size: .7rem;
    color: #c9a84c;
}
.site-footer .fci-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.site-footer .fci {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .86rem;
}
.site-footer .fci i {
    color: #c9a84c;
    margin-top: 2px;
    font-size: .82rem;
    flex-shrink: 0;
}
