/* ==========================================================================
   BAŞYAPIT ELEKTRİK - GÖRSELDEKİ TAM BİREBİR TASARIM
   Saf Beyaz Zemin, Düz Kırmızı Vurgular, Sıfır Efekt
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a, button, .btn-contact, .btn-appointment, .filter-btn {
    transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* --------------------------------------------------------------------------
   HEADER (GÖRSELDEKİ ÜST MENÜ)
   -------------------------------------------------------------------------- */
.site-header {
    background-color: #ffffff;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    font-size: 13px;
    opacity: 0.75;
}

.nav-links a.active,
.nav-links a:hover {
    color: #d83a27;
}

.btn-contact {
    display: inline-block;
    background-color: #d83a27;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: #bf2d1c;
}

.btn-contact i {
    margin-right: 5px;
}

/* NAV TOGGLE (MOBİL HAMBURGER) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
}

/* DROPDOWN MENÜ */
.nav-links .has-dropdown {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.has-dropdown .dropdown-arrow {
    font-size: 9px;
    opacity: 0.7;
    margin-left: 2px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    z-index: 999;
    padding: 16px 14px;
    list-style: none;
}

/* Mouse boşluğa düşünce kapanmasını önleyen görünmez köprü */
.has-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.has-dropdown .dropdown-grid-menu {
    display: none;
    grid-template-columns: repeat(3, 110px);
    gap: 14px 10px;
    min-width: 350px;
}

.has-dropdown .dropdown-grid-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.has-dropdown .dropdown-grid-menu .drop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 6px 10px;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.16s ease;
    width: 100%;
    box-sizing: border-box;
}

.has-dropdown .dropdown-grid-menu .drop-item .drop-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fdf4f3;
    color: #d83a27;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(216, 58, 39, 0.08);
    transition: all 0.16s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-dropdown .dropdown-grid-menu .drop-item .drop-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.16s ease;
}

.has-dropdown .dropdown-grid-menu .drop-item .drop-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    word-break: break-word;
    transition: color 0.16s ease;
}

/* İçe doğru göçme (pressed / inset) efekti */
.has-dropdown .dropdown-grid-menu .drop-item:hover {
    background: #fcf6f5;
    border-color: #fbd6d2;
    transform: scale(0.96);
}

.has-dropdown .dropdown-grid-menu .drop-item:hover .drop-icon {
    background: #fae8e6;
    color: #bf2d1c;
    box-shadow: inset 0 3px 6px rgba(191, 45, 28, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(2px) scale(0.94);
}

.has-dropdown .dropdown-grid-menu .drop-item:hover .drop-label {
    color: #d83a27;
}

.has-dropdown .dropdown-grid-menu .drop-item:active {
    transform: scale(0.92);
}

.has-dropdown .dropdown-grid-menu .drop-item:active .drop-icon {
    box-shadow: inset 0 4px 8px rgba(191, 45, 28, 0.35);
    transform: translateY(3px) scale(0.90);
}

.has-dropdown:hover .dropdown-grid-menu {
    display: grid;
}




/* --------------------------------------------------------------------------
   HERO BÖLÜMÜ (GÖRSELDEKİ BİREBİR YAPI)
   -------------------------------------------------------------------------- */
.hero-section {
    background-color: #ffffff;
    padding: 60px 0 0 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    padding-bottom: 60px;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-phone {
    font-size: 44px;
    font-weight: 700;
    color: #d83a27;
    margin-bottom: 24px;
    display: block;
}

.hero-address {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 36px;
}

.btn-appointment {
    display: inline-block;
    background-color: #d83a27;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-appointment:hover {
    background-color: #bf2d1c;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-person-img {
    max-height: 640px;
    width: auto;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   HİZMETLER (OUR SERVICES)
   -------------------------------------------------------------------------- */
.services-section {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    border-top: 1px solid #f1f5f9;
}

.section-label {
    color: #d83a27;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 28px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

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

.service-card ul {
    list-style: none;
    font-size: 13px;
    color: #475569;
}

.service-card ul li {
    padding: 4px 0;
}

.service-card ul li::before {
    content: "• ";
    color: #d83a27;
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   HAKKIMIZDA (GÖRSELDEKİ BİREBİR ŞAPKA & PLAN TASARIMI)
   -------------------------------------------------------------------------- */
.about-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #f1f5f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hat-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.about-tag {
    color: #d83a27;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 28px;
}

.about-checklist {
    list-style: none;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
}

.check-icon {
    width: 18px;
    height: 18px;
    fill: #d83a27;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon-fa {
    font-size: 18px;
    color: #d83a27;
    flex-shrink: 0;
    margin-top: 2px;
}


/* --------------------------------------------------------------------------
   AVANTAJLARIMIZ / BENEFITS (GÖRSELDEKİ BİREBİR YAPI)
   -------------------------------------------------------------------------- */
.benefits-section {
    background-color: #ffffff;
    padding: 70px 0 90px 0;
    border-top: 1px solid #f1f5f9;
}

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

.benefits-tag {
    color: #d83a27;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.25;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-check {
    width: 22px;
    height: 22px;
    fill: #d83a27;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-check-fa {
    font-size: 22px;
    color: #d83a27;
    flex-shrink: 0;
    margin-top: 2px;
}


.benefit-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SAYFA BAŞLIĞI BANDI (İÇ SAYFALAR İÇİN)
   -------------------------------------------------------------------------- */
.page-banner {
    background-color: #f8fafc;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-banner-tag {
    color: #d83a27;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.page-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* SIKÇA SORULAN SORULAR */
.faq-section {
    background-color: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #f1f5f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 24px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   İLETİŞİM SAYFASI
   -------------------------------------------------------------------------- */
.contact-page-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 40px;
}

.contact-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item .info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item .info-val {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.contact-info-item .info-phone {
    font-size: 22px;
    color: #d83a27;
}

.contact-form-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 40px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #1e293b;
    background-color: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #d83a27;
}

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

.housing-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   BİZE ULAŞIN / SOSYAL KANALLAR
   -------------------------------------------------------------------------- */
.social-contact-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.channel-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #334155;
}

.channel-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

/* Kanal Renkleri */
.channel-whatsapp .channel-icon {
    background-color: #25D366;
}

.channel-phone .channel-icon {
    background-color: #d83a27;
}

.channel-instagram .channel-icon {
    background-color: #E1306C;
}

.channel-maps .channel-icon {
    background-color: #4285F4;
}

.channel-facebook .channel-icon {
    background-color: #1877F2;
}

.channel-email .channel-icon {
    background-color: #ea4335;
}

.channel-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.channel-info p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.channel-action {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #d83a27;
}

/* --------------------------------------------------------------------------
   MÜŞTERİ YORUMLARI & ÇAĞRI (GÖRSELDEKİ BİREBİR YAPI)
   -------------------------------------------------------------------------- */
.reviews-section {
    background-color: #ffffff;
    padding: 70px 0 90px 0;
    border-top: 1px solid #f1f5f9;
}

.reviews-header {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 45px;
}

.trustpilot-logo {
    color: #00b67a;
    font-weight: 800;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto 35px auto;
}

.review-card {
    background-color: #f8fafc;
    border-radius: 4px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 15px;
    font-weight: 600;
    color: #d83a27;
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.reviewer-avatar-alt {
    background-color: #e2e8f0;
    color: #475569;
}

.reviewer-meta strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
}

.reviewer-meta span {
    font-size: 12px;
    color: #94a3b8;
}

.review-stars {
    color: #00b67a;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 80px;
}

.review-dots .dot {
    width: 6px;
    height: 6px;
    background-color: #1e293b;
    border-radius: 50%;
    display: inline-block;
}

.review-dots .dot.dot-red {
    background-color: #d83a27;
}

/* HAVE ANY HOUSING PROBLEMS / ÇAĞRI */
.housing-problems-block {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 30px auto;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.housing-title {
    font-size: 40px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.housing-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   FOOTER (GÖRSELDEKİ BİREBİR YAPI)
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #ffffff;
    padding: 70px 0 40px 0;
    border-top: 1px solid #f1f5f9;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.footer-phone:hover { color: #d83a27; }

.footer-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.footer-mail:hover { color: #d83a27; }

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 20px;
}

/* SOSYAL MEDYA İKONLARI */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}

.social-icon.whatsapp  { background: #25d366; }
.social-icon.instagram { background: #e1306c; }
.social-icon.facebook  { background: #1877f2; }
.social-icon:hover     { opacity: 0.85; }

/* FOOTER KOL BAŞLIĞI */
.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 18px;
}

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

.footer-nav-col ul li {
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav-col ul li a i {
    font-size: 10px;
    color: #d83a27;
}

.footer-nav-col ul li a:hover {
    color: #d83a27;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DÜZENLEMELER (MOBİL UYUMLULUK)
   -------------------------------------------------------------------------- */

/* Mobil Ekran Alt Sabit Hızlı Eylem Çubuğu (Varsayılan olarak masaüstünde gizli) */
.mobile-sticky-bar {
    display: none;
}

.mobile-nav-header,
.mobile-nav-footer,
.nav-backdrop {
    display: none;
}

@media (max-width: 900px) {
    .desktop-btn-contact {
        display: none !important;
    }

    .mobile-nav-header {
        display: flex;
    }

    .mobile-nav-footer {
        display: flex;
    }

    /* Genel Konteyner ve Tipografi */
    .container {
        padding: 0 16px;
    }

    /* Üst Menü & Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 8px 0;
    }

    .logo-img {
        height: 52px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 20px;
        color: #1e293b;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }

    .nav-toggle:active {
        background: #fee2e2;
        color: #d83a27;
    }

    /* Mobil Çekmece Arka Plan Karartması (Backdrop) */
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1090;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobil Yan Menü (Slide-out Drawer) */
    .main-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 340px;
        background: #ffffff;
        z-index: 1100;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    /* Menü Üst Kısım ve Kapatma Butonu */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        border-bottom: 1px solid #f1f5f9;
    }

    .mobile-nav-title {
        font-size: 17px;
        font-weight: 700;
        color: #1e293b;
    }

    .nav-close {
        background: #f1f5f9;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        color: #64748b;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-close:active {
        background: #fee2e2;
        color: #d83a27;
    }

    /* Menü Linkleri */
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 4px;
        align-items: stretch;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
        font-weight: 600;
        color: #1e293b;
        padding: 12px 14px;
        border-radius: 8px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: #fef2f2;
        color: #d83a27;
    }

    /* Mobil Dropdown Menüsü */
    .has-dropdown {
        padding: 0 !important;
    }

    .has-dropdown .dropdown-arrow {
        transition: transform 0.25s ease;
    }

    .has-dropdown.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .has-dropdown .dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        box-shadow: none;
        border: 1px solid #f1f5f9;
        background: #fafafa;
        border-radius: 8px;
        padding: 10px;
        margin-top: 4px;
        min-width: unset;
        width: 100%;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .has-dropdown .dropdown-grid-menu .drop-item {
        padding: 10px 4px 8px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
    }

    .has-dropdown .dropdown-grid-menu .drop-item .drop-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
    }

    .has-dropdown .dropdown-grid-menu .drop-item .drop-label {
        font-size: 12px;
    }

    /* Menü Alt Eylem Butonları */
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid #f1f5f9;
    }

    .mobile-nav-footer .btn-contact {
        width: 100%;
        text-align: center;
        padding: 13px;
        font-size: 16px;
    }

    .mobile-phone-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        color: #1e293b;
        font-weight: 700;
        font-size: 15px;
        background: #f8fafc;
    }

    /* Hero Bölümü */
    .hero-section {
        padding: 36px 0 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-left {
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-phone {
        font-size: 28px;
        margin-bottom: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hero-address {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn-appointment {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-person-img {
        max-height: 320px;
        width: auto;
    }

    /* Hizmetlerimiz Bölümü */
    .services-section {
        padding: 50px 0 60px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 22px 18px;
    }

    /* Hakkımızda Bölümü */
    .about-section {
        padding: 50px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .about-hat-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-heading {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .about-desc {
        font-size: 14.5px;
    }

    .about-checklist li {
        font-size: 13.5px;
    }

    /* Avantajlarımız Bölümü */
    .benefits-section {
        padding: 50px 0;
    }

    .benefits-title {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefit-item {
        gap: 14px;
    }

    .benefit-content h3 {
        font-size: 17px;
    }

    /* Müşteri Yorumları & Trustpilot */
    .reviews-section {
        padding: 50px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .housing-problems-block {
        margin: 40px auto 20px auto;
        padding-top: 40px;
    }

    .housing-title {
        font-size: 26px;
        line-height: 1.3;
    }

    /* Sayfa Bannerları (İç Sayfalar) */
    .page-banner {
        padding: 40px 0;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .page-banner-desc {
        font-size: 14.5px;
    }

    /* İletişim Sayfası */
    .contact-page-section {
        padding: 40px 0;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card,
    .contact-form-box {
        padding: 24px 18px;
    }

    .contact-heading,
    .form-title {
        font-size: 22px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .social-contact-section {
        padding: 40px 0;
    }

    .social-channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .channel-card {
        padding: 20px 16px;
    }

    /* S.S.S. Akordeon/Grid */
    .faq-section {
        padding: 50px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-item {
        padding: 18px 16px;
    }

    /* İlçe Rozetleri */
    .district-seo-section {
        padding: 40px 0;
    }

    .district-seo-title {
        font-size: 22px;
    }

    .district-badge {
        font-size: 12.5px;
        padding: 7px 12px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 95px 0; /* Alttaki sabit çubuğun üzerini örtmemesi için alt padding */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 36px;
    }

    .footer-brand .footer-logo {
        height: 52px;
        margin-bottom: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* MOBİL SABİT HIZLI EYLEM ÇUBUĞU (STICKY BOTTOM BAR) */
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
        z-index: 1050;
        padding: 8px 12px;
        gap: 10px;
        border-top: 1px solid #f1f5f9;
    }

    .sticky-bar-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 8px;
        font-size: 14.5px;
        font-weight: 700;
        color: #ffffff !important;
        text-decoration: none;
        transition: transform 0.15s ease, opacity 0.15s ease;
    }

    .sticky-bar-btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .sticky-bar-call {
        background-color: #d83a27;
        box-shadow: 0 2px 8px rgba(216, 58, 39, 0.35);
    }

    .sticky-bar-whatsapp {
        background-color: #25d366;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
    }

    .sticky-bar-btn i {
        font-size: 18px;
    }
}

/* Küçük Ekranlar (Örn. iPhone SE, 360px-400px genişlikler) */
@media (max-width: 420px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-phone {
        font-size: 24px;
    }

    .section-title,
    .about-heading,
    .benefits-title,
    .housing-title {
        font-size: 23px;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        grid-template-columns: 1fr !important;
    }
}

/* --------------------------------------------------------------------------
   BLOG SAYFASI STİLLERİ
   -------------------------------------------------------------------------- */
.blog-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 60px 0 80px;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #d83a27;
    background: #d83a27;
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.blog-card {
    border: 1px solid #ededed;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #d83a27;
}

.blog-card-body {
    padding: 22px 22px 20px;
}

.blog-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d83a27;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta .read-link {
    margin-left: auto;
    color: #d83a27;
    font-weight: 600;
    font-size: 13px;
}

.blog-card-meta .read-link:hover {
    text-decoration: underline;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d83a27;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid #f4f4f4;
}

.category-list a:hover {
    color: #d83a27;
}

.category-list .cat-count {
    background: #f2f2f2;
    color: #888;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
}

.popular-posts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popular-post-icon {
    font-size: 18px;
    color: #d83a27;
    flex-shrink: 0;
    margin-top: 2px;
}

.popular-post-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.popular-post-date {
    font-size: 12px;
    color: #aaa;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-cta {
    background: #d83a27;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    color: #fff;
    border: none;
}

.sidebar-cta-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-cta-text {
    font-size: 13.5px;
    opacity: 0.9;
    line-height: 1.55;
    margin-bottom: 20px;
}

.sidebar-cta-btn {
    display: inline-block;
    background: #fff;
    color: #d83a27;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
}

.sidebar-cta-btn:hover {
    background: #f5f5f5;
}

/* TEKİL BLOG YAZISI DETAY STİLLERİ */
.blog-detail-article {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.blog-detail-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.blog-detail-cat {
    display: inline-block;
    background: #fdf4f3;
    color: #d83a27;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
}

.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.blog-detail-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 32px 0 16px;
    padding-left: 12px;
    border-left: 4px solid #d83a27;
}

.blog-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 12px;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 16px 0 24px 24px;
    line-height: 1.75;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

.blog-alert-box {
    background: #fff8f7;
    border-left: 4px solid #d83a27;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

.blog-alert-box strong {
    color: #d83a27;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

/* İSTANBUL İLÇELERİ SEO BÖLÜMÜ */
.district-seo-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0;
}

.district-seo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 36px;
}

.district-seo-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.district-seo-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.district-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.district-badge {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.district-badge:hover {
    background: #d83a27;
    color: #ffffff;
    border-color: #d83a27;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   SAYFALAMA (PAGINATION) STİLLERİ (1, 2, 3...)
   -------------------------------------------------------------------------- */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-btn:hover {
    border-color: #d83a27;
    color: #d83a27;
    background: #fdf4f3;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: #d83a27;
    border-color: #d83a27;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(216, 58, 39, 0.25);
}

.pagination-prev,
.pagination-next {
    font-size: 13px;
    font-weight: 600;
}



