/* ============================================
   UĞUR USTA - ANA CSS DOSYASI
   Ana Renk: rgb(44, 179, 79)
   ============================================ */

/* ============================================
   GENEL AYARLAR & DEĞİŞKENLER
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Scroll bar gizle - Firefox */
    scrollbar-width: none;
    /* Scroll bar gizle - IE ve eski Edge */
    -ms-overflow-style: none;
}

/* Scroll bar gizle - Chrome, Safari, Edge */
html::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

:root {
    --primary-color: rgb(44, 179, 79);
    --primary-dark: rgb(35, 143, 63);
    --primary-light: rgba(44, 179, 79, 0.1);
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --text-gray: #666666;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; /* Font fallback - CLS önleme */
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    min-height: 100%;
    width: 100%;
    /* Scroll bar gizle - Chrome, Safari, Edge */
    -ms-overflow-style: none;
}

/* H1UserAgentFontSizeInSection uyarısını önlemek için h1 için açık stiller */
/* Tarayıcının eski otomatik font boyutu davranışını override etmek için */
h1 {
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    font-weight: 700;
    line-height: 1.2;
}

/* Section içindeki h1'ler için açık stiller (deprecated API uyarısını önlemek için) */
/* Tarayıcının otomatik küçültme davranışını devre dışı bırakmak için */
section h1,
article h1,
nav h1,
aside h1 {
    font-size: 2em; /* Açıkça belirtilmiş font-size */
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    font-weight: 700;
    line-height: 1.2;
}

/* Scroll bar gizle - Chrome, Safari, Edge */
body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

/* Tüm scrollable elementler için */
*::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 80px; /* CLS önleme için sabit yükseklik */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
    min-height: 80px; /* CLS önleme için sabit yükseklik */
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
    min-height: 50px; /* CLS önleme için sabit yükseklik */
}

.navbar-logo {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px; /* CLS önleme için minimum genişlik */
    flex-shrink: 0; /* CLS önleme */
}

.logo-image {
    height: 50px;
    width: 50px; /* CLS önleme için sabit genişlik */
    object-fit: contain;
    display: block;
    flex-shrink: 0; /* CLS önleme */
}

.logo-text {
    display: inline-block;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 10000;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    max-width: 100%;
    margin-left: auto;
    position: relative;
    z-index: 1001;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0;
    margin-left: auto;
    padding: 0;
    flex-wrap: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1001;
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 8px;
    white-space: nowrap;
    display: inline-block;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.dropdown {
    position: relative;
    z-index: 1002;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-toggle i,
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    margin-top: 10px;
    z-index: 9999;
    display: block;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.btn-nav-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: background 0.3s;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-call:hover {
    background: var(--primary-dark);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: auto;
}

/* ============================================
   FLOATING BUTTONS (WhatsApp & Phone)
   ============================================ */
.whatsapp-float,
.phone-float,
.scroll-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.whatsapp-float {
    left: 20px;
    bottom: 20px;
    background: #25D366;
}

.phone-float {
    left: 20px;
    bottom: 90px;
    background: var(--primary-color);
}

.scroll-to-top {
    right: 20px;
    bottom: 20px;
    background: var(--primary-dark);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

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

.whatsapp-float:hover,
.phone-float:hover,
.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../resimler/Modern%20home%20renovation%20background,%20green%20color%20theme,%20minimal%20design,%20professional%20look.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

/* ============================================
   HERO FULLSCREEN (Ana Sayfa)
   ============================================ */
.hero-fullscreen {
    min-height: calc(100vh - 80px); /* Navbar yüksekliğini çıkar - CLS önleme */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* Navbar yüksekliği */
    margin-top: 80px; /* Navbar için alan - CLS önleme */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    display: none;
}

.hero-content-fullscreen {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

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

.hero-subtitle-large {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 16px 35px;
    font-size: 18px;
    font-weight: 600;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   TRUST SECTION (Güven Alanı)
   ============================================ */
.trust-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.trust-wrapper {
    margin-top: 50px;
}

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

.trust-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 179, 79, 0.3);
    border-color: var(--primary-color);
}

.trust-icon {
    font-size: 70px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(44, 179, 79, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.trust-card:hover .trust-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--dark-gray);
    font-weight: 700;
    line-height: 1.3;
}

.trust-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   SERVICES SECTION FULL
   ============================================ */
.services-section-full {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.service-card-modern {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image-modern {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(44, 179, 79, 0.4);
    border-color: var(--primary-dark);
}

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

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

.service-icon-modern {
    font-size: 48px;
    color: var(--primary-color);
    margin: -30px auto 15px;
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.service-card-modern h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s;
}

.service-card-modern:hover h3 {
    color: var(--primary-dark);
}

.service-card-modern p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
}

.service-card-modern .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-card-modern .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   DISTRICTS SECTION (İlçeler)
   ============================================ */
.districts-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 50px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-color);
}

.turkey-map {
    width: 100%;
    height: auto;
    display: block;
}

.district-point {
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.district-point:hover {
    r: 12;
    fill: var(--primary-dark);
    filter: drop-shadow(0 0 8px rgba(44, 179, 79, 0.8));
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    width: 100%;
    box-sizing: border-box;
}

.district-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
    position: relative;
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.district-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.district-card:hover h3 {
    color: var(--primary-color);
}

.district-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    flex-shrink: 0;
    display: block;
    transition: all 0.3s ease;
}

.district-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1.3;
    width: 100%;
    word-wrap: break-word;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.district-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    flex-shrink: 0;
    line-height: 1.5;
    width: 100%;
    word-wrap: break-word;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 179, 79, 0.1) 100%);
    z-index: 1;
}


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

.about-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(44, 179, 79, 0.5);
    z-index: 2;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.about-badge i {
    font-size: 22px;
}

.about-content {
    text-align: left;
}

.about-header {
    margin-bottom: 30px;
}

.about-subtitle {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.about-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.about-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(44, 179, 79, 0.25);
    border-color: var(--primary-color);
}

.about-feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 179, 79, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.about-feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    font-size: 19px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s;
}

.about-feature-item:hover .feature-content h4 {
    color: var(--primary-color);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 179, 79, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    transition: transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS SECTION (Müşteri Yorumları)
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-wrapper {
    margin-top: 50px;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 179, 79, 0.2);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: #FFD700;
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 12px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

.section-title span {
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 5px 0;
    color: var(--text-gray);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--white);
    color: var(--dark-gray);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 107px; /* CLS önleme için sabit genişlik */
    height: 107px; /* CLS önleme için sabit yükseklik */
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-title {
    font-size: 24px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-web-design {
    margin: 5px 0;
}

.web-design-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.web-design-link:hover {
    color: var(--primary-color);
}

.web-design-icon {
    height: 20px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .footer-logo-image {
        width: 107px;
        height: 107px;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }
    
    .navbar-logo {
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 10000;
        margin-left: auto;
        order: 2;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s;
        box-shadow: var(--shadow);
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 9998;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        flex-wrap: nowrap;
        overflow: visible;
        position: relative;
        z-index: 1;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        white-space: normal;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
        white-space: normal;
    }
    
    .navbar-actions {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0;
        padding: 10px 0;
        z-index: 1;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 10px 30px;
        display: block;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-fullscreen {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-content-fullscreen h1 {
        font-size: 32px;
    }
    
    .hero-subtitle-large {
        font-size: 18px;
    }
    
    .trust-section,
    .services-section-full,
    .districts-section,
    .about-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 18px;
    }
    
    .testimonial-text {
        font-size: 12px;
    }
    
    .testimonial-author strong {
        font-size: 13px;
    }
    
    .testimonial-author span {
        font-size: 11px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .trust-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--light-gray);
        padding-bottom: 10px;
    }
    
    .trust-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    
    .trust-wrapper::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .trust-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .trust-grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        width: max-content;
        min-width: 100%;
    }
    
    .trust-card {
        padding: 30px 25px;
        min-height: 280px;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        border-radius: 15px;
    }
    
    .trust-icon {
        font-size: 55px;
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .trust-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .trust-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        padding: 20px 15px;
        margin: 30px auto 40px;
    }
    
    .turkey-map {
        max-height: 400px;
    }
    
    .turkey-map text {
        font-size: 24px;
    }
    
    .turkey-map text:last-of-type {
        font-size: 14px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        width: 100%;
    }
    
    .district-card {
        padding: 25px 18px;
        min-height: 150px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .district-card i {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .district-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .district-card p {
        font-size: 13px;
    }
    
    .about-wrapper {
        gap: 30px;
    }
    
    .about-image {
        max-height: 300px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .about-feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .whatsapp-float {
        left: 15px;
        bottom: 90px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .phone-float {
        display: none;
    }
    
    .scroll-to-top {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-section:nth-child(1),
    .footer-section:nth-child(4) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 10px 12px;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        flex-shrink: 0;
    }
    
    .navbar-logo {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        margin-right: auto;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 16px;
        display: inline-block;
    }
    
    .navbar-toggle {
        margin-left: 15px;
        flex-shrink: 0;
    }
    
    .footer-logo-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .footer-logo-image {
        width: 80px;
        height: 80px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-section:nth-child(1),
    .footer-section:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .district-card {
        padding: 25px 20px;
        min-height: 130px;
    }
    
    .hero-fullscreen {
        min-height: 100vh;
    }
    
    .hero-content-fullscreen h1 {
        font-size: 24px;
    }
    
    .hero-subtitle-large {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title-white {
        font-size: 28px;
    }
    
    .trust-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--light-gray);
        padding-bottom: 10px;
    }
    
    .trust-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    
    .trust-wrapper::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .trust-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .trust-grid {
        display: flex;
        grid-template-columns: none;
        gap: 18px;
        width: max-content;
        min-width: 100%;
    }
    
    .trust-card {
        padding: 28px 22px;
        min-height: 260px;
        min-width: 260px;
        max-width: 260px;
        flex-shrink: 0;
        border-radius: 15px;
    }
    
    .trust-icon {
        font-size: 50px;
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }
    
    .trust-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .trust-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-card-modern {
        padding: 30px 20px;
    }
    
    .service-icon-modern {
        font-size: 48px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }
    
    .testimonials-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 10px;
    }
    
    .testimonials-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    
    .testimonials-wrapper::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }
    
    .testimonials-wrapper::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        grid-template-columns: none;
        width: max-content;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        flex-shrink: 0;
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 12px;
    }
    
    .testimonial-rating {
        font-size: 10px;
    }
    
    .district-card {
        padding: 25px 15px;
        min-height: 140px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .district-card i {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .district-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .district-card p {
        font-size: 13px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .phone-float {
        display: none;
    }
    
    .scroll-to-top {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ============================================
   MODAL / POP-UP (KVKK, Çerezler)
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.modal-body ul {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-top: 10px;
}

.modal-body ul li {
    margin-bottom: 10px;
}

.modal-body ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.modal-body ul li a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: var(--light-gray);
    border-radius: 0 0 15px 15px;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 179, 79, 0.1);
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
        font-size: 16px; /* iOS zoom önleme */
    }
}
