/* ============================================
   UĞURCAN ELEKTRİK PANO - Bootstrap 5 + HTML5
   Professional Corporate Website
   ============================================ */

/* CSS Variables */
:root {
    --navy: #002E6D;
    --navy-dark: #001a3d;
    --navy-light: #e6f0ff;
    --navy-hover: #0047AB;
    --navy-50: #f0f5ff;
    --navy-100: #e6f0ff;
    --navy-400: #4d7bc9;
    --navy-500: #3366cc;
    --navy-600: #002E6D;
    --navy-700: #002E6D;
    --accent: #0047AB;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Utility Classes */
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.text-navy { color: var(--navy) !important; }
.text-navy-light { color: var(--navy-light) !important; }

.max-w-3xl { max-width: 800px; margin-left: auto; margin-right: auto; }

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-lg-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }






.breadcrumb {
    --bs-breadcrumb-divider-color: #ffffff; /* Ayırıcıları kırmızı yapar */
}






/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    font-size: 0.9rem;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.social-icons {
    border-left: 1px solid #dee2e6;
    padding-left: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.linkedin { background: #0A66C2; }
.social-icon.youtube { background: #FF0000; }
.social-icon.twitter { background: #000000; }
.social-icon.whatsapp { background: #25D366; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--navy-light);
    color: var(--navy) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.75rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--navy-light);
    color: var(--navy);
}

.dropdown-header {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-menu-large {
    min-width: 280px;
}

/* Hover Dropdown - Desktop Only */
.hover-dropdown {
    position: relative;
}

.hover-dropdown .dropdown-toggle {
    padding-bottom: 1rem !important;
}

.hover-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 0;
    min-width: 220px;
}

/* Desktop: Hover ile aç */
@media (min-width: 992px) {
    .hover-dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.2s ease;
    }
}

/* Services Dropdown - Compact Two Column */
.services-dropdown {
    position: relative;
}

.services-dropdown .dropdown-toggle {
    padding-bottom: 1rem !important;
}

.services-dropdown .services-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    margin-top: 0;
    min-width: 520px;
    padding: 1rem;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    background: white;
}

/* Desktop: Hover ile aç */
@media (min-width: 992px) {
    .services-dropdown:hover .services-menu {
        display: block;
        animation: fadeInDown 0.2s ease;
    }
}

.services-menu .services-column {
    min-width: 240px;
    padding: 0 0.5rem;
}

.services-menu .services-column:first-child {
    border-right: 1px solid #e9ecef;
}

.services-menu .dropdown-header {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-menu .dropdown-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu - Left Aligned */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 0.5rem !important;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu,
    .services-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        width: 100% !important;
        min-width: auto !important;
        background: var(--bg-light) !important;
        border-radius: 8px !important;
        margin-top: 0.5rem !important;
    }
    
    .dropdown-menu.show,
    .services-menu.show {
        display: block !important;
    }
    
    .services-menu .d-flex {
        flex-direction: column !important;
    }
    
    .services-menu .services-column {
        min-width: auto !important;
        width: 100% !important;
        padding: 0 !important;
        border-right: none !important;
    }
    
    .services-menu .services-column:first-child {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hover-dropdown:hover .dropdown-menu,
    .services-dropdown:hover .services-menu {
        display: none !important;
    }
}

.btn-navy {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--navy-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 0;
}

.hero-section .carousel-item {
    height: calc(100vh - 120px);
    min-height: 600px;
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 46, 109, 0.9) 0%, rgba(0, 46, 109, 0.1) 50%, rgba(0, 46, 109, 0.4) 100%);
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2rem 0;
}

.hero-section .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.hero-section .btn-outline-light {
    border-width: 2px;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

/* Stats Card */
.stats-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    max-width: 350px;
    margin-left: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Hero Features */
.hero-features {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 1rem;
}

.feature-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--navy);
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--navy);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.location-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.location-card h5 {
    color: var(--navy);
    font-size: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--navy-light);
}

.feature-item i {
    font-size: 1.1rem;
}

/* Stat Cards */
.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-light);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
    transition: var(--transition);
}

.stat-card:hover .stat-icon-box {
    background: var(--navy);
    color: white;
}

.stat-card .counter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badges {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-badges .badge {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    color: var(--navy);
    font-weight: 500;
    padding: 0.4rem 0.75rem;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Service Tabs */
.service-tabs {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-tabs .nav-tabs {
    border: none;
    background: var(--bg-light);
}

.service-tabs .nav-link {
    border: none;
    padding: 1.25rem 2rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 0;
    transition: var(--transition);
}

.service-tabs .nav-link:hover {
    background: #e9ecef;
    color: var(--text-dark);
}

    .service-tabs .nav-link.active {
        background: var(--navy);
        color: white !important;
    }

.service-tabs .tab-content {
    padding: 2rem;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.service-list-item:hover {
    background: var(--navy-light);
}

.service-list-item .icon {
    width: 48px;
    height: 48px;
    background: var(--navy-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-list-item:hover .icon {
    background: var(--navy);
    color: white;
}

.service-list-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.service-list-item:hover h5 {
    color: var(--navy);
}

.service-list-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-image {
    position: relative;
}

.why-image img {
    border-radius: var(--border-radius-lg);
}

.satisfaction-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.satisfaction-card .icon {
    width: 56px;
    height: 56px;
    background: #d4edda;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #28a745;
}

.satisfaction-card .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.satisfaction-card .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.satisfaction-card .progress {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--navy-light);
    transform: translateY(-3px);
}

.advantage-card .icon {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.advantage-card:hover .icon {
    background: var(--navy);
    color: white;
}

.advantage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.advantage-card:hover h4 {
    color: var(--navy);
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Bar */
.stats-bar {
    background: var(--navy);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box .icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.stat-box .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.sector-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.sector-badge:hover {
    background: var(--navy);
    color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-light);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.contact-info-card:hover .icon {
    background: var(--navy);
    color: white;
}

.contact-info-card .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-card .value {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-info-card a.value:hover {
    color: var(--navy);
}

.contact-info-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form-card .input-group-text {
    background: var(--bg-light);
    border-color: #dee2e6;
    color: var(--text-muted);
}

.contact-form-card .form-control {
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 46, 109, 0.15);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #28a745;
    margin: 0 auto;
}

/* Map Card */
.map-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-card iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-overlay .icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.map-overlay h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.quick-response-card {
    background: var(--navy);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.quick-response-card .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.quick-response-card h5 {
    font-size: 1.1rem;
}

.quick-response-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   FOOTER v2 - PROFESSIONAL
   ============================================ */
.footer-professional {
    background: var(--navy-dark);
    color: white;
}

/* Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-hover) 100%);
    padding: 3rem 0;
}

.footer-newsletter h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.newsletter-form .input-group-text {
    background: white;
    border: none;
    color: var(--text-muted);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.25rem;
}

.btn-navy-dark {
    background: var(--navy-dark);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-navy-dark:hover {
    background: #000d1f;
    color: white;
}

/* Main Footer */
.footer-main {
    padding: 4rem 0;
}

.footer-logo {
    height: 56px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}

.footer-contact .contact-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    color: white;
    font-weight: 500;
}

.footer-contact .contact-item a:hover {
    color: var(--navy-light);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social .social-link.facebook { background: #1877F2; }
.footer-social .social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social .social-link.linkedin { background: #0A66C2; }
.footer-social .social-link.twitter { background: #000000; }
.footer-social .social-link.youtube { background: #FF0000; }
.footer-social .social-link.whatsapp { background: #25D366; }

.footer-social .social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-main h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-main h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Services Two Column */
.footer-service-title {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-services-list {
    font-size: 0.85rem;
}

.footer-services-list li {
    margin-bottom: 0.5rem;
}

.footer-services-list a {
    font-size: 0.85rem;
}

.working-hours .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.working-hours .day {
    color: rgba(255,255,255,0.7);
}

.working-hours .time {
    color: white;
    font-weight: 500;
}

.working-hours .time.closed {
    color: #dc3545;
}

.certificates h5 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.cert-badge {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer Contact List */
.footer-contact-list {
    margin-top: 1rem;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-list-item:last-child {
    border-bottom: none;
}

.contact-list-item i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list-item a,
.contact-list-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-list-item a:hover {
    color: white;
}

/* Footer Social Large */
.footer-social-large {
    display: flex;
    gap: 0.75rem;
}

.footer-social-large .social-link {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-large .social-link.facebook { background: #1877F2; }
.footer-social-large .social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-large .social-link.linkedin { background: #0A66C2; }
.footer-social-large .social-link.twitter { background: #000000; }
.footer-social-large .social-link.youtube { background: #FF0000; }
.footer-social-large .social-link.whatsapp { background: #25D366; }

.footer-social-large .social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--navy-hover);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section .carousel-item {
        height: auto;
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
    
    .hero-features {
        margin-top: 0;
        padding: 2rem 1rem;
    }
    
    .experience-badge {
        top: -10px;
        right: -10px;
        padding: 1rem;
    }
    
    .experience-badge .number {
        font-size: 1.75rem;
    }
    
    .satisfaction-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .stats-bar {
        padding: 2rem 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .top-bar .d-flex.gap-4 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-tabs .nav-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-newsletter h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-section .carousel-item {
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .stat-box .number {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS-like animations on scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

/* ============================================
   HEADER V2 - VERSION 2 MENU
   ============================================ */

/* Header Spacer */
.header-spacer {
    height: 120px;
}

/* Top Bar v2 */
.top-bar-v2 {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--navy);
}

.icon-wrap {
    width: 32px;
    height: 32px;
    background: var(--navy-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.8rem;
}

.tagline {
    color: #888;
    font-size: 0.85rem;
}

.social-wrap {
    border-left: 1px solid #e0e0e0;
    padding-left: 1rem;
}

.social-icon-v2 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-icon-v2:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-icon-v2.facebook { background: #1877F2; }
.social-icon-v2.instagram { background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737); }
.social-icon-v2.linkedin { background: #0A66C2; }
.social-icon-v2.youtube { background: #FF0000; }
.social-icon-v2.twitter { background: #000000; }
.social-icon-v2.whatsapp { background: #25D366; }

/* Navbar v2 */
.navbar-v2 {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-link img {
    height: 64px;
    width: auto;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item-v2 {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item-v2:hover {
    color: var(--navy);
    background: var(--navy-50);
}

.dropdown-toggle-v2 {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-toggle-v2 i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-v2:hover .dropdown-toggle-v2 i {
    transform: rotate(180deg);
}

/* Dropdown v2 */
.dropdown-v2 {
    position: relative;
}

.dropdown-menu-v2 {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #f0f0f0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.dropdown-v2:hover .dropdown-menu-v2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-v2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #666;
    transition: var(--transition);
}

.dropdown-item-v2:hover {
    color: var(--navy);
    background: var(--navy-50);
}

.dropdown-item-v2 .dot {
    width: 6px;
    height: 6px;
    background: var(--navy-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.dropdown-item-v2:hover .dot {
    background: var(--navy);
}

/* Mega Dropdown v2 */
.mega-dropdown-v2 {
    position: static;
}

.mega-menu-v2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    margin-top: 0.5rem;
    width: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    border: 1px solid #f0f0f0;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-dropdown-v2:hover .mega-menu-v2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mega-col {
    padding-right: 1rem;
    border-right: 1px solid #f0f0f0;
}

.mega-col:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mega-title a {
    color: var(--navy);
}

.dot-lg {
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 0.4rem;
}

.mega-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.mega-list a:hover {
    color: var(--navy);
}

.dot-sm {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    transition: var(--transition);
}

.mega-list a:hover .dot-sm {
    background: var(--navy);
}

.mega-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.mega-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.mega-link:hover {
    color: var(--navy-hover);
}

/* CTA Button */
.btn-cta {
    padding: 0.6rem 1.5rem;
    background: var(--navy);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--navy-hover);
    box-shadow: 0 4px 15px rgba(0,46,109,0.3);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--navy-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--navy-100);
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-inner {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 1rem;
    margin-top: 0.75rem;
}

.mobile-item {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    border-radius: 10px;
    transition: var(--transition);
    text-align: left;
    background: none;
    border: none;
}

.mobile-item:hover {
    color: var(--navy);
    background: var(--navy-50);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 1rem;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-subitem {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #666;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-subitem:hover {
    color: var(--navy);
    background: var(--navy-50);
}

.mobile-submenu-section {
    margin-bottom: 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--navy-200);
}

.mobile-submenu-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.btn-mobile-cta {
    display: block;
    width: 100%;
    padding: 0.875rem;
    margin-top: 0.75rem;
    background: var(--navy);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-mobile-cta:hover {
    background: var(--navy-hover);
}

/* Mobile Responsive for Header v2 */
@media (max-width: 991.98px) {
    .header-spacer {
        height: 110px;
    }
    
    .mega-menu-v2 {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.5rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .mega-dropdown-v2:hover .mega-menu-v2 {
        transform: none;
        display: none;
    }
    
    .dropdown-menu-v2 {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1rem;
    }
    
    .dropdown-v2:hover .dropdown-menu-v2 {
        transform: none;
        display: none;
    }
}

/* ============================================
   KURUMSAL PAGE STYLES
   ============================================ */
.corporate-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.corporate-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--navy-light);
}

.corporate-image {
    height: 180px;
    overflow: hidden;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.corporate-card:hover .corporate-image img {
    transform: scale(1.05);
}

.corporate-body {
    padding: 1.5rem;
}

.corporate-card h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.corporate-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.corporate-icon {
    width: 64px;
    height: 64px;
    background: var(--navy-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.corporate-card:hover .corporate-icon {
    background: var(--navy);
    color: white;
}

.corporate-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.corporate-card:hover .corporate-link {
    gap: 0.75rem;
}

/* CTA Box */
.cta-box {
    background: var(--navy);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
}

.cta-box h2 {
    color: white;
}

.cta-box .lead {
    color: rgba(255,255,255,0.8);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: white;
}

.cta-box .btn-outline-navy {
    border-color: white;
    color: white;
}

.cta-box .btn-outline-navy:hover {
    background: white;
    color: var(--navy);
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */
.blog-detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-meta {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    background: var(--navy-light);
    border-left: 4px solid var(--navy);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.blog-content blockquote footer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.alert-navy {
    background: var(--navy-light);
    border: 1px solid var(--navy);
    color: var(--navy);
}

/* Blog Tags */
.blog-tags .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: var(--transition);
}

.blog-tags .badge:hover {
    background: var(--navy) !important;
    color: white !important;
}

/* Blog Share Buttons */
.blog-share .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-facebook { background: #1877F2; color: white; }
.btn-twitter { background: #000000; color: white; }
.btn-linkedin { background: #0A66C2; color: white; }
.btn-whatsapp { background: #25D366; color: white; }

.blog-share .btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Author Box */
.author-box {
    border: 1px solid #e9ecef;
}

.author-avatar img {
    object-fit: contain;
    background: white;
    padding: 5px;
    border: 2px solid var(--navy-light);
}

/* Related Posts */
.related-post-card {
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-card h5 {
    color: var(--text-dark);
    transition: var(--transition);
}

.related-post-card:hover h5 {
    color: var(--navy);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--navy-light);
    color: var(--navy);
}

/* Search Form */
.search-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-form .form-control {
    border: 1px solid #e9ecef;
    padding: 0.75rem 1rem;
}

.search-form .form-control:focus {
    border-color: var(--navy);
    box-shadow: none;
}

/* Categories List */
.list-group-item {
    border: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item a {
    transition: var(--transition);
}

.list-group-item a:hover {
    color: var(--navy);
}

/* Recent Posts */
.recent-post-item {
    transition: var(--transition);
}

.recent-post-item:hover h6 {
    color: var(--navy);
}

.recent-post-item img {
    object-fit: cover;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud .badge {
    padding: 0.5rem 0.875rem;
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
}

.tags-cloud .badge:hover {
    background: var(--navy) !important;
    color: white !important;
}

/* CTA Widget */
.cta-widget {
    background: var(--navy) !important;
}

.cta-widget i {
    color: white;
}

/* Active Nav Item */
.nav-item-v2.active,
.mobile-item.active {
    color: var(--navy);
    background: var(--navy-light);
}

.mobile-submenu .mobile-subitem.active {
    color: var(--navy);
    font-weight: 500;
}





/* arama butonları*/
/* ============================================
   FIXED CONTACT BUTTONS - Malatya Style
   ============================================ */
.fixed-contact-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .fixed-contact-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        color: white;
    }

/* Phone Button - Left Side */
.fixed-phone-btn {
    left: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50px;
    padding: 12px 20px;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    animation: phone-shake 3s ease-in-out infinite;
}

    .fixed-phone-btn i {
        font-size: 1.25rem;
        animation: phone-ring 1.5s ease-in-out infinite;
    }

@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@keyframes phone-shake {
    0%, 90%, 100% {
        transform: translateX(0);
    }

    92% {
        transform: translateX(-3px);
    }

    94% {
        transform: translateX(3px);
    }

    96% {
        transform: translateX(-3px);
    }

    98% {
        transform: translateX(3px);
    }
}

/* WhatsApp Button - Right Side */
.fixed-whatsapp-btn {
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.75rem;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Fixed Buttons */
@media (max-width: 575.98px) {
    .fixed-phone-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        left: 10px;
        bottom: 15px;
        border-radius: 50%;
    }

        .fixed-phone-btn span {
            display: none;
        }

        .fixed-phone-btn i {
            font-size: 1.5rem;
            margin: 0;
        }

    .fixed-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 10px;
        bottom: 15px;
    }
}



/* ============================================
   MOBILE OVERFLOW FIX
   ============================================ */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Row margin fix for mobile */
.row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 575.98px) {
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}