/* ==========================================
   KAĞITHANE KOMBİ SERVİSİ - GENEL AYARLAR
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   TOP BAR (ÜST BİLGİ ALANI)
========================================== */
.top-bar {
    background-color: #0b2545; /* Kurumsal Lacivert */
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-contact span {
    margin-right: 20px;
}

.top-contact a {
    color: #fff;
    font-weight: 600;
}

.top-contact a:hover {
    color: #ff6b00;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: #fff;
}

/* ==========================================
   HEADER & MENÜ
========================================== */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h2 {
    color: #0b2545;
    font-size: 24px;
    font-weight: 700;
}

.logo h2 span {
    color: #ff6b00; /* Isı/Kombi Turuncusu */
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #ff6b00;
}

/* ==========================================
   HERO (ANA EKRAN)
========================================== */
.hero {
    background: linear-gradient(rgba(11, 37, 69, 0.8), rgba(11, 37, 69, 0.8)), url('hero-bg.jpg') center/cover;
    /* Not: hero-bg.jpg adında bir kombi resmi eklersen harika durur, şimdilik lacivert gradient çalışır */
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #ff6b00;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* ==========================================
   HİZMETLER BÖLÜMÜ
========================================== */
.services {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #0b2545;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #ff6b00;
}

.service-box i {
    font-size: 50px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.service-box h3 {
    color: #0b2545;
    margin-bottom: 15px;
    font-size: 22px;
}

/* ==========================================
   İLETİŞİM SAYFASI & FORM
========================================== */
.contact-page {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-box {
    background-color: #0b2545;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-box h3 {
    color: #ff6b00;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: #0b2545;
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

/* ==========================================
   FOOTER
========================================== */
.main-footer {
    background-color: #0b2545;
    color: #fff;
    padding: 60px 0 20px;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ff6b00;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ddd;
}

.footer-col ul li a:hover {
    color: #ff6b00;
}

.footer-col ul li i {
    color: #ff6b00;
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #aaa;
    font-size: 14px;
}

/* ==========================================
   SABİT WHATSAPP BUTONU
========================================== */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.float-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

.my-float {
    margin-top: 16px;
}

/* ==========================================
   MOBİL UYUM (RESPONSIVE MEDIA QUERIES)
========================================== */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .top-contact span {
        display: block;
        margin: 5px 0;
    }

    .main-header .container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .float-wa {
        bottom: 20px;
        right: 20px;
    }
}
/* ==========================================
   ALT SAYFALAR (HİZMET DETAY TASARIMI)
========================================== */
.page-header {
    background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.9)), url('header-bg.jpg') center/cover;
    background-color: #0b2545; /* Resim yoksa lacivert arkaplan yedekte kalsın */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    color: #ff6b00;
    margin-bottom: 10px;
}

.service-detail {
    padding-bottom: 80px;
}

.service-detail-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sol İçerik Alanı */
.service-content {
    flex: 2; /* İçerik alanı daha geniş */
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-content .service-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-content h2 {
    color: #0b2545;
    margin-bottom: 20px;
    font-size: 28px;
}

.service-content h3 {
    color: #ff6b00;
    margin: 30px 0 15px;
    font-size: 22px;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.service-content ul {
    margin-bottom: 30px;
    padding-left: 10px;
}

.service-content ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

.service-content ul li i {
    color: #25D366;
    font-size: 20px;
    margin-right: 15px;
}

/* Sağ Sidebar (Yan Menü) */
.service-sidebar {
    flex: 1; /* Sidebar daha dar */
    position: sticky;
    top: 100px; /* Aşağı kaydırırken menü ekranda yapışık kalır */
}

.sidebar-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-box h3 {
    color: #0b2545;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    font-size: 20px;
}

.btn-sidebar {
    display: block;
    text-align: center;
    background: #0b2545;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.btn-sidebar i {
    margin-right: 8px;
}

.btn-sidebar:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-2px);
}

.wa-btn {
    background: #25D366;
}

.wa-btn:hover {
    background: #128C7E;
}

.widget-services ul li {
    border-bottom: 1px solid #f0f0f0;
}

.widget-services ul li:last-child {
    border-bottom: none;
}

.widget-services ul li a {
    display: block;
    padding: 15px 0;
    color: #444;
    font-weight: 500;
    transition: all 0.3s;
}

.widget-services ul li a:hover,
.widget-services ul li a.active {
    color: #ff6b00;
    padding-left: 10px; /* Üzerine gelince hafif sağa kayar */
}

/* Hizmet Detay Mobil Uyum */
@media (max-width: 992px) {
    .service-detail-wrapper {
        flex-direction: column;
    }
    .service-sidebar {
        width: 100%;
        position: static; /* Mobilde yapışkan özelliği kapatıyoruz */
    }
}
/* --- HİZMET SAYFALARI TASARIMI --- */
.service-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content {
    flex: 2;
    min-width: 60%;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-content h2, .service-content h3 {
    color: #0b2545;
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-content ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-content ul li::before {
    content: '\f058'; /* FontAwesome Check İkonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff6b00;
    position: absolute;
    left: 0;
    top: 2px;
}

.service-sidebar {
    flex: 1;
    min-width: 30%;
}

.sidebar-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-top: 4px solid #ff6b00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #0b2545;
}