/* ===================================
   Alpagut Yapı - Custom Styles
   Modern, Kurumsal, Sade Tasarım
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #dc3545;
    --accent-hover: #c41e3a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --white: #ffffff;
    --text-dark: #333333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow-light: 0 3px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.25);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
    font-variant-ligatures: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1rem;
}

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

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

section {
    padding: 60px 0;
    position: relative;
}

section.py-5 {
    padding: 60px 0 !important;
}

/* Alternating Section Backgrounds */
section:nth-of-type(even):not(.hero-section):not(.cta-section):not(.dark-services-section) {
    background: transparent;
    position: relative;
}

section:nth-of-type(odd):not(.hero-section):not(.cta-section):not(.dark-services-section) {
    background: transparent;
    position: relative;
}

/* Hizmetler sayfası için dinamik arka plan desenleri */
section.py-5[style*="background: linear-gradient"] {
    position: relative;
    overflow: hidden;
}

section.py-5[style*="background: linear-gradient"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Karanlık section için özel efekt */
section.py-5[style*="background: linear-gradient(135deg, #000000"] {
    position: relative;
    overflow: hidden;
}

section.py-5[style*="background: linear-gradient(135deg, #000000"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 200px
        );
    animation: movePattern 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* İçeriklerin önde kalması için */
section.py-5 .container {
    position: relative;
    z-index: 1;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* === TOP BAR === */
.top-bar {
    background-color: #000000;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.top-bar-link i {
    font-size: 1rem;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.top-bar-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* === NAVBAR === */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 0.8rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.98));
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
    font-feature-settings: "liga" 1, "kern" 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.brand-text {
    color: var(--accent-color);
    font-weight: 900;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin-right: 0.3rem;
    font-feature-settings: "liga" 1, "kern" 1;
    text-transform: uppercase;
}

.brand-light {
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--primary-color) !important;
    letter-spacing: 0.03em;
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
    text-transform: uppercase;
    font-variant: normal;
    line-height: 1.2;
}

.brand-light::first-letter {
    font-size: 1.1em;
    font-weight: 800;
}

.navbar-nav .nav-link {
    color: #1a1a1a !important;
    margin: 0 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid rgba(26, 26, 26, 0.2);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    margin-top: -50px;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Mobilde touch/swipe desteği için */
.carousel {
    touch-action: pan-y pinch-zoom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(26, 26, 26, 0.55) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.8rem;
    color: var(--white);
}

.carousel-indicators {
    bottom: 30px;
    gap: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    opacity: 1;
    border: 2px solid rgba(255,255,255,0.3);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    width: 35px;
    border-radius: 10px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem 0;
}

.hero-subtitle-top {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    animation: fadeInLeft 0.8s ease;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.9);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    animation: fadeInLeft 1s ease 0.2s both;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.9), 0 2px 6px rgba(0,0,0,0.8);
    line-height: 1.25;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    font-feature-settings: "liga" 1, "kern" 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.7;
    animation: fadeInLeft 1.2s ease 0.4s both;
    max-width: 90%;
    color: var(--white);
    text-shadow: 0 3px 10px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInLeft 1.4s ease 0.6s both;
    justify-content: center;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 3;
    animation: fadeInRight 1s ease;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: var(--transition);
    border: 5px solid rgba(255,255,255,0.1);
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(220, 53, 69, 0.3);
    border-color: var(--accent-color);
}

/* === BUTTONS === */
.btn-custom {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
    color: var(--white);
}

.btn-outline-custom {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline-custom:hover {
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

.btn-outline-custom:hover::before {
    left: 0;
}

/* === SECTION TITLES === */
.section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    font-feature-settings: "liga" 1, "kern" 1;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

.section-title.text-start h2::after {
    left: 0;
    transform: translateX(0);
}

.section-title h2 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-title p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* === SERVICE BOXES === */
.service-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
    border-color: var(--accent-color);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.service-box:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.5);
}

.service-box h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--accent-hover);
    gap: 0.8rem;
}

.service-link i {
    transition: var(--transition);
}

/* === FEATURE BOXES === */
.feature-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-hover));
    transition: width 0.4s ease;
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-item:hover::before {
    width: 5px;
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* === PROJECT CARDS === */
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.project-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.75)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:nth-child(2) .project-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.75)),
                      url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800&q=80');
}

.project-card:nth-child(3) .project-image {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.75)),
                      url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=800&q=80');
}

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

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
    transition: all 0.4s ease;
}

.project-card:hover .project-image::after {
    background: linear-gradient(to bottom, transparent, rgba(220, 53, 69, 0.3));
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-status.completed {
    background-color: #d4edda;
    color: #155724;
}

.project-status.ongoing {
    background-color: #fff3cd;
    color: #856404;
}

/* === PROCESS STEPS === */
.process-steps {
    position: relative;
}

.process-step {
    display: flex;
    align-items: start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover fixed;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    will-change: background-position;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.7));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* === CONTACT FORM === */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--border-color);
    padding: 0.8rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* === CONTACT INFO === */
.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--accent-color);
    font-weight: 500;
}

/* === MAP === */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #000000 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

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

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

/* === GÖRSEL KOLAJ BÖLÜMÜ === */
.image-content-section {
    background: transparent;
    padding: 0 !important;
    margin: 0;
}

.image-collage-wrapper {
    position: relative;
    height: auto;
    padding: 3rem;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.collage-main-image {
    position: relative;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.collage-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-main-image:hover img {
    transform: scale(1.08);
}

.collage-video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(196, 30, 58, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(220, 53, 69, 0.4);
    border: 4px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.collage-video-badge:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.6);
}

.collage-secondary-images {
    position: relative;
    display: contents;
}

.collage-secondary-images img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.collage-secondary-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.content-wrapper {
    padding: 2rem;
    background: transparent;
}

.content-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.badge-item {
    background: var(--light-gray);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.content-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.content-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.content-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* === KARANLIK HİZMETLER BÖLÜMÜ === */
.dark-services-section {
    background: linear-gradient(135deg, #000000 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
}

.dark-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=20') center/cover;
    opacity: 0.05;
}

.section-title-white {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-badges {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.badge-white {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.text-white-70 {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 1rem 0;
}

.dark-service-card {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.05);
    height: 100%;
}

.dark-service-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(245, 235, 220, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dark-service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f5deb3, #f4e4c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(245, 222, 179, 0.3);
    transition: all 0.4s ease;
}

.dark-service-card:hover .dark-service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(245, 222, 179, 0.5);
}

.dark-service-card h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dark-service-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === BÜYÜK GÖRSEL INFO KARTLARI === */
.big-image-section {
    background: transparent;
}

.info-image-card {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.info-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-image-card:hover .info-image-bg {
    transform: scale(1.05);
}

.info-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-image-card:hover .info-image-overlay {
    opacity: 0;
}

.info-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: var(--white);
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-image-card:hover .info-image-content {
    opacity: 0;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.info-image-card:hover .info-icon {
    opacity: 0;
}

.info-image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-image-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-info-link {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-info-link:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    border: 3px solid rgba(255,255,255,0.3);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HIZMETLER SAYFASI ÖZEL STİLLER === */
/* Resimler için hover efekti - masaüstü */
@media (min-width: 768px) {
    section.py-5 .col-lg-6 > div[style*="position: relative"] img:hover {
        transform: scale(1.05);
    }
    
    section.py-5 .col-lg-6 > div[style*="position: relative"]:hover {
        box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
    }
    
    /* Section aralarındaki boşlukları azalt */
    section.py-5 {
        padding: 45px 0 !important;
    }
    
    /* İçerik için modern card efekti */
    section.py-5 .col-lg-6 > div[style*="padding"] {
        background: linear-gradient(to bottom, transparent 0%, rgba(248,249,250,0.3) 100%);
        padding: 2rem !important;
        border-radius: 15px;
        transition: all 0.4s ease;
    }
    
    section.py-5:hover .col-lg-6 > div[style*="padding"] {
        transform: translateX(10px);
    }
    
    /* İkon ve başlık container hover efekti */
    section.py-5 .col-lg-6 > div > div[style*="display: inline-flex"] {
        transition: all 0.4s ease;
    }
    
    section.py-5 .col-lg-6 > div > div[style*="display: inline-flex"]:hover > div[style*="width: 50px"] {
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* İkon container hover */
    section.py-5 .col-lg-6 > div > div[style*="display: inline-flex"] > div[style*="width: 50px"] {
        transition: all 0.3s ease;
    }
    
    /* Başlıklara animasyonlu underline */
    section.py-5 h3 {
        position: relative;
        display: inline-block;
        transition: color 0.3s ease;
    }
    
    section.py-5 h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #000000, #1a1a1a);
        transition: width 0.5s ease;
    }
    
    section.py-5:hover h3::after {
        width: 100%;
    }
    
    /* Check icon hover efekti */
    section.py-5 ul li div[style*="width: 24px"] {
        transition: all 0.3s ease;
    }
    
    section.py-5 ul li:hover div[style*="width: 24px"] {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    /* Liste öğelerine hover efekti */
    section.py-5 ul li {
        transition: all 0.3s ease;
        padding-left: 0 !important;
        position: relative;
    }
    
    section.py-5 ul li:hover {
        padding-left: 10px !important;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 5px;
    }
    
    section.py-5 ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent);
        transition: width 0.3s ease;
        border-radius: 5px;
        z-index: -1;
    }
    
    section.py-5 ul li:hover::before {
        width: 100%;
    }
    
    /* Çalışma süreci kartları için gelişmiş efektler */
    .py-5 .col-lg-3,
    .py-5 .col-md-6 {
        display: flex !important;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] {
        position: relative;
        overflow: hidden;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"]::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"]:hover::before {
        opacity: 1;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] h4,
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] p {
        position: relative;
        z-index: 1;
    }
    
    /* Numaralı karelere hover efekti */
    .py-5 div[style*="width: 60px"][style*="background: rgba(255,255,255,0.1)"] {
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .py-5 div[style*="width: 60px"][style*="background: rgba(255,255,255,0.1)"]:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    }
}

/* === RESPONSIVE === */

/* Masaüstünde görselleri göster */
@media (min-width: 992px) {
    .image-collage-wrapper {
        display: grid !important;
    }
}

@media (max-width: 991px) {
    .top-bar-left {
        gap: 0.8rem;
        flex-wrap: nowrap;
    }
    
    .top-bar-link {
        font-size: 0.8rem;
    }
    
    .top-bar-social {
        justify-content: flex-end;
        margin-top: 0;
        gap: 0.8rem;
    }
    
    .top-bar-social a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    
    .hero-subtitle-top {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* Mobilde sağ-sol okları gizle */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    /* Mobilde carousel indicators (noktalar) düzenlemesi */
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    .carousel-indicators button.active {
        width: 24px;
    }
    
    /* Mobilde butonları küçült ve düzenle */
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 3rem;
        justify-content: center;
    }
    
    .hero-buttons .btn-custom {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* Hero slider içindeki butonları gri ton yap */
    .hero-slide .btn-primary-custom {
        background: rgba(108, 117, 125, 0.85);
        border: 2px solid rgba(108, 117, 125, 0.9);
        backdrop-filter: blur(5px);
        color: var(--white);
        font-weight: 500;
        padding: 8px 24px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        display: inline-block;
        width: auto;
        max-width: 200px;
    }
    
    .hero-slide .btn-primary-custom:hover {
        background: rgba(73, 80, 87, 0.95);
        border-color: rgba(73, 80, 87, 1);
        transform: translateY(-2px);
    }
    
    /* CTA Section mobil düzenlemeleri */
    .cta-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center 50%;
        padding: 60px 0;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        will-change: background-position;
        transition: background-position 0.1s linear;
    }
    
    /* iOS Safari için özel ayar */
    @supports (-webkit-overflow-scrolling: touch) {
        .cta-section {
            background-attachment: scroll !important;
        }
    }
    
    .cta-section::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.7));
    }
    
    .cta-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .cta-section .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .cta-section .btn-custom {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Mobilde görselleri gizle, sadece içerik göster */
    .image-collage-wrapper {
        display: none !important;
    }
    
    /* İçerik alanını tam genişlik yap */
    .image-content-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .image-content-section .container-fluid {
        padding: 0 !important;
    }
    
    .image-content-section .row {
        margin: 0 !important;
    }
    
    .content-wrapper {
        padding: 2rem 1.2rem !important;
        background: var(--white);
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Mobilde section'ı slider'a yaklaştır */
    .image-content-section {
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        text-align: center;
        letter-spacing: 1.5px;
    }
    
    .content-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    /* Badge'leri 3'lü yan yana göster */
    .content-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1.2rem 0 1.5rem;
        padding: 0;
    }
    
    .badge-item {
        font-size: 0.68rem;
        padding: 0.5rem 0.3rem;
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: var(--primary-color);
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }
    
    /* Metni daha okunabilir yap */
    .content-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 1.2rem 0;
        text-align: center;
        color: var(--medium-gray);
        padding: 0 0.3rem;
    }
    
    /* Listeyi 2 sütun kompakt grid yap */
    .content-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem 0.8rem;
        margin: 1.5rem 0;
        padding: 0;
    }
    
    .content-list li {
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(220, 53, 69, 0.03);
        padding: 0.5rem 0.6rem;
        border-radius: 6px;
        border-left: 3px solid var(--accent-color);
    }
    
    .content-list li i {
        font-size: 1rem;
        flex-shrink: 0;
        color: var(--accent-color);
    }
    
    /* Butonu ortala */
    .content-wrapper .btn-primary-custom {
        display: block;
        margin: 1.5rem auto 0;
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
        width: auto;
        max-width: 240px;
        text-align: center;
    }
    
    .info-image-card {
        height: auto;
        min-height: 450px;
        margin-bottom: 1.5rem;
    }
    
    /* Mobilde touch ile resim açılmasını etkinleştir */
    .info-image-card.active .info-image-overlay {
        opacity: 0;
    }
    
    .info-image-card.active .info-image-content {
        opacity: 0;
    }
    
    .info-image-card.active .info-image-bg {
        transform: scale(1.05);
    }
    
    .info-image-content {
        padding: 2rem 1.5rem;
    }
    
    .info-image-content h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .info-image-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar .container {
        max-width: 100%;
        padding: 0 0.8rem;
    }
    
    .top-bar .row {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .top-bar .col-md-8 {
        padding: 0;
        width: auto;
        flex: 0 1 auto;
        text-align: left;
    }
    
    .top-bar .col-md-4 {
        padding: 0;
        width: auto;
        flex: 0 1 auto;
        text-align: right;
    }
    
    .top-bar-left {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    
    .top-bar-link {
        font-size: 0.7rem;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .top-bar-link i {
        font-size: 0.95rem;
    }
    
    .top-bar-social {
        display: flex;
        gap: 0.6rem;
        justify-content: flex-end;
        align-items: center;
        margin-top: 0;
    }
    
    .top-bar-social a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    
    .hero-slide {
        height: 430px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Mobilde yön oklarını gizle */
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    
    /* Mobilde carousel indicators düzenlemesi */
    .carousel-indicators {
        bottom: 12px;
        gap: 5px;
        z-index: 10;
        margin-bottom: 0;
    }
    
    .carousel-indicators button {
        width: 7px;
        height: 7px;
        margin: 0 3px;
        border-radius: 50%;
    }
    
    .carousel-indicators button.active {
        width: 20px;
        border-radius: 8px;
    }
    
    /* Mobilde butonları düzenle */
    .btn-custom {
        padding: 8px 18px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
    
    .hero-buttons {
        gap: 0.7rem;
        margin-bottom: 3.5rem;
        justify-content: center;
    }
    
    /* Hero slider içindeki butonu gri ton ve küçük yap */
    .hero-slide .btn-primary-custom {
        background: rgba(108, 117, 125, 0.85);
        border: 2px solid rgba(108, 117, 125, 0.9);
        backdrop-filter: blur(5px);
        color: var(--white);
        font-weight: 500;
        padding: 7px 20px;
        font-size: 0.75rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        display: inline-block;
        width: auto;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .hero-slide .btn-primary-custom:hover {
        background: rgba(73, 80, 87, 0.95);
        border-color: rgba(73, 80, 87, 1);
        transform: translateY(-2px);
    }
    
    /* CTA Section mobil düzenlemeleri */
    .cta-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center 50%;
        padding: 50px 0;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        will-change: background-position;
        transition: background-position 0.1s linear;
    }
    
    /* iOS Safari için özel ayar */
    @supports (-webkit-overflow-scrolling: touch) {
        .cta-section {
            background-attachment: scroll !important;
        }
    }
    
    .cta-section::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.7));
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.3rem;
        padding: 0 0.5rem;
    }
    
    .cta-section .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0 1rem;
    }
    
    .cta-section .btn-custom {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Mobilde görselleri tamamen gizle */
    .image-collage-wrapper {
        display: none !important;
    }
    
    /* İçerik alanı tam genişlik */
    .image-content-section .row {
        margin: 0 !important;
    }
    
    .image-content-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .image-content-section .container-fluid {
        padding: 0 !important;
    }
    
    .content-wrapper {
        padding: 1.8rem 1rem !important;
        background: var(--white);
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        letter-spacing: 1.5px;
        text-align: center;
    }
    
    .content-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Badge'leri 3'lü yan yana */
    .content-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        margin: 1rem 0 1.2rem;
        padding: 0;
    }
    
    .badge-item {
        font-size: 0.65rem;
        padding: 0.45rem 0.25rem;
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: var(--primary-color);
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }
    
    /* Metin merkezi ve okunabilir */
    .content-text {
        font-size: 0.9rem;
        line-height: 1.65;
        margin: 1rem 0;
        text-align: center;
        color: var(--medium-gray);
        padding: 0 0.3rem;
    }
    
    /* Liste 2 sütun kompakt */
    .content-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 0.6rem;
        margin: 1.2rem 0;
        padding: 0;
    }
    
    .content-list li {
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
        text-align: left;
        background: rgba(220, 53, 69, 0.03);
        padding: 0.45rem 0.5rem;
        border-radius: 6px;
        border-left: 3px solid var(--accent-color);
    }
    
    .content-list li i {
        font-size: 0.9rem;
        flex-shrink: 0;
        color: var(--accent-color);
    }
    
    /* Buton merkezi ve kompakt */
    .content-wrapper .btn-primary-custom {
        display: block;
        margin: 1.3rem auto 0;
        padding: 0.65rem 1.8rem;
        font-size: 0.8rem;
        width: auto;
        max-width: 220px;
    }
    
    .dark-services-section {
        padding: 60px 0;
    }
    
    .section-title-white {
        font-size: 2rem;
    }
    
    .info-image-card {
        height: auto;
        min-height: 400px;
        margin-bottom: 1.5rem;
    }
    
    /* Mobilde touch ile resim açılması */
    .info-image-card.active .info-image-overlay {
        opacity: 0;
    }
    
    .info-image-card.active .info-image-content {
        opacity: 0;
    }
    
    .info-image-card.active .info-image-bg {
        transform: scale(1.05);
    }
    
    .info-image-content {
        padding: 1.8rem 1.2rem;
    }
    
    .info-image-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .info-image-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .info-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }
    
    .btn-custom {
        width: 100%;
        text-align: center;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .hero-image {
        border-radius: 10px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        margin-bottom: 1.8rem !important;
    }
    
    .section-title p {
        font-size: 0.95rem !important;
        margin-top: 1rem !important;
    }
    
    .service-box {
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }
    
    /* Feature item mobil - yan yana düzen */
    .feature-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 1.2rem !important;
        margin: 0 0 1rem 0 !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    /* Tüm feature item'ların margin'i eşit olsun */
    .feature-item:first-child {
        margin-top: 0 !important;
    }
    
    .feature-item:last-child {
        margin-bottom: 1rem !important;
    }
    
    /* Feature item container'daki extra margin'leri kaldır */
    .col-lg-6 .feature-item {
        margin: 0 0 1rem 0 !important;
    }
    
    .feature-icon,
    .feature-icon-image {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        flex-shrink: 0 !important;
        border-radius: 12px !important;
        margin: 0 !important;
    }
    
    .feature-icon {
        background: linear-gradient(135deg, #000000, #1a1a1a) !important;
    }
    
    .feature-content {
        flex: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .feature-content h4 {
        font-size: 1.05rem !important;
        margin: 0 0 0.4rem 0 !important;
    }
    
    .feature-content p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    .feature-item:hover {
        transform: translateX(0) !important;
    }
    
    .feature-item::before {
        width: 4px !important;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Hizmetler sayfası mobil düzenlemeleri */
    section.py-5,
    .py-5 {
        padding: 15px 0 !important;
        margin: 0 !important;
        position: relative;
    }
    
    /* Her section için subtle separator */
    section.py-5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.3), transparent);
    }
    
    section.py-5:last-of-type::after {
        display: none;
    }
    
    .py-5 .container {
        padding: 0 1rem !important;
    }
    
    .py-5 .row {
        gap: 0 !important;
        margin: 0 !important;
    }
    
    .py-5 .col-lg-6 {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Görsel düzenlemeleri - resmi küçült, yazıya çok yakın + MODERN EFEKTİ */
    .py-5 .col-lg-6 > div[style*="height: 400px"],
    .py-5 .col-lg-6 div[style*="position: relative"] {
        height: 250px !important;
        margin-bottom: 0.8rem !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
        position: relative !important;
        border: 2px solid transparent;
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(135deg, rgba(243,156,18,0.3), rgba(26,35,50,0.3)) border-box;
    }
    
    /* Resim smooth transition */
    .py-5 .col-lg-6 div[style*="position: relative"] img {
        transition: transform 0.6s ease, filter 0.4s ease !important;
        filter: brightness(0.95);
    }
    
    /* Resim üzerine gradient overlay */
    .py-5 .col-lg-6 div[style*="position: relative"]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(220, 53, 69, 0.08) 100%);
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    
    /* İçerik padding - resme ÇOK yakın + card efekti */
    .py-5 .col-lg-6 > div[style*="padding"] {
        padding: 0 1rem !important;
        background: linear-gradient(to bottom, transparent 0%, rgba(248,249,250,0.5) 100%);
        border-radius: 10px;
        position: relative;
    }
    
    /* İkon ve başlık container - mobil */
    .py-5 .col-lg-6 > div > div[style*="display: inline-flex"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }
    
    .py-5 .col-lg-6 > div > div[style*="display: inline-flex"] > div[style*="width: 50px"] {
        width: 40px !important;
        height: 40px !important;
    }
    
    .py-5 .col-lg-6 > div > div[style*="display: inline-flex"] > div[style*="width: 50px"] i {
        font-size: 1.2rem !important;
    }
    
    /* Başlık - modern stil + animasyon */
    .py-5 h3[style*="color: #1a2332"] {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        line-height: 1.3 !important;
        position: relative !important;
        padding-left: 12px !important;
        border-left: 3px solid #000000 !important;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent);
        padding-top: 0.3rem !important;
        padding-bottom: 0.3rem !important;
        border-radius: 0 8px 8px 0;
    }
    
    /* Açıklama - daha okunabilir */
    .py-5 p[style*="font-size: 1.05rem"] {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        color: #555 !important;
        text-align: justify;
    }
    
    /* Liste - modern card stil + shadow */
    .py-5 ul {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
        border-radius: 10px !important;
        padding: 0.8rem !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .py-5 ul li {
        padding: 0.5rem 0.3rem !important;
        font-size: 0.88rem !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        position: relative;
        transition: all 0.3s ease;
        display: flex !important;
        align-items: center !important;
        gap: 0.7rem !important;
    }
    
    .py-5 ul li div[style*="width: 24px"] {
        width: 20px !important;
        height: 20px !important;
        border-radius: 5px !important;
    }
    
    .py-5 ul li div[style*="width: 24px"] i {
        font-size: 0.8rem !important;
    }
    
    .py-5 ul li:last-child {
        border-bottom: none !important;
    }
    
    .py-5 ul li i.bi-check-circle-fill,
    .py-5 i[style*="color: #f39c12"] {
        color: #000000 !important;
        font-size: 0.95rem !important;
    }
    
    /* Çalışma süreci - daha kompakt ve modern + minimal stil */
    .py-5 div[style*="width: 60px"][style*="background: rgba(255,255,255,0.1)"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        border-radius: 10px !important;
    }
    
    .py-5 .row.g-4 {
        margin-bottom: 0 !important;
    }
    
    .py-5 .col-lg-3,
    .py-5 .col-md-6 {
        display: flex !important;
        margin-bottom: 1rem !important;
    }
    
    .py-5 .col-lg-3:last-child,
    .py-5 .col-md-6:last-child {
        margin-bottom: 0 !important;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] {
        padding: 1.3rem 0.8rem !important;
        margin-bottom: 0 !important;
        border-radius: 12px !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s ease !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        height: 100% !important;
        width: 100% !important;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] h4 {
        font-size: 1.05rem !important;
        margin-bottom: 0.6rem !important;
        position: relative;
        z-index: 1;
    }
    
    .py-5 div[style*="background: rgba(255,255,255,0.05)"] p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        position: relative;
        z-index: 1;
    }
    
    /* Section subtitle - daha belirgin ve modern */
    .section-subtitle[style*="color: #f39c12"],
    p[style*="color: #f39c12"] {
        color: #dc3545 !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
        background: linear-gradient(90deg, rgba(243,156,18,0.15), transparent);
        padding: 0.4rem 0.8rem !important;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 0.8rem !important;
    }
}

/* === EKSTRA KÜÇÜK EKRANLAR (Çok küçük mobiller) === */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.45rem 0;
    }
    
    .top-bar .container {
        padding: 0 0.6rem;
    }
    
    .top-bar .row {
        gap: 0.6rem;
    }
    
    .top-bar-left {
        gap: 0.5rem;
    }
    
    .top-bar-link {
        font-size: 0.65rem;
        gap: 0.25rem;
    }
    
    .top-bar-link i {
        font-size: 0.85rem;
    }
    
    .top-bar-social {
        gap: 0.4rem;
    }
    
    .top-bar-social a {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    /* Hero Slider düzenlemeleri küçük mobil için */
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-top {
        font-size: 0.6rem;
        letter-spacing: 1.2px;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Carousel indicators daha da küçük */
    .carousel-indicators {
        bottom: 10px;
        gap: 4px;
    }
    
    .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
    
    .carousel-indicators button.active {
        width: 18px;
    }
    
    /* Butonları daha da optimize et */
    .hero-buttons {
        flex-direction: row;
        gap: 0.6rem;
        margin-bottom: 3rem;
        width: 100%;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .hero-buttons .btn-custom {
        width: auto;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    /* Hero slider içindeki butonu küçült */
    .hero-slide .btn-primary-custom {
        background: rgba(108, 117, 125, 0.85);
        border: 2px solid rgba(108, 117, 125, 0.9);
        backdrop-filter: blur(5px);
        color: var(--white);
        font-weight: 500;
        padding: 6px 18px;
        font-size: 0.72rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        display: inline-block;
        width: auto;
        max-width: 160px;
        margin: 0 auto;
    }
    
    .hero-slide .btn-primary-custom:hover {
        background: rgba(73, 80, 87, 0.95);
        border-color: rgba(73, 80, 87, 1);
        transform: translateY(-1px);
    }
    
    /* CTA Section - 480px mobil */
    .cta-section {
        padding: 45px 0;
        will-change: background-position;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .cta-section .btn-custom {
        max-width: 240px;
        font-size: 0.8rem;
    }
    
    /* Görselleri gizle */
    .image-collage-wrapper {
        display: none !important;
    }
    
    .image-content-section .col-lg-6 {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .image-content-section .container-fluid,
    .image-content-section .row {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .content-wrapper {
        padding: 1.6rem 0.9rem !important;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1.2px;
    }
    
    .content-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.9rem;
    }
    
    /* Badge'leri 3'lü yan yana */
    .content-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
        margin: 0.9rem 0 1.1rem;
        padding: 0;
    }
    
    .badge-item {
        font-size: 0.62rem;
        padding: 0.4rem 0.2rem;
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: var(--primary-color);
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }
    
    .content-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0.9rem 0;
        padding: 0 0.2rem;
    }
    
    .content-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem 0.5rem;
        margin: 1rem 0;
        padding: 0;
    }
    
    .content-list li {
        font-size: 0.72rem;
        gap: 0.3rem;
        background: rgba(220, 53, 69, 0.03);
        padding: 0.4rem 0.45rem;
        border-radius: 5px;
        border-left: 3px solid var(--accent-color);
    }
    
    .content-list li i {
        font-size: 0.85rem;
        color: var(--accent-color);
    }
    
    .content-wrapper .btn-primary-custom {
        padding: 0.6rem 1.6rem;
        font-size: 0.78rem;
        margin-top: 1.1rem;
        max-width: 200px;
    }
}

/* === ÇOK KÜÇÜK EKRANLAR (360px ve altı - Sadece ikonları göster) === */
@media (max-width: 380px) {
    .top-bar {
        padding: 0.4rem 0;
    }
    
    .top-bar .container {
        padding: 0 0.5rem;
    }
    
    .top-bar .row {
        gap: 0.3rem;
        justify-content: space-around;
    }
    
    .top-bar-left {
        gap: 0.4rem;
    }
    
    /* Email ve telefon metinlerini gizle, sadece ikonları göster */
    .top-bar-link {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        padding: 0;
        gap: 0;
    }
    
    .top-bar-link i {
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Metinleri gizle */
    .top-bar-link {
        font-size: 0;
    }
    
    .top-bar-social {
        gap: 0.4rem;
    }
    
    .top-bar-social a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Hero Slider çok küçük ekranlar için */
    .hero-slide {
        height: 380px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.55rem;
        letter-spacing: 1px;
        margin-bottom: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1.3rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Carousel indicators minimal */
    .carousel-indicators {
        bottom: 8px;
        gap: 3px;
    }
    
    .carousel-indicators button {
        width: 5px;
        height: 5px;
        margin: 0 2px;
    }
    
    .carousel-indicators button.active {
        width: 16px;
    }
    
    /* Butonlar ortada ve küçük */
    .hero-buttons {
        padding: 0 0.8rem;
        margin-bottom: 2.5rem;
        justify-content: center;
    }
    
    .hero-buttons .btn-custom {
        padding: 7px 14px;
        font-size: 0.7rem;
    }
    
    /* Hero slider içindeki butonu minimal yap */
    .hero-slide .btn-primary-custom {
        background: rgba(108, 117, 125, 0.85);
        border: 2px solid rgba(108, 117, 125, 0.9);
        backdrop-filter: blur(5px);
        color: var(--white);
        font-weight: 500;
        padding: 6px 16px;
        font-size: 0.68rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        display: inline-block;
        width: auto;
        max-width: 150px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-slide .btn-primary-custom:hover {
        background: rgba(73, 80, 87, 0.95);
        border-color: rgba(73, 80, 87, 1);
        transform: translateY(-1px);
    }
    
    /* CTA Section - 380px mobil */
    .cta-section {
        padding: 40px 0;
        will-change: background-position;
    }
    
    .cta-subtitle {
        font-size: 0.7rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }
    
    .cta-section p {
        font-size: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .cta-section .btn-custom {
        max-width: 220px;
        font-size: 0.75rem;
        padding: 0.6rem 1.3rem;
    }
    
    /* Görselleri gizle */
    .image-collage-wrapper {
        display: none !important;
    }
    
    .image-content-section .col-lg-6 {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .image-content-section .container-fluid,
    .image-content-section .row {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .content-wrapper {
        padding: 1.5rem 0.8rem !important;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }
    
    .content-title {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    
    /* Badge'leri 3'lü yan yana çok küçük ekranda */
    .content-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
        margin: 0.8rem 0 1rem;
        padding: 0;
    }
    
    .badge-item {
        font-size: 0.6rem;
        padding: 0.35rem 0.15rem;
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: var(--primary-color);
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }
    
    .content-text {
        font-size: 0.82rem;
        line-height: 1.6;
        margin: 0.8rem 0;
        padding: 0 0.1rem;
    }
    
    /* Liste 2 sütun çok küçük ekranlarda */
    .content-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin: 0.9rem 0;
        padding: 0;
    }
    
    .content-list li {
        font-size: 0.7rem;
        gap: 0.25rem;
        background: rgba(220, 53, 69, 0.03);
        padding: 0.4rem 0.4rem;
        border-radius: 5px;
        border-left: 2px solid var(--accent-color);
    }
    
    .content-list li i {
        font-size: 0.8rem;
        color: var(--accent-color);
    }
    
    .content-wrapper .btn-primary-custom {
        padding: 0.55rem 1.4rem;
        font-size: 0.75rem;
        margin-top: 1rem;
        max-width: 180px;
    }
}

/* === ACCORDION STYLES === */
.accordion-button:not(.collapsed) {
    background: white !important;
    color: #000000 !important;
    border-left: 4px solid #dc3545 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button:hover {
    background: linear-gradient(90deg, rgba(220,53,69,0.05) 0%, white 100%) !important;
    border-left: 4px solid #dc3545 !important;
}

/* === TYPING ANIMATION === */
.typing-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end) forwards, blink 0.75s step-end 6;
    border-right: 3px solid #dc3545;
    max-width: 100%;
    width: fit-content;
}

/* Orta ekranlar için font boyutu */
@media (max-width: 1200px) {
    .typing-text {
        font-size: 2rem !important;
    }
}

/* Laptop ekranlar için */
@media (min-width: 992px) and (max-width: 1400px) {
    .typing-text {
        font-size: 2rem !important;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #dc3545;
    }
}

.typing-subtext {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out 3.5s forwards;
}

/* Mobilde typing animasyonunu aktif tut */
@media (max-width: 768px) {
    .typing-text {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        animation: typing 3s steps(35, end) forwards, blink 0.75s step-end 5;
        border-right: 3px solid #dc3545;
        font-size: 1.4rem !important;
        max-width: 100%;
    }
    
    .typing-subtext {
        animation: fadeInUp 1s ease-in-out 3s forwards;
        font-size: 1rem !important;
        opacity: 0;
    }
    
    /* Butonlar için animasyon */
    .kentsel-hero div[style*="display: flex"] {
        opacity: 0;
        animation: fadeInUp 1.4s ease-in-out 4s forwards !important;
    }
}

/* Küçük mobil ekranlar için */
@media (max-width: 576px) {
    .typing-text {
        font-size: 1.2rem !important;
        animation: typing 2.8s steps(35, end) forwards, blink 0.75s step-end 5;
    }
    
    .typing-subtext {
        font-size: 0.95rem !important;
    }
}

/* === KENTSEL DÖNÜŞÜM SAYFASI MOBİL === */
@media (max-width: 991px) {
    /* Hero Section */
    .kentsel-hero {
        min-height: auto !important;
        padding: 60px 0 40px !important;
    }
    
    .kentsel-hero .row {
        flex-direction: column-reverse !important;
    }
    
    /* Resim container - hover efekti */
    .kentsel-hero div[style*="height: 500px"] {
        height: 300px !important;
        margin-bottom: 2rem !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .kentsel-hero div[style*="height: 500px"]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26,35,50,0.1), rgba(243,156,18,0.1));
        pointer-events: none;
    }
    
    .kentsel-hero img {
        transform: scale(1.05);
        transition: transform 0.6s ease !important;
    }
    
    /* İçerik padding */
    .kentsel-hero .col-lg-6 > div {
        padding: 0 1rem !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Subtitle - animasyon */
    .kentsel-hero .section-subtitle {
        text-align: center !important;
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
        display: inline-block;
        padding: 0.4rem 1rem;
        background: linear-gradient(90deg, rgba(243,156,18,0.1), transparent);
        border-radius: 20px;
    }
    
    /* Typing text mobilde - animasyonlu */
    .kentsel-hero .typing-text {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin: 0 auto 1.5rem !important;
        display: inline-block !important;
        max-width: 100% !important;
    }
    
    /* Subtext */
    .kentsel-hero .typing-subtext {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.7 !important;
    }
    
    /* Butonlar - modern stil */
    .kentsel-hero div[style*="display: flex"] a {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    .kentsel-hero div[style*="display: flex"] a:active {
        transform: scale(0.98) !important;
    }
    
    .kentsel-hero div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.8rem !important;
        padding: 0 1rem !important;
    }
    
    /* İstatistikler Section - modern cards */
    .kentsel-stats {
        padding: 50px 0 !important;
        position: relative;
        overflow: hidden;
    }
    
    /* Arka plan deseni */
    .kentsel-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }
    
    .kentsel-stats .container {
        position: relative;
        z-index: 1;
        max-width: 600px !important;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .kentsel-stats .row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        margin: 0 !important;
        justify-content: center !important;
    }
    
    .kentsel-stats .col-lg-3,
    .kentsel-stats .col-md-6 {
        padding: 0 !important;
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        display: flex !important;
    }
    
    /* Stat cards - glassmorphism + sabit boyut */
    .stat-card {
        padding: 1.8rem 1rem !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 20px !important;
        border: 2px solid rgba(255,255,255,0.2) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 160px;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Gradient border efekti */
    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(243,156,18,0.2), rgba(230,126,34,0.1));
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    
    .stat-card:active::before {
        opacity: 1;
    }
    
    /* Stat değeri - modern gradient + glow */
    .stat-value {
        font-size: 2.8rem !important;
        font-weight: 800 !important;
        margin-bottom: 0.5rem !important;
        background: linear-gradient(135deg, #dc3545 0%, #c41e3a 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        filter: drop-shadow(0 4px 15px rgba(243,156,18,0.5));
        line-height: 1 !important;
        letter-spacing: -0.02em;
    }
    
    .stat-label {
        font-size: 0.92rem !important;
        line-height: 1.3 !important;
        color: rgba(255,255,255,0.95) !important;
        font-weight: 500 !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        text-align: center;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    /* Hero image daha küçük */
    .kentsel-hero div[style*="height: 500px"] {
        height: 250px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Typing text daha küçük */
    .kentsel-hero .typing-text {
        font-size: 1.2rem !important;
    }
    
    /* Subtext daha küçük */
    .kentsel-hero .typing-subtext {
        font-size: 0.92rem !important;
    }
    
    /* İstatistikler Section - 2x2 grid */
    .kentsel-stats {
        padding: 40px 0 !important;
    }
    
    .kentsel-stats .container {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    .kentsel-stats .row {
        gap: 0.8rem !important;
    }
    
    .kentsel-stats .col-lg-3,
    .kentsel-stats .col-md-6 {
        flex: 0 0 calc(50% - 0.4rem) !important;
        max-width: calc(50% - 0.4rem) !important;
    }
    
    /* İstatistik kartları - sabit boyut */
    .stat-card {
        padding: 1.5rem 0.8rem !important;
        border-radius: 18px !important;
        height: 140px !important;
    }
    
    /* İstatistik değerleri */
    .stat-value {
        font-size: 2.2rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .stat-label {
        font-size: 0.82rem !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 400px) {
    /* Çok küçük ekranlar için */
    .kentsel-stats .row {
        gap: 0.6rem !important;
    }
    
    .kentsel-stats .col-lg-3,
    .kentsel-stats .col-md-6 {
        flex: 0 0 calc(50% - 0.3rem) !important;
        max-width: calc(50% - 0.3rem) !important;
    }
    
    .stat-card {
        padding: 1.2rem 0.6rem !important;
        height: 130px !important;
    }
    
    .stat-value {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
    }
}

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

/* === İLETİŞİM FORMU MOBİL === */
@media (max-width: 991px) {
    /* Section padding azalt */
    section.py-5:has(.contact-form) {
        padding: 2rem 0 !important;
    }
    
    /* Container daha geniş */
    section.py-5:has(.contact-form) .container {
        padding: 0 0.8rem !important;
        max-width: 100% !important;
    }
    
    /* Row gap azalt */
    section.py-5:has(.contact-form) .row {
        gap: 2rem !important;
        margin: 0 !important;
    }
    
    /* Form column tam genişlik */
    section.py-5:has(.contact-form) .col-lg-7,
    section.py-5:has(.contact-form) .col-lg-5 {
        padding: 0 !important;
    }
    
    .contact-form {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
        margin: 0 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border: 2px solid rgba(243,156,18,0.1) !important;
    }
    
    .contact-form h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
        background: linear-gradient(90deg, rgba(243,156,18,0.08), transparent);
        padding: 1rem;
        border-radius: 12px;
        border-left: 4px solid #dc3545;
    }
    
    /* TÜM FORM-GROUP ALANLARI İÇİN EŞİT BOŞLUK */
    .contact-form .form-group {
        margin-bottom: 1rem !important;
    }
    
    /* Row içindeki iki sütunlu alanlar (email, telefon) */
    .contact-form .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        gap: 0 !important;
        row-gap: 0 !important;
    }
    
    .contact-form .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .contact-form .row .col-md-6 {
        margin-bottom: 0 !important;
    }
    
    .contact-form .row .col-md-6:first-child {
        padding-right: 0.5rem !important;
    }
    
    .contact-form .row .col-md-6:last-child {
        padding-left: 0.5rem !important;
    }
    
    .contact-form .row .col-md-6 .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-group label {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #000000 !important;
        margin-bottom: 0.5rem !important;
        display: block;
    }
    
    .contact-form .form-control {
        width: 100% !important;
        padding: 1rem 1.2rem !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        border: 2px solid #e0e0e0 !important;
        transition: all 0.3s ease !important;
        background: #fff !important;
        margin-bottom: 0 !important;
    }
    
    .contact-form .form-control:focus {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 4px rgba(243,156,18,0.12) !important;
        transform: translateY(-2px);
        outline: none !important;
    }
    
    .contact-form textarea.form-control {
        min-height: 140px !important;
        resize: vertical;
    }
    
    .contact-form select.form-control {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f39c12' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 12px;
        padding-right: 2.5rem !important;
    }
    
    .contact-form .btn-custom.w-100 {
        padding: 1.1rem !important;
        font-size: 1.05rem !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(243,156,18,0.35) !important;
        margin-top: 0.5rem !important;
        font-weight: 600 !important;
    }
    
    .contact-form .btn-custom.w-100:active {
        transform: scale(0.98);
    }
    
    /* Alert mesajları */
    .contact-form .alert {
        border-radius: 12px !important;
        padding: 1rem 1.2rem !important;
        margin-bottom: 1rem !important;
        border-left: 4px solid;
    }
    
    /* İletişim bilgileri */
    .contact-info-item {
        padding: 1.3rem 1.2rem !important;
        margin-bottom: 1.2rem !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95)) !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
        border: 1px solid rgba(243,156,18,0.1) !important;
    }
    
    .contact-info-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
    
    .contact-info-content h5 {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 600 !important;
    }
    
    .contact-info-content p,
    .contact-info-content a {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
    }
}

/* === MOBİLDE EMAIL VE TELEFON TAM GENİŞLİK === */
@media (max-width: 767px) {
    /* Mobilde email ve telefon alanları tam genişlik */
    .contact-form .row .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form .row .col-md-6 .form-group {
        margin-bottom: 0.9rem !important;
        width: 100% !important;
    }
    
    .contact-form .row .col-md-6 .form-control {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    /* Container daha da geniş */
    section.py-5:has(.contact-form) .container {
        padding: 0 0.6rem !important;
    }
    
    .contact-form {
        padding: 1.5rem 1.2rem !important;
        border-radius: 18px !important;
    }
    
    .contact-form h3 {
        font-size: 1.4rem !important;
        padding: 0.8rem;
        margin-bottom: 1rem !important;
    }
    
    /* Mobilde row tamamen sıfırla */
    .contact-form .row {
        margin: 0 !important;
        gap: 0 !important;
        row-gap: 0 !important;
    }
    
    /* Mobilde email ve telefon alanlarını alt alta tam genişlik yap */
    .contact-form .row .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Mobil için tüm alanlar eşit boşluk */
    .contact-form .form-group {
        margin-bottom: 0.9rem !important;
    }
    
    .contact-form .row .col-md-6 .form-group {
        margin-bottom: 0.9rem !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
    }
    
    .contact-form .form-control {
        padding: 0.9rem 1rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
    }
    
    .contact-form .btn-custom.w-100 {
        padding: 1rem !important;
        font-size: 1rem !important;
        margin-top: 0.4rem !important;
    }
    
    .contact-info-item {
        padding: 1.1rem 1rem !important;
    }
}

/* Data AOS Animations */
[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

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

/* === FEATURE ICON IMAGE === */
.feature-icon-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon-image {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.feature-icon-image img {
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon-image img {
    transform: scale(1.1);
}

