/* assets/css/main.css */
@charset "UTF-8";

/* ===== GENEL RESET VE TANIMLAR ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LINKLER ===== */
a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0284c7;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: 2px solid #0ea5e9;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    color: white;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: #0ea5e9;
    border: 2px solid white;
}

.btn-light:hover {
    background: #f1f5f9;
    color: #0284c7;
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #0d6e5c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e2e8f0;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-tagline {
    font-weight: 500;
}

.top-bar-call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: white;
    text-decoration: none;
}

.call-label {
    font-weight: 700;
    font-size: 16px;
}

.call-sub {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    background: white;
}

.header-inner {
    display: grid;
    grid-template-columns: 250px 1fr 60px;
    align-items: center;
    gap: 20px;
}

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

.site-logo img:hover {
    transform: scale(1.05);
}

.site-title .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

/* Header Social */
.header-social {
    display: flex;
    gap: 12px;
}

.header-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
    transition: all 0.3s ease;
}

.header-social .social-icon:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

#primary-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

#primary-menu > li {
    position: relative;
}

#primary-menu > li > a {
    color: #334155;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#primary-menu > li > a:hover {
    color: #0ea5e9;
    background: #f1f5f9;
}

/* Submenu */
#primary-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
}

#primary-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu li ul li a {
    display: block;
    padding: 10px 20px;
    color: #475569;
    font-size: 14px;
    transition: all 0.3s ease;
}

#primary-menu li ul li a:hover {
    background: #f1f5f9;
    color: #0ea5e9;
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #334155;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin-top: 115px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    padding: 40px 0;
}

.hero-slides {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 50px;
    max-width: 650px;
    color: white;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Dots */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: #0ea5e9;
    width: 35px;
    border-radius: 6px;
    transform: scale(1.1);
}

/* ===== HIZLI SERVİS BÖLÜMÜ ===== */
.section-fast-service {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.fast-service-item {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fast-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.fast-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.fast-service-item h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.fast-service-item p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ===== KIRMIZI ACİL BANDI ===== */
.section-highlight {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.highlight-banner {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.highlight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight-banner h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HİZMETLER BÖLÜMÜ ===== */
.section-services {
    padding: 80px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.08);
    border-top: 4px solid #0ea5e9;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
    border-top-color: #0284c7;
}

.service-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== BLOG BÖLÜMÜ ===== */
.section-blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
}

.blog-card-thumb {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-thumb-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.blog-card-title a {
    color: #1e293b;
    font-weight: 600;
}

.blog-card-title a:hover {
    color: #0ea5e9;
}

.blog-card-meta {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-readmore {
    font-size: 15px;
    font-weight: 600;
    color: #0ea5e9;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-readmore:hover {
    color: #0284c7;
    gap: 8px;
}

/* ===== YORUMLAR BÖLÜMÜ ===== */
.section-reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.trustindex-placeholder {
    text-align: center;
    padding: 60px 40px;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    color: #94a3b8;
    font-size: 16px;
}

/* ===== FAQ BÖLÜMÜ ===== */
.section-faq {
    padding: 80px 0;
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-toggle {
    font-size: 24px;
    color: #0ea5e9;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== WHATSAPP İLETİŞİM BÖLÜMÜ ===== */
.section-contact-whatsapp {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.contact-box {
    background: white;
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-text h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-text p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
}

.contact-action {
    flex-shrink: 0;
}

.contact-note {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #cbd5e1;
    margin-top: 40px;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-col h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0ea5e9;
    border-radius: 2px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.footer-col ul li:before {
    content: "•";
    color: #0ea5e9;
    margin-right: 8px;
}

/* Footer Sosyal Medya */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-3px);
}

.footer-social-icons .instagram:hover {
    background: #e4405f;
}

.footer-social-icons .facebook:hover {
    background: #1877f2;
}

.footer-social-icons .whatsapp:hover {
    background: #25d366;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

.footer-bottom a {
    color: #0ea5e9;
    font-weight: 600;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp {
    bottom: 110px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-call {
    bottom: 180px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.floating-top {
    bottom: 40px;
    background: linear-gradient(135deg, #475569, #334155);
    display: none;
}

/* ===== SAYFA YAPILARI ===== */
.page-wrapper,
.single-wrapper,
.archive-wrapper,
.search-wrapper {
    margin-top: 115px;
    padding: 60px 0;
}

.page-content,
.single-post,
.archive-content,
.search-results {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    border: 1px solid #e2e8f0;
}

.page-header,
.single-header,
.archive-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-title,
.single-title,
.archive-title {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.page-title::after,
.single-title::after,
.archive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 2px;
}

/* ===== 404 SAYFASI ===== */
.page-404 {
    margin-top: 115px;
    padding: 100px 0;
    text-align: center;
}

.page-404 h1 {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.page-404 p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-404 .btn {
    margin-top: 20px;
}

/* ===== RESPONSIVE TASARIM ===== */

/* Tablet - 991px ve altı */
@media (max-width: 991px) {
    .header-inner {
        grid-template-columns: 150px 1fr 50px;
        gap: 15px;
    }
    
    .site-title .logo-text {
        font-size: 14px;
    }
    
    #primary-menu > li > a {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    #primary-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }
    
    #primary-menu.open {
        left: 0;
    }
    
    #primary-menu > li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }
    
    #primary-menu > li > a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
    }
    
    /* Hero */
    .hero-content h1,
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Grids */
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fast-service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Mobile - 768px ve altı */
@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 120px 1fr 40px;
        gap: 10px;
    }
    
    .site-title .logo-text {
        font-size: 12px;
    }
    
    .hero-slides {
        height: 450px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .highlight-banner h2 {
        font-size: 26px;
    }
    
    .highlight-actions {
        flex-direction: column;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        right: 20px;
        font-size: 18px;
    }
    
    .floating-whatsapp {
        bottom: 100px;
    }
    
    .floating-call {
        bottom: 160px;
    }
}

/* Small Mobile - 480px ve altı */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slides {
        height: 400px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .fast-service-item,
    .service-card,
    .blog-card {
        padding: 25px 20px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-text h2 {
        font-size: 26px;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-bar-call {
        align-items: center;
    }
}