/*
Theme Name: Sonmezso-New
Description: Profesyonel, tamamen özelleştirilebilir WordPress teması. Modern ve responsive tasarım, gelişmiş admin paneli.
Version: 1.0.0
Author: SonmezSo
Text Domain: sonmezso-new
*/

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

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.sticky {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.sticky .header-content {
    padding: 8px 0;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.sticky .site-logo img {
    max-height: 40px;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.sticky .custom-logo {
    max-height: 40px;
}

/* Ana Menü */
.header-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
    list-style: none;
}

.main-navigation ul li a {
    color: #333;
    font-weight: 500;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.main-navigation ul li a:hover {
    color: #0073e6;
    background: #f8f9fa;
}

/* Ana Sayfa İkonu */
.home-icon .menu-text {
    display: none !important;
}

.home-icon a {
    font-size: 20px !important;
    padding: 10px 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.home-icon i {
    margin-right: 0 !important;
}

/* Alt menü stilleri - Hover ile açılma */
.main-navigation ul ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.main-navigation ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul.sub-menu li {
    width: 100%;
}

.main-navigation ul ul.sub-menu li a {
    padding: 10px 20px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 400;
    font-size: 0.85rem;
    white-space: nowrap;
    width: 100%;
    transition: all 0.2s ease;
}

.main-navigation ul ul.sub-menu li:last-child a {
    border-bottom: none;
}

.main-navigation ul ul.sub-menu li a:hover {
    background: #f8f9fa;
    color: #0073e6;
    padding-left: 25px;
}

/* 2. seviye alt menüler */
.main-navigation ul ul ul.sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
}

/* Alt menü okları */
.menu-item-has-children > a {
    position: relative;
    padding-right: 25px;
}

.menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

/* WhatsApp Butonu */
.header-whatsapp {
    flex-shrink: 0;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* ==========================================================================
   Slider Altı Bilgi Bölümü - 6 KART (3x3 Grid)
   ========================================================================== */
.slider-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.info-title {
    font-size: 2.5rem;
    color: #0b2647;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.info-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-feature i {
    font-size: 3rem;
    color: #0073e6;
    margin-bottom: 20px;
    display: block;
}

.info-feature h4 {
    font-size: 1.4rem;
    color: #0b2647;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* ==========================================================================
   Hizmetler Bölümü - 9 HİZMET (3x3 Grid)
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0b2647;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-icon-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
}

.service-icon-bg i {
    font-size: 4rem;
    opacity: 0.9;
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #0b2647;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-link {
    background: #0073e6;
    color: white !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #0073e6;
    justify-content: center;
}

.service-link:hover {
    background: transparent;
    color: #0073e6 !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   Blog Bölümü
   ========================================================================== */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #0073e6;
    opacity: 0.8;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #0b2647;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more {
    background: #0073e6;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0073e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-read-more:hover {
    background: transparent;
    color: #0073e6;
    transform: translateY(-2px);
}

.blog-cta {
    text-align: center;
}

.cta-button-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-blog:hover {
    background: #ffa500;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

/* ==========================================================================
   Blog Şablonu Kart Tasarımı
   ========================================================================== */
.blog-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.blog-card-template {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-template:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.no-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 40px;
}

.card-content {
    padding: 20px;
}

.card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.card-title a {
    color: #2c3e50;
    text-decoration: none;
}

.card-title a:hover {
    color: #3498db;
}

.card-excerpt {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.card-meta .date {
    color: #95a5a6;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog Sayfalama */
.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}

.blog-pagination .page-numbers.current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.blog-pagination .page-numbers:hover {
    background: #f8f9fa;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
    font-size: 18px;
}

/* ==========================================================================
   İkinci Hizmetler Bölümü - 9 HİZMET (3x3 Grid)
   ========================================================================== */
.our-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-item-main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item-main:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-main {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-item-main h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item-main p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.services-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Google Reviews Section
   ========================================================================== */
.google-reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #0b2647;
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-header p {
    font-size: 1.2rem;
    color: #666;
}

.reviews-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Page Styles
   ========================================================================== */
.page-content {
    padding: 100px 0 40px;
    margin-top: 80px;
}

.site-header.sticky ~ .page-content {
    margin-top: 70px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0073e6 0%, #0056b3 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.entry-content h2 {
    color: #0b2647;
    font-size: 2rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073e6;
}

.entry-content h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul, 
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content strong {
    color: #0b2647;
    font-weight: 600;
}

.entry-meta {
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */
.hero-slider {
    position: relative;
    margin-top: 80px;
}

.site-header.sticky ~ .hero-slider {
    margin-top: 70px;
}

.slide-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    width: 90%;
}

.slide-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0073e6;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Slider Alt Bilgi */
.slider-info {
    background: #0b2647;
    color: white;
    padding: 15px 0;
}

.slider-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255,255,255,0.3);
}

.customer-service {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-media a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #0073e6;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer-sonmezso {
    background-color: #0b2647;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #1e3a5c;
    padding-bottom: 10px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-services h4 {
    color: #fff;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.footer-services ul li {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #4ea3ff;
    padding-left: 5px;
}

.websites-list li a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn {
    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-btn {
    background-color: #FFB800;
    color: #000;
}

.phone-btn:hover {
    background-color: #ffc933;
    transform: translateY(-2px);
}

.whatsapp-btn-footer {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-btn-footer:hover {
    background-color: #32e377;
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #1e3a5c;
    padding: 20px 0 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.sonmezso-link {
    color: #4ea3ff;
    text-decoration: none;
}

.sonmezso-link:hover {
    text-decoration: underline;
}

/* Back to top butonu */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-logo {
        order: 1;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .header-whatsapp {
        order: 2;
    }
    
    .header-menu {
        order: 4;
        flex: 0 0 100%;
        margin-top: 15px;
    }
    
    .main-navigation {
        width: 100%;
        position: relative;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    /* Mobile alt menü stilleri */
    .main-navigation ul ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 0;
        display: none;
        width: 100%;
        padding: 0;
    }
    
    .main-navigation ul li.menu-item-has-children.active > ul.sub-menu {
        display: block;
    }
    
    .main-navigation ul ul.sub-menu li a {
        padding: 10px 20px 10px 35px;
        font-size: 0.85rem;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .main-navigation ul ul.sub-menu li a:hover {
        padding-left: 40px;
    }
    
    /* Ana Sayfa İkonu - Mobile */
    .home-icon a {
        font-size: 18px !important;
        padding: 8px 12px !important;
    }
    
    /* Alt menü okları - mobile */
    .menu-item-has-children > a {
        padding-right: 25px;
    }
    
    .menu-item-has-children > a:after {
        float: right;
        right: 15px;
    }
    
    .menu-item-has-children.active > a:after {
        content: '\f106';
    }
    
    /* Grid düzenlemeleri - 3x3'ten 1 sütuna */
    .info-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-info-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
    }
    
    .site-logo img, .custom-logo {
        max-height: 40px;
    }
    
    .site-header.sticky .site-logo img,
    .site-header.sticky .custom-logo {
        max-height: 35px;
    }
    
    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .slide-container {
        height: 500px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .info-feature {
        padding: 30px 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-link, .blog-read-more {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Küçük Mobile (360px ve altı) */
@media (max-width: 360px) {
    .header-container {
        padding: 0 15px;
    }
    
    .whatsapp-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .info-feature {
        padding: 25px 15px;
    }
}