/*
Theme Name: Mevsim Kuru Temizleme
Theme URI: https://mevsimkurutemizleme.com
Author: Mevsim
Author URI: https://mevsimkurutemizleme.com
Description: Profesyonel kuru temizleme işletmeleri için modern, Elementor uyumlu ve SEO optimize edilmiş WordPress teması. Slider, animasyonlar ve kolay düzenleme özellikleriyle donatılmıştır.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mevsim-kuru-temizleme
Tags: business, corporate, cleaning, elementor, slider, responsive, seo-ready, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

Mevsim Kuru Temizleme, kurumsal kuru temizleme hizmetleri için özel tasarlanmış modern bir WordPress temasıdır.
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #000000;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { 
    font-size: 2rem;
    color: #000000;
}
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.site-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    position: relative;
    text-transform: capitalize;
}

.site-logo a:hover {
    color: var(--secondary-color);
}

.site-logo span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 1rem;
    position: relative;
}

.main-navigation a {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    display: block;
    transition: var(--transition);
    border-radius: 8px;
    position: relative;
}

.main-navigation a:hover {
    color: #2d3748;
    background: rgba(45,55,72,0.05);
}

.main-navigation .current-menu-item a {
    color: #1a202c;
    background: rgba(26,32,44,0.1);
    font-weight: 600;
}

.main-navigation .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    margin: 0;
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.main-navigation .sub-menu a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.main-navigation .sub-menu a::before {
    content: '📍';
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(var(--primary-color), 0.05);
        padding: 0;
        margin-left: 1rem;
        display: none;
    }
    
    .main-navigation .sub-menu a {
        margin: 0;
        border-radius: 0;
        padding: 0.75rem 1rem;
        border-left: 3px solid transparent;
        color: #000000 !important;
    }
    
    .main-navigation .sub-menu a:hover {
        border-left-color: var(--primary-color);
        background: rgba(var(--primary-color), 0.1);
        color: var(--primary-color) !important;
        transform: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #ffffff;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1000;
    order: 2;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #000000;
    margin: 4px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.header-phone:hover {
    color: #2d3748;
    background: rgba(45,55,72,0.05);
}

.header-phone i {
    color: #6b7280;
    font-size: 1.1rem;
}

.header-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    color: #ffffff !important;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    animation: slideInDown 1s ease;
    letter-spacing: -1px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
    animation: slideInUp 1s ease;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37,99,235,0.80) 0%, rgba(59,130,246,0.70) 50%, rgba(245,158,11,0.60) 100%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: #ffffff;
    width: 28px;
    border-radius: 5px;
    transform: scale(1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff !important;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #ffffff !important;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: #000000 !important;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.service-card h3 {
    color: #000000 !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #000000 !important;
}

.about-text p {
    color: #000000 !important;
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #000000 !important;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 25%,
        rgba(99, 102, 241, 0.95) 75%,
        rgba(139, 92, 246, 0.9) 100%),
        url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?w=1920&h=1080&fit=crop&q=80') center/cover;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature i {
    font-size: 1rem;
    color: var(--accent-color);
}

.cta-feature span {
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.btn-cta span {
    font-size: 1rem;
    font-weight: 700;
}

.btn-cta small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map-section {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: #1f2937 !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.info-content p {
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary-color);
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .map-embed iframe {
        height: 300px;
    }
}

/* ==========================================================================
   Regional Pages Styles
   ========================================================================== */

.region-page {
    padding: 2rem 0;
}

/* Region Hero Section */
.region-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.region-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.region-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.region-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.region-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Region Services */
.region-services {
    padding: 4rem 0;
    text-align: center;
}

.region-services h2 {
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--text-dark) !important;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Coverage Area */
.coverage-area {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-radius: 16px;
    margin: 4rem 0;
}

.coverage-area h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 3rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.neighborhood-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.neighborhood-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.neighborhood-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.neighborhood-item h4 {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.neighborhood-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

.why-content h2 {
    font-size: 2.25rem;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark) !important;
}

.advantages-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.why-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Card */
.region-contact {
    padding: 4rem 0;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.contact-card h2 {
    text-align: center;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark) !important;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Region CTA */
.region-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
}

.region-cta h2 {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.region-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Premium Features (Göktürk özel) */
.premium-features {
    padding: 4rem 0;
    text-align: center;
}

.premium-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
}

.premium-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.premium-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.premium-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.premium-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.premium-item h3 {
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem;
}

.premium-item p {
    color: var(--text-light);
}

/* Historical Note (Eyüp özel) */
.historical-note {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-radius: 16px;
    margin: 4rem 0;
}

.historical-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.historical-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.historical-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.historical-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Local Info (Göktürk özel) */
.local-info {
    padding: 4rem 0;
    text-align: center;
}

.local-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.local-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.local-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Special Offers (Göktürk özel) */
.special-offers {
    padding: 4rem 0;
    background: var(--bg-gray);
    border-radius: 16px;
    margin: 4rem 0;
}

.offers-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    margin-bottom: 3rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offer-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-item h3 {
    color: var(--text-dark) !important;
    margin: 1.5rem 0 1rem 0;
}

.offer-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .region-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .region-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .region-stats {
        justify-content: center;
    }
    
    .why-choose-us {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .region-cta h2 {
        font-size: 2rem;
    }
    
    .region-cta {
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
   Page Content Text Styles - Force Black Color
   ========================================================================== */

/* Sayfa içeriğindeki tüm yazıları siyah yap */
.site-main p,
.site-main li,
.site-main span,
.site-main div,
.site-main h1,
.site-main h2, 
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6 {
    color: #000000 !important;
}

/* Özel durumlar için beyaz yazılar (gradient kutular vb.) */
.site-main [style*="background: linear-gradient"] *,
.site-main [style*="background:#2563eb"] *,
.site-main [style*="background: #2563eb"] *,
.site-main [style*="color: white"] *,
.site-main [style*="color:white"] * {
    color: #ffffff !important;
}

/* Bağlantıları mavi tut ama koyu mavi yap */
.site-main a {
    color: #1e40af !important;
    text-decoration: none;
}

.site-main a:hover {
    color: #1d4ed8 !important;
    text-decoration: underline;
}

/* Strong ve bold etiketleri siyah yap */
.site-main strong,
.site-main b {
    color: #000000 !important;
    font-weight: bold;
}

/* Liste öğeleri */
.site-main ul li,
.site-main ol li {
    color: #000000 !important;
}

/* Paragraflar */
.site-main p {
    color: #000000 !important;
    line-height: 1.6;
}

/* Başlıklar */
.site-main h1, 
.site-main h2, 
.site-main h3, 
.site-main h4 {
    color: #000000 !important;
    font-weight: bold;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(37,99,235,0.1), 
        rgba(59,130,246,0.15),
        rgba(245,158,11,0.1), 
        transparent);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    50% { transform: translateX(100%) rotate(2deg); }
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-widget h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(37,99,235,0.5);
}

.footer-widget h3::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.footer-widget a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.25rem;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-widget a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(37,99,235,0.5);
}

.footer-widget a:hover::before {
    width: 100%;
}

.footer-widget p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-widget i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 18px;
    text-shadow: 0 0 5px rgba(37,99,235,0.5);
}

.footer-bottom {
    text-align: center;
    padding: 2.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom strong {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
    border-color: var(--primary-color);
}

.footer-social a:nth-child(1):hover { background: #1877f2; }
.footer-social a:nth-child(2):hover { background: #e4405f; }
.footer-social a:nth-child(3):hover { background: #1da1f2; }
.footer-social a:nth-child(4):hover { background: #0077b5; }

/* Footer Contact Info */
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.footer-contact-info i {
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .main-navigation {
        position: relative;
    }
    
    .main-navigation ul,
    .main-navigation .menu,
    #primary-menu,
    ul.menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff !important;
        z-index: 998;
        padding: 80px 20px 20px;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #000000 !important;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0,0,0,0.1);
        border: none;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .mobile-menu-close:hover {
        background: rgba(0,0,0,0.2);
    }
    
    .main-navigation ul.active,
    .main-navigation .menu.active,
    #primary-menu.active,
    ul.menu.active {
        transform: translateX(0);
    }
    
    /* Alternative: Body class based menu control */
    body.menu-open .main-navigation ul,
    body.menu-open .main-navigation .menu,
    body.menu-open #primary-menu,
    body.menu-open ul.menu {
        transform: translateX(0) !important;
    }

    .main-navigation li {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .main-navigation a {
        padding: 1.5rem 1rem;
        border-radius: 0;
        display: block;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        color: #000000 !important;
        text-align: center;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
    }
    
    .main-navigation .menu-item-has-children > a::after {
        content: '▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .main-navigation .menu-item-has-children.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .main-navigation a:hover {
        background: var(--primary-color);
        color: #ffffff !important;
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .header-cta {
        display: none;
    }

    .main-navigation {
        gap: 1rem;
        position: relative;
        background: transparent;
    }
    
    .header-container {
        position: relative;
        z-index: 100;
    }
    
    /* Body class when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        background: #ffffff !important;
    }
    
    body.menu-open .site-header {
        background: #ffffff !important;
        backdrop-filter: none;
    }
}

@media (max-width: 1200px) {
    .header-phone span {
        display: none;
    }
    
    .header-cta {
        gap: 1rem;
        margin-left: 1rem;
    }
    
    .header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .header-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer {
        padding: 3rem 0 0;
    }

    .slide-content h2 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .slide-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .site-logo {
        font-size: 1.3rem;
    }

    .header-container {
        padding: 1rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

.elementor-section {
    position: relative;
}

.elementor-widget-container {
    word-wrap: break-word;
}

/* Ensure Elementor content doesn't conflict with theme styles */
.elementor * {
    box-sizing: border-box;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* Screen Reader Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Breadcrumbs */
.breadcrumb-container {
    background: var(--bg-gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.breadcrumbs .breadcrumb_last {
    color: var(--text-dark);
    font-weight: 500;
}

/* ==========================================================================
   Floating Contact Buttons
   ========================================================================== */

.floating-contact {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    animation: pulse-phone 2s infinite;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulse-whatsapp 2s infinite 1s;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b358, #0f7a6b);
}

/* Pulse Animations */
@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6), 0 0 0 10px rgba(37, 99, 235, 0.1);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Tooltip */
.floating-btn .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
        .floating-contact {
            bottom: 90px;
            right: 20px;
            gap: 12px;
        }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn a {
        font-size: 22px;
    }
    
    .floating-btn .tooltip {
        display: none;
    }
    
    /* Daha güçlü tap feedback */
    .floating-btn:active {
        transform: translateY(-1px) scale(0.95);
    }
}

@media (max-width: 480px) {
        .floating-contact {
            bottom: 85px;
            right: 15px;
        }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn a {
        font-size: 20px;
    }
}

/* ==========================================================================
   NEW MOBILE MENU SYSTEM
   ========================================================================== */

/* New Mobile Menu Button */
.new-mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    order: 3;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.new-mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.new-mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.new-mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.new-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.new-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.new-mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.new-mobile-menu-overlay.active .new-mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: #333;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important;
    visibility: visible !important;
}

.mobile-menu-list li {
    margin-bottom: 5px;
    display: block !important;
    visibility: visible !important;
}

.mobile-menu-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-link:hover {
    color: #007cba !important;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9 !important;
    border-radius: 4px;
}

.mobile-submenu.active {
    max-height: 300px !important;
    padding: 10px 0 !important;
}

.mobile-submenu li {
    margin-bottom: 0 !important;
    display: block !important;
    visibility: visible !important;
}

/* Submenu links styling - always visible */
.mobile-submenu-link {
    display: block !important;
    padding: 12px 15px 12px 30px !important; /* Left padding for indentation */
    color: #666 !important;
    text-decoration: none;
    font-size: 15px !important; /* Slightly smaller than main menu */
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f9f9f9 !important; /* Light background to distinguish from main items */
    margin-left: 0 !important;
    position: relative;
}

.mobile-submenu-link::before {
    content: '•'; /* Bullet point */
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 14px;
}

.mobile-submenu-link:hover {
    color: #007cba !important;
    background: #e9ecef !important;
    padding-left: 35px !important; /* Slight animation on hover */
}

/* Ensure submenu links are always visible in overlay */
.new-mobile-menu-overlay .mobile-submenu-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f9f9f9 !important;
    padding: 12px 15px 12px 30px !important;
    color: #666 !important;
}

.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 8px;
    color: #666 !important;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
    color: #007cba !important;
}

/* Ensure dropdown toggle link styling */
.mobile-menu-link.dropdown-toggle {
    cursor: pointer;
    user-select: none;
    text-decoration: none !important;
}

.mobile-menu-link.dropdown-toggle:hover {
    background: #f8f9fa !important;
    text-decoration: none !important;
}

.mobile-menu-link.dropdown-toggle:hover .dropdown-arrow {
    color: #007cba !important;
}

.mobile-menu-link.dropdown-toggle:focus {
    outline: none;
    text-decoration: none !important;
}

.mobile-menu-link.dropdown-toggle:active {
    text-decoration: none !important;
    background: #f0f0f0 !important;
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-phone-btn:hover {
    background: #218838;
    color: white;
}

.mobile-phone-btn i {
    margin-right: 8px;
}

.mobile-cta-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-cta-btn:hover {
    background: #005a8a;
    color: white;
}

/* Show/Hide Rules for New Menu */
@media (max-width: 992px) {
    .new-mobile-menu-btn {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Hide old mobile menu elements */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    #primary-menu,
    .main-navigation ul,
    .main-navigation .menu,
    ul.menu {
        display: none !important;
    }
}

/* Hide any stray close buttons that might appear near logo */
.site-header .mobile-menu-close {
    display: none !important;
}

/* Hide any close buttons that are not inside the new menu overlay */
.mobile-menu-close:not(#mobileMenuClose) {
    display: none !important;
}

/* Hide all possible close buttons and X elements in header area */
.site-header .close,
.site-header [class*="close"],
.site-header [class*="Close"],
.header-container .close,
.header-container [class*="close"],
.header-container [class*="Close"],
.main-navigation .close,
.main-navigation [class*="close"],
.main-navigation [class*="Close"] {
    display: none !important;
}

/* Hide X symbols and close elements specifically */
.site-header *:contains("×"),
.site-header *:contains("✕"),
.site-header *:contains("&times;") {
    display: none !important;
}

/* Override any rules that might hide the new mobile menu content */
.new-mobile-menu-overlay .mobile-menu-content,
.new-mobile-menu-overlay .mobile-menu-list,
.new-mobile-menu-overlay .mobile-menu-list li,
.new-mobile-menu-overlay .mobile-menu-link,
.new-mobile-menu-overlay .mobile-submenu,
.new-mobile-menu-overlay .mobile-submenu li,
.new-mobile-menu-overlay .mobile-submenu-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-mobile-menu-overlay .mobile-menu-link {
    display: flex !important;
}

.new-mobile-menu-overlay .mobile-submenu {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-mobile-menu-overlay .mobile-submenu.active {
    max-height: 400px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 10px 0 !important;
    background: #f9f9f9 !important;
}

.new-mobile-menu-overlay .mobile-submenu.active li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-mobile-menu-overlay .mobile-submenu-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 12px 15px !important;
    color: #666 !important;
    background: transparent !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Ensure new mobile menu container is properly sized and visible */
.new-mobile-menu-overlay.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1001 !important;
}

.new-mobile-menu-container {
    display: block !important;
    visibility: visible !important;
    background: white !important;
    width: 85% !important;
    max-width: 350px !important;
    min-height: 100vh !important;
}

/* Prevent menu from disappearing or becoming white */
.new-mobile-menu-overlay.active .mobile-menu-header {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f8f9fa !important;
    border-bottom: 1px solid #eee !important;
}

.new-mobile-menu-overlay.active .mobile-menu-header h3 {
    display: block !important;
    visibility: visible !important;
    color: #333 !important;
    margin: 0 !important;
    font-size: 20px !important;
}

.new-mobile-menu-overlay.active #mobileMenuClose {
    display: block !important;
    visibility: visible !important;
    color: #666 !important;
    font-size: 30px !important;
    background: none !important;
    border: none !important;
}

/* Force menu items to stay visible during navigation */
.new-mobile-menu-overlay.active .mobile-menu-content {
    background: white !important;
    color: #333 !important;
}

.new-mobile-menu-overlay.active .mobile-menu-list {
    background: transparent !important;
}

.new-mobile-menu-overlay.active .mobile-menu-link {
    color: #333 !important;
    background: transparent !important;
    border-bottom: 1px solid #eee !important;
}

.new-mobile-menu-overlay.active .mobile-menu-link:hover {
    color: #007cba !important;
    background: #f9f9f9 !important;
}

@media (min-width: 993px) {
    .new-mobile-menu-btn,
    .new-mobile-menu-overlay {
        display: none !important;
    }
    
    .desktop-menu {
        display: block;
    }
}

/* ==========================================================================
   CONTACT PAGE MOBILE RESPONSIVE
   ========================================================================== */

/* Contact page main grid - mobile responsive */
@media (max-width: 768px) {
    /* Main contact grid - stack on mobile */
    .site-main div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
    }
    
    /* Contact info cards */
    .site-main div[style*="background: #f8fafc"],
    .site-main div[style*="background: #f0fdf4"],
    .site-main div[style*="background: #fef7cd"] {
        margin: 1rem 0 !important;
        padding: 1.5rem !important;
    }
    
    /* Form container */
    .site-main div[style*="background: white"] form {
        gap: 1rem !important;
    }
    
    /* Form inputs - full width with proper spacing */
    .site-main input[type="text"],
    .site-main input[type="tel"],
    .site-main input[type="email"],
    .site-main select,
    .site-main textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.75rem !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        border: 2px solid #e5e7eb !important;
        border-radius: 8px !important;
        margin: 0 !important;
    }
    
    /* Form labels */
    .site-main label {
        font-size: 14px !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Submit button - full width on mobile */
    .site-main form button[type="submit"] {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    /* Bottom action cards grid */
    .site-main div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Service process steps */
    .site-main div[style*="display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    /* FAQ grid */
    .site-main div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Map iframe */
    .site-main iframe {
        height: 250px !important;
    }
    
    /* Padding adjustments for mobile */
    .site-main div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    /* Margin adjustments */
    .site-main div[style*="margin: 3rem 0"] {
        margin: 2rem 0 !important;
    }
    
    /* Text size adjustments */
    .site-main h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .site-main h4 {
        font-size: 1.1rem !important;
    }
    
    /* Action buttons - better touch targets */
    .site-main a[style*="padding: 1rem"] {
        padding: 1rem 1.5rem !important;
        display: block !important;
        text-align: center !important;
        margin: 0.5rem 0 !important;
    }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
    .site-main {
        padding: 0 1rem !important;
    }
    
    .site-main div[style*="padding: 2rem"],
    .site-main div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }
    
    /* Service steps - single column on very small screens */
    .site-main div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Smaller circular icons */
    .site-main div[style*="width: 60px; height: 60px"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
}
