/* ===== CSS Variables ===== */
:root {
    --primary: #bd1b1b;
    --primary-dark: #780001;
    --secondary: #162a44;
    --secondary-light: #3d708f;
    --accent: #f4a261;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #444444;
    --white: #ffffff;
    --shadow: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
   
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .top-info span {
    margin-right: 25px;
}

.top-bar .top-info i {
    margin-right: 8px;
    color: var(--primary);
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--primary);
}

/* ===== Navbar ===== */
.navbar {
    background: var(--white);
    padding: 10px 0; /* 15px'ten 10px'e - logo için daha kompakt */
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar-brand {
    }
    
    .navbar-brand .brand-text {
        font-size: 16px;
    display: flex;
    align-items: center;
    padding: 5px 0; /* Logo için extra space */
}

.navbar-brand .logo {
    height: 60px; /* 40px'ten 60px'e çıkarıldı */
    max-width: 200px; /* Maksimum genişlik sınırı */
    width: auto;
    margin-right: 10px;
    transition: var(--transition);
    object-fit: contain; /* Logonun oranını koru */
}

/* Scroll sonrası logo küçülme efekti */
.navbar.scrolled .navbar-brand .logo {
    height: 50px; /* Scroll edildiğinde küçülür */
}

.navbar-brand:hover .logo {
    transform: scale(1.05); /* Hover efekti */
}

.navbar-brand .brand-text {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    font-size: 18px;
}

.navbar-brand .brand-text small {
    color: var(--primary);
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 15px 0;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 30px;
}

.btn-teklif {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px !important;
}


/* ===== Hero Section ===== */
.hero-section {
    background: transparent;
    position: relative;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/ana.webp') center 30% no-repeat !important;
    background-size: cover !important;
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    margin: 0;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.hero-features .feature i {
    margin-right: 8px;
    color: var(--accent);
    font-size: 18px;
}
/* ===== Section Styles ===== */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    margin-left: 10px;
}

/* ===== About Section ===== */
.about-section {
    overflow: hidden;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--primary);
    font-size: 20px;
    margin-right: 10px;
}

.about-feature span {
    font-weight: 500;
}

/* ===== Process Section ===== */
.process-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.process-section .section-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.process-section .section-header h2,
.process-section .section-header p {
    color: var(--white);
}

.process-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-icon i {
    font-size: 40px;
    color: var(--primary);
}

.process-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.process-card p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--light);
}

.stat-card {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* ===== Testimonials Section ===== */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-widget ul.contact-info li {
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
}

.footer-widget ul.contact-info li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer .copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer a {
    color: rgba(255,255,255,0.6);
}

.footer a:hover {
    color: var(--primary);
}

/* ===== Fixed Buttons ===== */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1); /* Hafif büyüme efekti */
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 180px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
}

.back-to-top.show {
    display: flex;
}


/* ===== Page Headers ===== */
.page-header {
    background: var(--white); /* Mavi gradient kaldırıldı, beyaz arka plan */
    padding: 30px 0 20px; /* Minimal padding */
    text-align: left; /* Sola hizalı */
    color: var(--secondary);
    position: relative;
    border-bottom: 1px solid #e9ecef; /* İnce alt çizgi */
}

.page-header::before {
    display: none; /* Pattern overlay kaldırıldı */
}

.page-header h1 {
    color: var(--secondary); /* Koyu renk */
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header .lead {
    color: var(--gray) !important; /* Beyaz yerine gri */
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: flex-start; /* Sola hizalı */
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray);
}



/* ========================================================================== *//*   RESPONSIVE STYLES - Tüm media query'ler tek yerde                       *//* ========================================================================== */

/* ===== Tablet & Desktop Responsive (max-width: 991px) ===== */
@media (max-width: 991px) {
    /* Hero Section */
    .hero-section::before {
        background-position: center 25% !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    /* Logo */
    .navbar-brand .logo {
        height: 50px;
    }
    
    /* About Section */
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Navbar */
    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }
    
    /* Dropdown - Touch Optimization */
    .nav-item.dropdown {
        position: relative;
        margin: 5px 0;
    }
    
    .nav-link.dropdown-toggle {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        margin: 0 !important;
        cursor: pointer !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(230, 57, 70, 0.2) !important;
        touch-action: manipulation !important;
        position: relative !important;
        z-index: 10 !important;
        background: transparent !important;
        border: 2px solid transparent !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
    }
    
    .nav-link.dropdown-toggle:active,
    .nav-link.dropdown-toggle:focus {
        background-color: #f8f9fa !important;
        border-color: var(--primary) !important;
        outline: none !important;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        margin: 5px 0 10px 15px !important;
        border-left: 3px solid var(--primary) !important;
        width: calc(100% - 15px) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, opacity 0.2s ease !important;
        opacity: 0 !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
        max-height: 600px !important;
        opacity: 1 !important;
    }
    
    .dropdown-item {
        padding: 14px 20px !important;
        font-size: 14px !important;
        display: block !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(230, 57, 70, 0.1) !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:active {
        background: var(--white) !important;
        padding-left: 25px !important;
    }
}

/* ===== Tablet Specific (768px - 991px) ===== */
@media (max-width: 991px) and (min-width: 768px) {
    .gallery-item {
        height: 220px !important;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .testimonial-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .process-icon {
        width: 90px;
        height: 90px;
    }
    
    .process-icon i {
        font-size: 36px;
    }
    
    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px 30px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
}

/* ===== Mobile (max-width: 767px) ===== */
@media (max-width: 767px) {
    /* Top Bar */
    .top-bar {
        display: none !important;
    }
    
    /* Logo */
    .navbar-brand .logo {
        height: 45px;
    }
    
    /* Navbar */
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        padding: 3px 0;
    }
    
    .navbar-brand .brand-text {
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 0;
    }
    
    .hero-section::before {
        background: url('/img/ana.webp') center top no-repeat !important;
        background-size: cover !important;
    }
    
    .hero-section .container {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .hero-section .row {
        width: 100%;
        margin: 0;
    }
    
    .hero-content {
        padding: 15px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        margin: 0 !important;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-features .feature {
        font-size: 13px;
    }
    
    .hero-features .feature i {
        font-size: 16px;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Fixed Buttons */
    .fixed-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Page Header */
    .page-header {
        padding: 20px 0 15px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    /* Gallery */
    .gallery-item {
        height: 200px !important;
        margin-bottom: 20px;
    }
    
    .gallery-text h5 {
        font-size: 1rem;
    }
    
    .gallery-text i {
        font-size: 24px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    /* Info Cards */
    .info-card {
        margin-bottom: 20px;
    }
    
    .info-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .info-card h4 {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-widget h4 {
        font-size: 1.3rem;
    }
    
    .footer-widget h5 {
        font-size: 1.1rem;
    }
    
    .footer-widget ul.contact-info li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Process Cards */
    .process-card {
        margin-bottom: 30px;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 32px;
    }
    
    /* Blog Cards */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-card img {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .testimonial-card .stars i {
        font-size: 16px;
    }
    
    /* About Section */
    .about-content {
        margin-top: 40px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        position: absolute;
        bottom: 15px;
        right: 15px;
        margin: 0;
        padding: 12px 18px;
        max-width: 130px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 11px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    /* Forms */
    .quote-form,
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 180px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-section::before {
        background-position: center top !important;
    }
    
    .hero-content {
        padding: 10px !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .hero-buttons {
        margin-bottom: 20px;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        font-size: 15px;
    }
    
    .hero-features .feature {
        font-size: 12px;
    }
    
    .hero-features .feature i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Cards */
    .service-card,
    .testimonial-card,
    .info-card {
        padding: 20px 15px;
    }
    
    /* Gallery */
    .gallery-item {
        height: 180px !important;
    }
    
    /* Experience Badge */
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        max-width: 110px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 10px;
    }
}
/* Footer Başlıklarını Beyaza Zorla */
.footer-baslik {
    color: #ffffff;
    font-weight: 700;
    display: block ;
    margin-bottom: 1.5rem ;
    font-size: 1.25rem; /* h5 boyutu */
}
