/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

section {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.5px;
}

.container {
    max-width: 1280px;
}

/* ========================================
   TOP BAR
======================================== */

.topbar {
    background: #082848;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 0;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.topbar-left,
.topbar-right {
    display: flex;
    gap: 25px;
}

/* ========================================
   NAVBAR
======================================== */

.navbar {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.site-logo {
    height: 60px;
    width: auto;
}

.nav-link {
    color: #1f2937 !important;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    transition: .3s;
}

    .nav-link:hover {
        color: #ff6b00 !important;
    }

.btn-teklif {
    margin-left: 25px;
    background: #ff6b00;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .btn-teklif:hover {
        background: #e85f00;
        color: white;
    }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    padding: 12px;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
}

    .dropdown-item:hover {
        background: #f1f5f9;
        color: #12385b;
    }

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-weight: 700;
}

/* ========================================
   HERO
======================================== */

.hero-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#f8fafc,#ffffff);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #12385b;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

.hero-badge {
    font-size: 15px;
    font-weight: 600;
    color: #12385b;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

/* ========================================
   BUTTONS
======================================== */

.btn-call {
    display: inline-block;
    background: #12385b;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    margin-right: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-call:hover {
        background: #0d2b45;
        color: white;
    }

.btn-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .btn-wa:hover {
        background: #20b858;
        color: white;
    }

/* ========================================
   STATS
======================================== */

.stats-section {
    padding: 20px 0 80px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.03);
    height: 100%;
}

    .stat-box h3 {
        color: #12385b;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-box p {
        color: #64748b;
        font-size: 14px;
        margin: 0;
    }

/* ========================================
   SECTION TITLES
======================================== */

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #12385b;
    margin-bottom: 45px;
}

/* ========================================
   SERVICES
======================================== */

.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
        color: inherit;
    }

    .service-card h4 {
        font-size: 20px;
        font-weight: 700;
        color: #12385b;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

/* ========================================
   WHY US
======================================== */

.why-section {
    padding: 80px 0;
}

.why-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
}

    .why-box h5 {
        font-size: 18px;
        font-weight: 700;
        color: #12385b;
        margin-bottom: 15px;
    }

    .why-box p {
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

/* ========================================
   QUOTE
======================================== */

.quote-section {
    padding: 80px 0;
    background: #f8fafc;
}

.quote-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

    .quote-box h2 {
        color: #12385b;
        margin-bottom: 20px;
    }

.quote-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ========================================
   CITIES
======================================== */

.cities-section {
    padding: 80px 0;
}

.city-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #12385b;
    transition: .3s;
}

    .city-card:hover {
        transform: translateY(-3px);
        border-color: #12385b;
        box-shadow: 0 10px 25px rgba(0,0,0,.05);
        color: #12385b;
    }

/* ========================================
   MAP
======================================== */

.map-section {
    padding: 80px 0;
}

.map-box {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

    .map-box iframe {
        width: 100%;
        height: 450px;
        border: 0;
    }

/* ========================================
   CONTACT INFO
======================================== */

.contact-info {
    background: #12385b;
    color: white;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}

    .contact-info h3 {
        margin-bottom: 25px;
    }

    .contact-info p {
        margin-bottom: 15px;
        line-height: 1.8;
    }

/* ========================================
   SEO CONTENT
======================================== */

.seo-content {
    padding: 80px 0;
}

    .seo-content h2 {
        font-size: 30px;
        font-weight: 700;
        color: #12385b;
        margin-bottom: 25px;
    }

    .seo-content p {
        font-size: 16px;
        color: #475569;
        line-height: 1.9;
        margin-bottom: 20px;
    }

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #082848;
    color: white;
    padding: 20px 0 20px;
}

    .footer h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer p,
    .footer li {
        font-size: 15px;
        color: rgba(255,255,255,.85);
        line-height: 1.9;
        list-style: none;
    }

    .footer ul {
        padding-left: 0;
    }

    .footer hr {
        border-color: rgba(255,255,255,.15);
        margin: 40px 0 20px;
    }

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,.70);
}

.footer a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: .3s;
}

    .footer a:hover {
        color: #ffffff;
        padding-left: 3px;
    }

.footer ul {
    margin: 0;
    padding: 0;
}

.footer li {
    margin-bottom: 10px;
}
/* ========================================
   WHATSAPP
======================================== */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

    .whatsapp-btn:hover {
        color: white;
        transform: translateY(-2px);
    }

/* ========================================
   MOBILE
======================================== */

@media (max-width:991px) {

    .topbar {
        display: none;
    }

    .site-logo {
        height: 45px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .why-box h5 {
        font-size: 17px;
    }

    .quote-box {
        padding: 30px;
    }
}

@media (max-width:576px) {

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-box h3 {
        font-size: 30px;
    }
}

/* KURUMSAL SAYFALAR */

.page-header {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

    .page-header h1 {
        font-size: 42px;
        font-weight: 700;
        color: #12385b;
        margin-bottom: 15px;
    }

    .page-header p {
        max-width: 700px;
        margin: auto;
        color: #64748b;
        line-height: 1.8;
    }

.page-content {
    padding: 80px 0;
}

    .page-content h2 {
        color: #12385b;
        margin-bottom: 20px;
    }

    .page-content p {
        color: #475569;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .page-content ul li {
        margin-bottom: 12px;
    }

/* KURUMSAL MENÜ */

.kurumsal-menu {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 110px;
}

    .kurumsal-menu h4 {
        color: #12385b;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 700;
    }

    .kurumsal-menu a {
        display: block;
        padding: 12px 15px;
        margin-bottom: 8px;
        text-decoration: none;
        color: #334155;
        border-radius: 8px;
        transition: .3s;
    }

        .kurumsal-menu a:hover {
            background: #12385b;
            color: white;
        }

.why-box {
    overflow-wrap: break-word;
}
.footer {
    clear: both;
}

.kurumsal-menu a.active {
    background: #fff7ed;
    color: #ff6b00;
    font-weight: 600;
    border-left: 4px solid #ff6b00;
}

.breadcrumb-nav {
    font-size: 14px;
    margin-top: 15px;
    color: #64748b;
}

    .breadcrumb-nav a {
        color: #ff6b00;
        text-decoration: none;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

.breadcrumb-nav {
    margin-top: 12px;
    font-size: 14px;
    color: #94a3b8;
}

    .breadcrumb-nav a {
        color: #ff6b00;
        text-decoration: none;
    }

    .breadcrumb-nav span {
        margin: 0 6px;
    }

/* ========================================
   MOBILE HEADER IMPROVEMENTS
======================================== */

@media (max-width: 991px) {

    .navbar {
        padding: 10px 0;
    }

    .site-logo {
        height: 50px;
        max-width: 220px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0 !important;
        margin-left: 0;
    }

    .btn-teklif {
        display: block;
        width: 100%;
        text-align: center;
        margin: 15px 0 0;
    }

    .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown-item {
        padding: 10px 0;
    }

    .page-header {
        padding: 50px 0;
    }

        .page-header h1 {
            font-size: 32px;
            line-height: 1.2;
        }

    .page-content {
        padding: 50px 0;
    }

    .quote-box {
        padding: 25px;
    }

    .btn-call,
    .btn-wa {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}
@media (max-width:991px) {

    .navbar-collapse {
        padding-top: 20px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        padding: 12px 0 !important;
        font-size: 18px;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }

    .btn-teklif {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .site-logo {
        max-height: 55px;
    }
}
/* OFFCANVAS MENU */

.offcanvas {
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas .nav-link {
    font-size: 18px;
    padding: 12px 0;
    color: #222;
    font-weight: 500;
}

    .offcanvas .nav-link:hover {
        color: #d71920;
    }

@media (min-width:992px) {

    .navbar-toggler {
        display: none;
    }
}
.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
}