/*--------------------------------------------------------------
  Proje      : Kırklareli Çilingirci
  Dosya      : style.css
  Versiyon   : 1.0.0
  Geliştirici: Karaca Teknoloji
  Website    : https://karacatechnology.com/
  Açıklama   : Bu dosya Karaca Teknoloji tarafından geliştirilmiştir.
               İzinsiz kopyalanamaz, çoğaltılamaz veya kullanılamaz.
--------------------------------------------------------------*/

/* ====
   GLOBAL STYLES - Temel ve Ortak Stiller
   ==== */

:root {
    --primary-color: #FF5722;
    --secondary-color: #FFA726;
    --dark-color: #1a1a1a;
    --light-gray: #f9f9f9;
    --text-color: #333;
    --border-radius: 15px;
    --transition: all 0.3s ease;

    /* Breakpoints */
    --mobile: 768px;
    --tablet: 992px;
    --desktop: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 0;
    overflow-x: hidden;
}

/* ====
   UTILITY CLASSES
   ==== */

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: var(--primary-color) !important;
}

.bg-light-gray {
    background: var(--light-gray) !important;
}

picture {
    display: block;
    width: 100%;
}

picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* Container Responsive Padding */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ====
   TOP BAR
   ==== */

.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .d-flex {
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: var(--transition);
    white-space: nowrap;
}

.top-bar a:first-child {
    margin-left: 0;
}

.top-bar a:hover {
    opacity: 0.8;
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }

    .top-bar a {
        margin-left: 8px;
        font-size: 0.75rem;
    }

    .top-bar i {
        font-size: 0.85rem;
    }
}

/* ====
   NAVBAR
   ==== */

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0px;
    color: var(--primary-color) !important;
    padding: 0;
    margin-right: 0;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 1.25rem;
    line-height: 1.1;
    display: block;
    color: var(--primary-color);
}

.brand-text small {
    font-size: 0.82rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.25);
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 250px;
    display: none;
}

.navbar .dropdown-menu.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.navbar .dropdown-item {
    padding: 10px 20px;
    color: #666;
    transition: var(--transition);
    font-size: 0.95rem;
}

.navbar .dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.navbar .dropdown-divider {
    margin: 8px 0;
    border-color: var(--light-gray);
}

.navbar .dropdown-toggle::after {
    margin-left: 5px;
    transition: var(--transition);
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Desktop - Hover to Open */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Tablet Navbar */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 5px;
        padding: 5px 0;
    }

    .navbar .dropdown-item {
        padding: 8px 30px;
        font-size: 0.9rem;
    }

    .navbar .dropdown-item:hover {
        padding-left: 35px;
    }

    .navbar-collapse {
        margin-top: 10px;
    }
}

/* Mobile Navbar */
@media (max-width: 576px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .brand-text small {
        font-size: 0.7rem;
    }

    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.95rem;
    }
}

/* ====
   BREADCRUMB
   ==== */

.breadcrumb-section {
    background: var(--light-gray);
    padding: 15px 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 10px 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }
}

/* ====
   BUTTONS - Ortak Buton Stilleri
   ==== */

.btn-call {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-call:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.btn-call i {
    font-size: 1.2rem;
}

.btn-phone {
    background: var(--primary-color);
}

.btn-phone:hover {
    background: #E64A19;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .btn-call {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .btn-call i {
        font-size: 1rem;
    }
}

/* ====
   SECTION TITLE - Ortak Başlık
   ==== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 991px) {
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }
}

/* ====
   AREA BADGE - Ortak Bölge Rozeti
   ==== */

.area-badge {
    display: inline-block;
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
    padding: 8px 20px;
    margin: 10px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.area-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    color: white;
}

.area-badge i {
    color: white;
    margin-right: 8px;
}

@media (max-width: 576px) {
    .area-badge {
        padding: 6px 15px;
        margin: 6px;
        font-size: 0.85rem;
    }
}

/* ====
   CONTACT SECTION - Ortak İletişim Bölümü
   ==== */

.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-section .lead {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.contact-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section .lead {
        font-size: 1.1rem;
    }

    .contact-icons {
        gap: 20px;
        margin-top: 30px;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

    .contact-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-section .lead {
        font-size: 1rem;
    }

    .contact-icons {
        gap: 15px;
        margin-top: 25px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }
}

/* ====
   FOOTER
   ==== */

footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links ul li i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.footer-services h5 {
    text-align: center;
}

.footer-services .row {
    justify-content: center;
}

.footer-services ul {
    padding-left: 0;
}

.footer-services ul li a {
    display: block;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.footer-heart {
    color: #ff7a00; /* turuncu */
}

.footer-bottom a:hover {
    color: var(--primary-color);
}


@media (max-width: 768px) {
    footer {
        padding: 40px 0 15px;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-links ul {
        padding-left: 0;
    }

    .footer-links h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-services ul li a {
        text-align: center;
        font-size: 0.90rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 15px;
        margin-top: 20px;
    }
}

/* ====
   BOTTOM MOBILE MENU
   ==== */

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
    border-top: 2px solid var(--secondary-color);
}

.bottom-menu-item {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.bottom-menu-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.bottom-menu-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.bottom-menu-item span {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .bottom-menu {
        display: flex;
    }
}

@media (max-width: 576px) {
    body {
        padding-bottom: 65px;
    }

    .bottom-menu-item {
        padding: 10px 5px;
    }

    .bottom-menu-item i {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }

    .bottom-menu-item span {
        font-size: 0.7rem;
    }
}

/* ====
   CONTENT SECTIONS
   ==== */

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul {
    margin-bottom: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}