html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    vertical-align: baseline;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}


/* Floating Social Buttons Container */

.floating-social-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* WhatsApp Widget */

.whatsapp-widget-container {
    position: relative;
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-floating-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* WhatsApp Popup */

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: #25D366;
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-popup-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.whatsapp-popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-popup-avatar svg {
    width: 24px;
    height: 24px;
}

.whatsapp-popup-header-text {
    flex: 1;
}

.whatsapp-popup-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.whatsapp-popup-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-popup-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-popup-close svg {
    stroke: currentColor;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-message {
    margin-bottom: 16px;
}

.whatsapp-message-bubble {
    background: #f0f0f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    position: relative;
}

.whatsapp-message-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f0f0f0;
}

.whatsapp-popup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-popup-button:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    text-decoration: none;
    color: #ffffff;
}

.whatsapp-popup-button svg {
    stroke: currentColor;
}

/* Floating Call Button */

.floating-call-container {
    position: relative;
}

.floating-call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff4b4b;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 75, 75, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: call-bounce 2s ease-in-out infinite;
    text-decoration: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.5);
    text-decoration: none;
    color: #ffffff;
}

.floating-call-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes call-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Instagram Floating Button */

.instagram-widget-container {
    position: relative;
}

.instagram-floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: instagram-bounce 2s ease-in-out infinite;
    text-decoration: none;
}

.instagram-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
    text-decoration: none;
}

.instagram-floating-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes instagram-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Floating Social Buttons - Tüm Platformlar */
.floating-social-btn-container {
    position: relative;
}

.floating-social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: floating-bounce 2s ease-in-out infinite;
    text-decoration: none;
}

.floating-social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.floating-social-btn svg {
    width: 32px;
    height: 32px;
}

@keyframes floating-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Floating Button Colors */
.floating-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social-btn.facebook {
    background: #1877f2;
}

.floating-social-btn.linkedin {
    background: #0a66c2;
}

.floating-social-btn.twitter {
    background: #000000;
}

.floating-social-btn.youtube {
    background: #ff0000;
}

.floating-social-btn.tiktok {
    background: #000000;
}

.floating-social-btn.telegram {
    background: #0088cc;
}

.floating-social-btn.reddit {
    background: #ff4500;
}

/* WhatsApp Widget Responsive */
@media (max-width: 768px) {
    .whatsapp-popup {
        width: calc(100vw - 40px);
        max-width: 320px;
    }
    
    .floating-social-buttons {
        left: 15px;
        bottom: 15px;
    }
    
    .whatsapp-floating-btn,
    .instagram-floating-btn,
    .floating-social-btn,
    .floating-call-btn {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-floating-btn svg,
    .instagram-floating-btn svg,
    .floating-social-btn svg,
    .floating-call-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Basit main alanı */

main.container {
    padding: 24px 0;
}

/* Formlar (İletişim sayfası için) */

.form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.alert {
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 14px;
}

.alert-success {
    background: #ecfdf3;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
}

/* Hizmetler Grid (Hizmetler sayfası için) */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.service-body h2 {
    font-size: 18px;
    margin: 10px 0 6px;
}

/* Genel */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: #f5f5f7;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    min-height: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body'nin ilk child elementi için margin sıfırla */
body > *:first-child {
    margin-top: 0 !important;
}

.site-header {
    margin: 0 !important;
    padding: 0 !important;
    position: sticky;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    background: transparent;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER ÜST BANT (LOGO + İLETİŞİM) - 5 CONTAINER YAPISI */

.top-info-bar {
    background: #ffffff;
    border-bottom: none;
    border-top: none;
    font-size: 13px;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    position: relative;
    top: 0;
    position: relative;
    z-index: 1001;
}

.top-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 !important; /* üst boşluğu kaldır */
}

/* ============================================
   CONTAINER 1: LOGO ALANI
   Genişlik: 70px | Yükseklik: 70px
   ============================================ */
.top-logo {
    flex-shrink: 0;
    width: 70px; /* Container genişliği: 70px */
    height: 70px; /* Container yüksekliği: 70px */
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CONTAINER 2: TICKER ALANI
   Genişlik: flex: 1 (esnek) | Yükseklik: 40px (sabit - animasyonlu kaydırma için)
   ============================================ */
.ticker-container {
    flex: 1; /* Esnek genişlik - kalan alanı doldurur */
    min-width: 0;
    overflow: hidden; /* Ticker animasyonu için gizle */
    position: relative;
    height: 40px; /* Container yüksekliği: 40px (sabit) */
    display: flex;
    align-items: center;
    margin: 0 0px 0 0px;
    padding: 0;
}

/* ============================================
   CONTAINER 3: E-POSTA ALANI
   Genişlik: min-width: 200px | Yükseklik: auto
   ============================================ */
.info-item.email-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start; /* Üstten hizala (çok satırlı metinler için) */
    gap: 8px;
    padding: 0 12px;
    min-width: 200px; /* Container minimum genişliği: 200px */
    max-width: 100%; /* Container maksimum genişliği: 100% (taşmasın) */
    height: auto; /* Container yüksekliği: auto (içeriğe göre) */
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
}

/* ============================================
   CONTAINER 4: ADRES ALANI
   Genişlik: min-width: 200px, max-width: 280px | Yükseklik: auto
   ============================================ */
.info-item.address-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start; /* Üstten hizala (çok satırlı metinler için) */
    gap: 8px;
    padding: 0 12px;
    max-width: 280px; /* Container maksimum genişliği: 280px */
    min-width: 200px; /* Container minimum genişliği: 200px */
    height: auto; /* Container yüksekliği: auto (içeriğe göre) */
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
}

/* ============================================
   CONTAINER 5: TELEFON ALANI
   Genişlik: min-width: 160px | Yükseklik: auto
   ============================================ */
.info-item.phone-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start; /* Üstten hizala (çok satırlı metinler için) */
    gap: 8px;
    padding: 0 12px;
    min-width: 160px; /* Container minimum genişliği: 160px */
    max-width: 100%; /* Container maksimum genişliği: 100% (taşmasın) */
    height: auto; /* Container yüksekliği: auto (içeriğe göre) */
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
}

/* CONTAINER 1 İÇİ: Logo Link ve İçerik */
.top-logo .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.2s;
}

.uploaded-logo {
    max-width: 70px; /* Logo maksimum genişlik */
    max-height: 70px; /* Logo maksimum yükseklik */
    width: auto;
    height: auto;
    display: block;
    object-fit: contain; /* Logo oranını korur */
}




.logo-number {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-number-text {
    font-size: 64px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    z-index: 1;
    position: relative;
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: -2px;
}

.logo-house-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    color: #2563eb;
    z-index: 2;
    opacity: 0.95;
    pointer-events: none;
}

.logo-house-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.logo-house-people {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.logo-house-people svg:first-child {
    width: 32px;
    height: 32px;
    color: #60a5fa;
    opacity: 0.9;
}

.logo-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-main {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    font-style: normal;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text-tagline {
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: system-ui, sans-serif;
}

/* İletişim Bilgileri */
.top-info-items {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    justify-content: flex-end;
}

.info-item {
    display: flex;
    align-items: flex-start; /* Üstten hizala (çok satırlı metinler için) */
    gap: 10px;
    padding: 0 20px;
    position: relative;
    white-space: normal; /* Uzun metinler aşağı satıra geçsin */
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
}

.info-item:first-child {
    padding-left: 0;
}

.info-item:last-child {
    padding-right: 0;
}

.info-divider {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

.info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.info-icon svg {
    stroke: currentColor;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; /* Flexbox'ta taşmayı önler */
    flex: 1; /* Kalan alanı doldur */
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-transform: uppercase;
}

.info-link,
.info-text {
    font-size: 12px;
    color: #374151;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
    word-wrap: break-word; /* Uzun kelimeleri böl */
    overflow-wrap: break-word; /* Uzun kelimeleri böl */
    max-width: 100%; /* Container genişliğini aşmasın */
}

.info-link:hover {
    color: #2563eb;
    text-decoration: none;
}

.info-address {
    max-width: 280px;
}

.info-address .info-text {
    font-size: 11px;
    line-height: 1.4;
}

.info-phone {
    min-width: 160px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-link {
    font-size: 11px;
    color: #374151;
}

.phone-link-bold {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

/* TICKER ALANI */

.ticker-container {
    flex: 1; /* Esnek genişlik */
    min-width: 0;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    /* TICKER POZİSYON AYARLARI - Manuel olarak değiştirebilirsiniz */
    /* margin: [üst] [sağ] [alt] [sol]; */
    /* Örnek: margin: 0 16px 0 8px; (üst:0, sağ:16px, alt:0, sol:8px) */
    margin: 0 0px 0 0px; /* Logo ile arasında mesafe: sol margin değerini değiştirin */
    /* Veya transform ile pozisyon ayarı: */
    /* transform: translateX(10px); (sağa kaydırmak için pozitif, sola için negatif) */
    padding: 0;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden; /* Ticker animasyonu için gizle */
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap; /* Ticker animasyonu için tek satır */
    animation: ticker-scroll 30s linear infinite;
}

.ticker-text {
    font-size: 16px; /* Yazı tipi büyütüldü (13px -> 16px) */
    font-weight: 600;
    display: inline-block;
    white-space: nowrap; /* Ticker animasyonu için tek satır */
    /* Mor rengi kaldırıldı - sadece mavi, pembe, turuncu, yeşil */
    background: linear-gradient(90deg, #2563eb, #ec4899, #f59e0b, #10b981, #2563eb);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ticker-color-shift 4s ease infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes ticker-color-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Ticker hover durdurabilir */
.ticker-container:hover .ticker-content {
    animation-play-state: paused;
}

/* ANA MENÜ BARI */

.nav-bar {
    background: #000000;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.nav-inner-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: 0;
}

/* Hamburger Butonu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    order: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    margin-right: 12px;
}

/* Mobil Logo (Nav Bar İçinde) */
.mobile-nav-logo {
    display: none;
    align-items: center;
    order: 1;
    margin-right: auto;
}

.mobile-nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mobile-nav-logo .mobile-logo-number {
    width: 40px;
    height: 40px;
}

.mobile-nav-logo .logo-number-text {
    font-size: 32px;
}

.mobile-nav-logo .logo-house-icon {
    width: 24px;
    height: 24px;
}

.mobile-nav-logo .mobile-logo-text .logo-text-main {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.mobile-nav-logo .mobile-logo-text .logo-text-tagline {
    font-size: 9px;
    color: #ffffff;
    opacity: 0.9;
}

.mobile-nav-logo .uploaded-logo {
    max-width: 50px;
    max-height: 50px;
    height: auto;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    color: #1a1a1a;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo .logo-number {
    width: 50px;
    height: 50px;
}

.mobile-menu-logo .logo-number-text {
    font-size: 40px;
}

.mobile-menu-logo .logo-house-icon {
    width: 30px;
    height: 30px;
}

.mobile-menu-logo .logo-text-main {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.mobile-menu-logo .logo-text-tagline {
    font-size: 10px;
    color: #666;
}

.mobile-menu-logo .uploaded-logo {
    max-width: 120px;
    height: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
    color: #2563eb;
}

.mobile-nav-link.active {
    background-color: #2563eb;
    color: #ffffff;
}

.mobile-nav-link-toggle {
    cursor: pointer;
}

.mobile-nav-link-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-nav-link-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.mobile-nav-submenu.active {
    max-height: 1000px;
}

.mobile-nav-sublink {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-sublink:hover {
    background-color: #e9ecef;
    color: #2563eb;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #f8f9fa;
}

.mobile-lang-switch {
    display: flex;
    gap: 12px;
}

.mobile-lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
}

.mobile-lang-link:hover {
    background: #f0f0f0;
    border-color: #2563eb;
}

.mobile-lang-link.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Sol tarafta ANASAYFA butonu - artık ortada */
.nav-item.nav-home {
    background: transparent;
    display: flex;
    align-items: center;
    order: 1;
    transition: background-color 0.3s ease;
}

.nav-link-home {
    padding: 14px 24px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background: transparent !important;
    transition: background-color 0.3s ease;
}

/* Hover efekti - arka plan renklenir */
.nav-item.nav-home:hover {
    background-color: #2563eb;
}

/* Aktif durum için mavi arka plan */
.nav-item.nav-home.active {
    background-color: #2563eb;
}

/* Ortada siyah menü alanı */
.nav-menu-center {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.main-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    justify-content: center;
    padding-left: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease;
    border-radius: 0;
    position: relative;
    background-color: transparent;
}

/* Evde Bakım için tıklanamaz link */
.nav-item.has-dropdown > .nav-link:not([href]) {
    cursor: default;
    pointer-events: none;
}

/* Hover efekti - arka plan renklenir */
.nav-item:not(.nav-home) .nav-link:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Aktif durum için de mavi arka plan */
.nav-item.active:not(.nav-home) > .nav-link {
    background-color: #2563eb;
    color: #ffffff;
}

/* DROPDOWN MENÜ */

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #000000;
    border-top: 2px solid #2563eb;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    z-index: 999;
    visibility: hidden;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s;
}

.nav-dropdown a:hover {
    background: #2563eb;
    color: #ffffff;
}

/* MEGA DROPDOWN - Hizmetler için çok sütunlu menü */
.nav-item.has-mega-dropdown {
    position: static;
}

.nav-mega-dropdown {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 800px !important;
    max-width: 1000px;
    width: 90%;
    padding: 20px 16px !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0 !important;
}

.nav-mega-dropdown a {
    padding: 12px 18px;
    font-size: 14px;
    white-space: normal;
    border-radius: 4px;
    line-height: 1.5;
    word-wrap: break-word;
}

.nav-mega-dropdown a:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Mega dropdown scrollbar stilleri */
.nav-mega-dropdown::-webkit-scrollbar {
    width: 6px;
}

.nav-mega-dropdown::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.nav-mega-dropdown::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 3px;
}

.nav-mega-dropdown::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Responsive - mobilde tek sütun */
@media (max-width: 768px) {
    .nav-mega-dropdown {
        left: 0 !important;
        transform: none !important;
        min-width: 280px !important;
        max-width: 100%;
        width: 100%;
        grid-template-columns: 1fr;
        max-height: 300px;
        padding: 16px 12px !important;
    }
    
    .nav-mega-dropdown a {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* SAĞ TARAF: DİL + ARAMA */

.nav-right {
    display: flex;
    align-items: stretch;
    gap: 0;
    order: 3;
}

.lang-switch-box {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover efekti - arka plan renklenir */
.lang-switch-box:hover {
    background-color: #2563eb;
}

.lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-flag img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lang-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.lang-link:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.lang-link.active {
    font-weight: 600;
}

/* Dil Dropdown */
.lang-switch-box.has-dropdown:hover .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    z-index: 999;
    visibility: hidden;
    border-top: 2px solid #2563eb;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
    text-align: left;
}

.lang-dropdown-item .lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-dropdown-item:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.lang-dropdown-item.active {
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

.nav-search-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-search-btn svg {
    stroke: #ffffff;
}

.nav-search-btn:hover {
    background: #1a1a1a;
}

/* ARAMA MODAL */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 100px;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 10;
    color: #666;
}

.search-modal-close:hover {
    background: #f3f4f6;
    color: #000;
}

.search-modal-close svg {
    stroke: currentColor;
}

.search-modal-body {
    padding: 60px 40px 40px;
}

.search-title {
    font-size: 48px;
    font-weight: 300;
    color: #d1d5db;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-form {
    margin-bottom: 30px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    background: #ffffff;
    transition: border-color 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: #2563eb;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 16px;
    color: #0f172a;
    background: transparent;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-submit-btn {
    border: none;
    background: transparent;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s;
}

.search-submit-btn:hover {
    color: #2563eb;
}

.search-submit-btn svg {
    stroke: currentColor;
}

.search-results {
    min-height: 200px;
}

.search-results .search-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}

.search-results .search-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.search-results .search-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-results .search-group li + li {
    margin-top: 4px;
}

.search-results .search-group a {
    display: block;
    font-size: 14px;
    color: #111827;
    text-decoration: none;
    padding: 4px 0;
}

.search-results .search-group a:hover {
    color: #0066cc;
}

.search-results .no-results {
    text-align: center;
    padding: 40px 20px;
}

.search-results .no-results h3 {
    font-size: 24px;
    color: #374151;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.search-results .no-results p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Responsive tasarım */

@media (max-width: 1024px) {
    .nav-inner-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-menu-center {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }
    
    .main-nav {
        min-width: max-content;
    }
}

@media (max-width: 1200px) {
    .info-item {
        padding: 0 16px;
    }
    
    .logo-number {
        width: 70px;
        height: 70px;
    }
    
    .logo-number-text {
        font-size: 56px;
    }
    
    .logo-house-icon {
        width: 44px;
        height: 44px;
    }
    
    .ticker-container {
        margin: 0 8px; /* Responsive'de de daraltıldı */
        max-width: calc(100% - 150px); /* Responsive'de daha az boşluk */
    }
    
    .ticker-text {
        font-size: 14px; /* Mobilde biraz küçültüldü */
    }
}

@media (max-width: 900px) {
    .top-info-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .top-info-items {
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        justify-content: flex-start;
    }
    
    .info-item {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .info-divider {
        display: none;
    }
    
    .logo-text-main {
        font-size: 20px;
    }
    
    .info-address {
        max-width: 100%;
    }
    
    .info-phone {
        min-width: auto;
    }
    
    .ticker-container {
        width: 100%;
        max-width: 100%; /* Mobilde tam genişlik */
        margin: 0;
        order: 2;
    }
    
    .top-info-items {
        order: 3;
    }
    
    .nav-link-home {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .lang-switch-box {
        padding: 12px 16px;
    }
    
    .nav-search-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    /* Üst Bilgi Bar'ı Gizle */
    .top-info-bar {
        display: none !important;
    }
    
    /* Hamburger Butonu Göster */
    .hamburger-btn {
        display: flex;
    }
    
    /* Mobil Logo Göster */
    .mobile-nav-logo {
        display: flex;
    }
    
    /* Header Mobil - Menüyü Gizle */
    .nav-menu-center {
        display: none;
    }
    
    /* Nav Bar Padding Ayarla */
    .nav-bar {
        padding: 8px 16px;
    }
    
    .nav-inner-wrapper {
        align-items: center;
        padding: 0;
    }
    
    .nav-right {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .nav-item.nav-home {
        display: none;
    }
    
    .lang-switch-box {
        display: none;
    }
    
    .nav-search-btn {
        width: 44px;
        height: 44px;
        padding: 0;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .nav-link-home {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Logo Mobil */
    .logo-number {
        width: 60px;
        height: 60px;
    }
    
    .logo-number-text {
        font-size: 48px;
    }
    
    .logo-house-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-text-main {
        font-size: 18px;
    }
    
    .logo-text-tagline {
        font-size: 10px;
    }
    
    /* Ticker Mobil */
    .ticker-text {
        font-size: 12px;
    }
    
    /* Arama Modal Responsive */
    .search-modal {
        padding-top: 50px;
    }
    
    .search-modal-content {
        margin: 0 10px;
        max-height: calc(100vh - 100px);
    }
    
    .search-modal-body {
        padding: 50px 20px 30px;
    }
    
    .search-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .search-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .search-submit-btn {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    /* Container Mobil */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    main.container {
        padding: 24px 16px;
    }
}

/* İLETİŞİM SAYFASI */

.contact-page {
    padding: 40px 0;
}

.contact-page .container {
    max-width: 100% !important;
    width: 100% !important;
}

.contact-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    margin-top: 30px;
    width: 100% !important;
    position: relative !important;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    min-height: 200px !important;
    height: auto !important;
    overflow: visible !important;
}

.contact-form-section * {
    visibility: visible !important;
}

.contact-form {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ortak kart stili */
.contact-info-card,
.contact-map,
.contact-form-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2,
.contact-map h2,
.contact-form-section h2 {
    font-size: 24px;
    margin: 0 0 24px 0;
    color: #0f172a;
    font-weight: 600;
}

.contact-map h2 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
}

.contact-info-content h3 {
    font-size: 16px;
    margin: 0 0 6px 0;
    color: #374151;
    font-weight: 600;
}

.contact-info-content p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-content a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-link-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.contact-link-btn:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.contact-link-btn.whatsapp-btn {
    background: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-link-btn.whatsapp-btn:hover {
    background: #20ba5a;
}

.contact-social-media {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-icon.linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.social-icon.twitter {
    background: #000000;
    color: #ffffff;
}

.social-icon.youtube {
    background: #ff0000;
    color: #ffffff;
}

.social-icon.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.social-icon.tiktok {
    background: #000000;
    color: #ffffff;
}

.social-icon.telegram {
    background: #0088cc;
    color: #ffffff;
}

.social-icon.reddit {
    background: #ff4500;
    color: #ffffff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.contact-form .required {
    color: #ef4444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form .form-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-code-select {
    flex: 0 0 180px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.country-code-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

.subject-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.subject-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.subject-option:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.subject-option input[type="radio"] {
    margin: 0 8px 0 0;
    cursor: pointer;
}

.subject-option input[type="radio"]:checked + span {
    color: #2563eb;
    font-weight: 600;
}

.subject-option:has(input[type="radio"]:checked) {
    border-color: #2563eb;
    background: #eff6ff;
}

.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
}

.checkbox-label .checkbox-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label .checkbox-link:hover {
    text-decoration: underline;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* İletişim Sayfası Responsive */
@media (max-width: 968px) {
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-page h1 {
        font-size: 28px;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-top: 20px;
        padding: 0 16px;
    }
    
    .contact-info-section {
        gap: 24px;
    }
    
    .contact-info-card,
    .contact-map,
    .contact-form-section {
        padding: 24px;
    }
    
    .contact-info-card h2,
    .contact-map h2,
    .contact-form-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
    
    .contact-info-content h3 {
        font-size: 15px;
    }
    
    .contact-info-content p {
        font-size: 14px;
    }
    
    .contact-link-btn {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .country-code-select {
        width: 100%;
    }
    
    .phone-input-wrapper input[type="tel"] {
        width: 100%;
    }
    
    .subject-options {
        flex-direction: column;
        gap: 12px;
    }
    
    .subject-option {
        width: 100%;
        padding: 12px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-social-media {
        margin-top: 20px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* İletişim Sayfası Mobil */
    .contact-page {
        padding: 24px 0;
    }
    
    .contact-page h1 {
        font-size: 26px;
        padding: 0 16px;
        margin-bottom: 20px;
    }
    
    .contact-wrapper {
        padding: 0 16px;
        gap: 24px;
    }
    
    .contact-info-card,
    .contact-map,
    .contact-form-section {
        padding: 20px;
    }
    
    .contact-info-card h2,
    .contact-map h2,
    .contact-form-section h2 {
        font-size: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 18px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .contact-info-content h3 {
        font-size: 15px;
    }
    
    .contact-info-content p {
        font-size: 13px;
    }
    
    .map-container iframe {
        height: 280px;
    }
    
    .contact-form .form-group {
        margin-bottom: 18px;
    }
    
    .contact-form label {
        font-size: 14px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .subject-option {
        padding: 10px;
        font-size: 14px;
    }
    
    .checkbox-label {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .checkbox-link {
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 12px 18px;
        font-size: 15px;
    }
}

/* FOOTER */

.site-footer {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer Logo */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.footer-logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: system-ui, sans-serif;
}

.footer-company-info {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 8px;
}

/* Footer Middle */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Footer Right */
.footer-right {
    align-items: flex-end;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 200px;
}

.footer-btn {
    display: block;
    padding: 10px 16px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}

.footer-btn:hover {
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
}

.footer-social-media {
    margin-top: 20px;
}

.footer-social-media .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-media .social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.footer-social-media .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-social-media .social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer sosyal medya ikonları için özel renkler - iletişim sayfasıyla aynı */
.footer-social-media .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.footer-social-media .social-icon.facebook {
    background: #1877f2;
    color: #ffffff;
}

.footer-social-media .social-icon.linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.footer-social-media .social-icon.youtube {
    background: #ff0000;
    color: #ffffff;
}

.footer-social-media .social-icon.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.footer-social-media .social-icon.tiktok {
    background: #000000;
    color: #ffffff;
}

.footer-social-media .social-icon.telegram {
    background: #0088cc;
    color: #ffffff;
}

.footer-social-media .social-icon.reddit {
    background: #ff4500;
    color: #ffffff;
}

.footer-social-media .social-icon.twitter {
    background: #000000;
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-right {
        align-items: flex-start;
    }
    
    .footer-buttons {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Footer Mobil */
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-column {
        gap: 16px;
    }
    
    .footer-logo-wrapper img {
        max-width: 120px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .cookie-consent {
        padding: 16px;
        font-size: 14px;
    }
    
    .cookie-consent p {
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-consent-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }
}

    /* Çok Küçük Ekranlar (480px ve altı) */
@media (max-width: 480px) {
    /* Nav Bar Çok Küçük */
    .nav-bar {
        padding: 6px 12px;
    }
    
    .hamburger-btn {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    /* Mobil Logo Çok Küçük */
    .mobile-nav-logo .mobile-logo-number {
        width: 36px;
        height: 36px;
    }
    
    .mobile-nav-logo .logo-number-text {
        font-size: 28px;
    }
    
    .mobile-nav-logo .logo-house-icon {
        width: 20px;
        height: 20px;
    }
    
    .mobile-nav-logo .mobile-logo-text .logo-text-main {
        font-size: 13px;
    }
    
    .mobile-nav-logo .mobile-logo-text .logo-text-tagline {
        font-size: 8px;
    }
    
    .mobile-nav-logo .uploaded-logo {
        max-width: 40px;
        max-height: 40px;
    }
    
    .nav-search-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Mobil Menü Çok Küçük */
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-header {
        padding: 16px;
    }
    
    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .mobile-nav-sublink {
        padding: 10px 16px 10px 32px;
        font-size: 13px;
    }
    
    /* Blog Grid Çok Küçük */
    .blog-grid {
        gap: 20px;
    }
    
    .blog-card-image-wrapper {
        height: 180px;
    }
    
    .blog-card-body {
        padding: 16px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    /* Blog Post Detay Çok Küçük */
    .blog-post {
        padding: 24px 12px;
    }
    
    .blog-post-header h1 {
        font-size: 24px;
    }
    
    .blog-post-excerpt {
        font-size: 15px;
    }
    
    .blog-post-content {
        font-size: 14px;
    }
    
    /* Sayfa İçerik Çok Küçük */
    .page-content {
        padding: 24px 12px;
    }
    
    .page-content h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 18px;
    }
    
    .content-section h3 {
        font-size: 16px;
    }
    
    .content-section p {
        font-size: 14px;
    }
    
    /* Arama Sayfası Çok Küçük */
    .search-title {
        font-size: 24px;
    }
    
    .search-section h2 {
        font-size: 20px;
    }
    
    /* Footer Çok Küçük */
    .site-footer {
        padding: 24px 0 16px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    .footer-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    /* Form Çok Küçük */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .rating-options label {
        font-size: 13px;
        padding: 8px;
    }
    
    /* Container Çok Küçük */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    main.container {
        padding: 20px 12px;
    }
    
    /* Anasayfa Çok Küçük */
    .home-hero,
    .about-summary,
    .home-homecare-grid,
    .contact-cta {
        padding: 16px;
    }
    
    .card-grid {
        gap: 16px;
    }
    
    .card {
        padding: 16px;
    }
    
    .card h2 {
        font-size: 18px;
    }
    
    .card h3 {
        font-size: 16px;
    }
    
    /* Hakkımızda Çok Küçük */
    .about-hero {
        padding: 30px 12px;
    }
    
    .about-section {
        margin-bottom: 30px;
        padding-bottom: 24px;
    }
    
    /* İletişim Çok Küçük */
    .contact-page {
        padding: 24px 0;
    }
    
    .contact-page h1 {
        font-size: 24px;
        padding: 0 12px;
    }
    
    .contact-wrapper {
        gap: 20px;
        padding: 0 12px;
    }
    
    .contact-info-section {
        gap: 16px;
    }
    
    .contact-info-card,
    .contact-map,
    .contact-form-section {
        padding: 20px;
    }
    
    .contact-info-card h2,
    .contact-map h2,
    .contact-form-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .contact-info-item {
        margin-bottom: 16px;
    }
    
    .contact-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
    
    .contact-info-content h3 {
        font-size: 14px;
    }
    
    .contact-info-content p {
        font-size: 13px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .contact-form .form-group {
        margin-bottom: 16px;
    }
    
    .contact-form label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .checkbox-label {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .checkbox-link {
        font-size: 12px;
    }
}

/* Page Content Styles */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    margin-top: 0;
}

.content-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    margin-top: 20px;
}

.content-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}

.content-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.content-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.content-section a {
    color: #2563eb;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Blog Post Detay Sayfası Görsel */
.blog-post-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #f5f5f5;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

/* BLOG SAYFASI TASARIMI */

.blog-page {
    padding: 40px 16px;
    max-width: 1200px;
}

.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #999;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
}

.blog-card-category {
    background: #2563eb;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.blog-card-date {
    color: #666;
    font-weight: 500;
}

.blog-card-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #2563eb;
}

.blog-card-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    gap: 10px;
    color: #1d4ed8;
}

.blog-card-link svg {
    transition: transform 0.2s ease;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Blog Post Detay Sayfası */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.blog-post-excerpt {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.blog-post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

/* Arama Sayfası */
.search-results {
    margin-top: 30px;
}

.search-results.no-query,
.search-results.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.search-results.no-results h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.search-section {
    margin-bottom: 50px;
}

.search-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

/* Sayfa İçerik Stilleri */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

/* İnsan Kaynakları Sayfası */
.hr-page .hr-positions ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hr-page .hr-positions li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    color: #333;
}

.hr-page .hr-positions li:last-child {
    border-bottom: none;
}

.hr-page .hr-application {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

/* SSS Sayfası */
.faq-page .faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Memnuniyet Anketi Sayfası */
.survey-page .simple-form {
    margin-top: 30px;
}

.rating-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.rating-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.rating-options label:hover {
    background-color: #f5f5f5;
}

.rating-options input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-info-text {
    font-size: 14px;
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}

.form-info-text a {
    color: #2563eb;
    text-decoration: none;
}

.form-info-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-header h1 {
        font-size: 28px;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
    
    .blog-card-body {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
    }
    
    /* Blog Post Detay Mobil */
    .blog-post {
        padding: 30px 16px;
    }
    
    .blog-post-header h1 {
        font-size: 28px;
    }
    
    .blog-post-excerpt {
        font-size: 16px;
    }
    
    .blog-post-content {
        font-size: 15px;
    }
    
    .blog-post-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    /* Arama Sayfası Mobil */
    .search-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    /* Sayfa İçerik Mobil */
    .page-content {
        padding: 30px 16px;
    }
    
    .page-content h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .content-section {
        margin-bottom: 24px;
    }
    
    .content-section h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .content-section h3 {
        font-size: 18px;
    }
    
    .content-section p {
        font-size: 15px;
    }
    
    /* İnsan Kaynakları Mobil */
    .hr-page .hr-positions li {
        font-size: 15px;
        padding: 10px 0;
    }
    
    /* SSS Mobil */
    .faq-item {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
    
    .faq-item h2 {
        font-size: 18px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
    
    /* Memnuniyet Anketi Mobil */
    .rating-options {
        gap: 10px;
    }
    
    .rating-options label {
        font-size: 14px;
        padding: 10px;
    }
    
    .form-info-text {
        font-size: 13px;
    }
}

/* Evde Bakım Sayfası */
.evde-bakim-page {
    padding: 40px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.evde-bakim-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid #e5e7eb;
}

.evde-bakim-tab {
    padding: 16px 32px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: #000;
    color: #fff;
}

.evde-bakim-tab.active {
    background: #2563eb;
    color: #fff;
}

.evde-bakim-tab:not(.active) {
    background: #000;
    color: #fff;
}

.evde-bakim-tab:not(.active) a {
    color: #fff;
    text-decoration: none;
}

.evde-bakim-tab:not(.active) a:hover {
    opacity: 0.8;
}

.evde-bakim-content {
    background: #fff;
    padding: 30px;
    margin-top: 0;
    border: 1px solid #e5e7eb;
    border-top: none;
}

.evde-bakim-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evde-bakim-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.evde-bakim-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.evde-bakim-list li a {
    color: #1f2937;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
}

.evde-bakim-list li a:hover {
    color: #2563eb;
}

@media (max-width: 768px) {
    .evde-bakim-tabs {
        flex-direction: column;
    }
    
    .evde-bakim-tab {
        width: 100%;
        text-align: center;
    }
    
    .evde-bakim-content {
        padding: 20px;
    }
}

.contact-form #email {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
  main { display: flow-root; }
