/* ========================================
   SİVAS GÜLER HALI YIKAMA - STIL-1 KURUMSAL KLASİK
   Renkler: --renk1 (#183565) + --renk2 (#37a8a7)
   Fontlar: Playfair Display (başlık) + Inter (gövde)
   ======================================== */

/* ---------- RESET & TEMEL ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --renk1: #183565;
    --renk2: #37a8a7;
    --renk1-rgb: 24, 53, 101;
    --renk2-rgb: 55, 168, 167;
    --text: #1a2332;
    --text-light: #5a6578;
    --border: #e8ebf0;
    --bg-light: #f7f9fc;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --container-max: 1240px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--renk1);
    line-height: 1.25;
    font-weight: 700;
    margin-top: 0;
}

p { margin-top: 0; }

a { color: var(--renk2); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--renk1); }

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

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--renk1);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--renk1);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar a { color: inherit; display: inline-flex; align-items: center; gap: 8px; }
.top-bar a:hover { color: var(--renk2); }
.top-bar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-left > a, .top-bar-left > span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 13px;
}
.top-bar-right a:hover { background: var(--renk2); color: var(--white); }

/* ---------- HEADER ---------- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.logo img { max-height: 60px; width: auto; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 700;
    color: var(--renk1);
}

.main-nav { flex: 1; }
.nav-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nav-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}
.nav-menu li a::after {
    content: ''; position: absolute;
    left: 50%; bottom: 2px;
    width: 0; height: 2px;
    background: var(--renk2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-menu li a:hover,
.nav-menu li a[aria-current="page"] {
    color: var(--renk1);
}
.nav-menu li a:hover::after,
.nav-menu li a[aria-current="page"]::after {
    width: 50%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--renk1);
    font-weight: 500;
}
.phone-btn:hover { color: var(--renk2); }
.phone-btn i {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(var(--renk2-rgb), 0.1);
    border-radius: 50%;
    color: var(--renk2);
    font-size: 16px;
}
.phone-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.phone-btn-text small { font-size: 11px; color: var(--text-light); font-weight: 400; }
.phone-btn-text strong { font-size: 16px; color: var(--renk1); }

.mobile-toggle {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--renk1);
    transition: var(--transition);
}

.mobile-close {
    display: none;
    position: absolute;
    top: 20px; right: 20px;
    background: transparent; border: none;
    font-size: 24px; color: var(--renk1);
    cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn-primary-custom,
.btn-outline-custom,
.btn-light-custom,
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-body);
}

.btn-primary-custom {
    background: var(--renk1);
    color: var(--white);
    border-color: var(--renk1);
}
.btn-primary-custom:hover {
    background: var(--renk2);
    border-color: var(--renk2);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--renk2-rgb), 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--renk1);
    border-color: var(--renk1);
}
.btn-outline-custom:hover {
    background: var(--renk1);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light-custom {
    background: var(--white);
    color: var(--renk1);
    border-color: var(--white);
}
.btn-light-custom:hover {
    background: var(--renk2);
    border-color: var(--renk2);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--renk1);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--renk1);
}
.hero-swiper { height: calc(100vh - 60px); min-height: 540px; max-height: 720px; }
.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}
.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
    padding: 60px 0;
}
.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.15;
}
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 32px;
    max-width: 580px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-swiper .swiper-pagination {
    bottom: 30px;
}
.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px; height: 12px;
    transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--renk2);
    width: 36px;
    border-radius: 6px;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--renk2);
    border-color: var(--renk2);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
}

/* ---------- SECTION BAŞLIKLARI (STIL-1: alt çizgili, serif) ---------- */
.section-head { margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    color: var(--renk2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}
.section-head.text-center .section-tag::before,
.section-head.text-center .section-tag::after {
    content: ''; position: absolute;
    top: 50%;
    width: 30px; height: 1px;
    background: var(--renk2);
}
.section-head.text-center .section-tag::before { right: 100%; }
.section-head.text-center .section-tag::after { left: 100%; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--renk1);
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 22px;
}
.section-head.text-center .section-title {
    text-align: center;
}
.section-head.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 3px;
    background: var(--renk2);
}

.section-title:not(.section-head .section-title)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 70px; height: 3px;
    background: var(--renk2);
}

.section-sub {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

/* ---------- HAKKIMIZDA SECTION ---------- */
.section-about, .section-about-page { padding: 100px 0; background: var(--white); }
.section-about-page { padding-top: 80px; }

.about-image-wrap { position: relative; padding: 20px; }
.about-figure {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-figure::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 60%; height: 60%;
    border: 3px solid var(--renk2);
    border-radius: 4px;
    z-index: -1;
}
.about-figure img {
    width: 100%; height: auto;
    display: block;
}
.about-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 120px;
    border-radius: 4px;
}
.about-experience-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--renk2);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.about-experience-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
    color: var(--white);
}
.about-experience-badge span {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}
.about-text, .about-text-full { font-size: 16px; color: var(--text-light); margin-bottom: 24px; line-height: 1.8; }
.about-text-full p { margin-bottom: 16px; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(var(--renk2-rgb), 0.1);
    color: var(--renk2);
    border-radius: 4px;
    font-size: 22px;
}
.about-feature h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    margin-bottom: 6px;
    color: var(--renk1);
}
.about-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ---------- HIZMETLER ---------- */
.section-services, .section-services-page { padding: 100px 0; background: var(--bg-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card-inner { display: block; color: inherit; }
.service-card-inner:hover { color: inherit; }

.service-img {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-placeholder {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 56px;
}

.service-body { padding: 28px 26px; position: relative; }
.service-icon {
    position: absolute;
    top: -26px; right: 26px;
    width: 52px; height: 52px;
    background: var(--renk2);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(var(--renk2-rgb), 0.3);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--renk1);
    transform: rotate(10deg);
}
.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--renk1);
    line-height: 1.3;
}
.service-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
}
.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--renk2);
    font-weight: 600;
    font-size: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    transition: var(--transition);
}
.service-more i { transition: transform 0.3s ease; }
.service-card:hover .service-more i { transform: translateX(4px); }

/* ---------- COUNTER ---------- */
.section-counter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--renk1) 0%, #0d2444 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.section-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(var(--renk2-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--renk2-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative; z-index: 1;
}
.counter-item { text-align: center; }
.counter-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(var(--renk2-rgb), 0.15);
    border: 2px solid rgba(var(--renk2-rgb), 0.4);
    color: var(--renk2);
    border-radius: 50%;
    font-size: 26px;
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
}
.counter-suffix { color: var(--renk2); }
.counter-label {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-body);
}

/* ---------- NEDEN BİZ ---------- */
.section-why { padding: 100px 0; background: var(--white); }
.section-why-about { background: var(--bg-light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--renk2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotate(360deg); }
.why-number {
    position: absolute;
    top: 20px; right: 24px;
    font-family: var(--font-heading);
    font-size: 64px;
    color: rgba(var(--renk1-rgb), 0.06);
    line-height: 1;
    font-weight: 700;
}
.why-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--renk1);
}
.why-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- GALLERY ---------- */
.section-gallery { padding: 100px 0; background: var(--bg-light); }
.section-gallery-page { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    display: block;
    cursor: pointer;
}
.gallery-item figure { margin: 0; height: 100%; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--renk1-rgb), 0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 32px;
    margin: 0;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-btn {
    padding: 10px 22px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--renk2); color: var(--renk2); }
.filter-btn.active {
    background: var(--renk1);
    border-color: var(--renk1);
    color: var(--white);
}

/* ---------- TESTIMONIALS ---------- */
.section-testimonials { padding: 100px 0; background: var(--white); }
.testimonials-swiper { padding: 20px 0 60px; }
.testimonial-card {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: auto;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px; left: 24px;
    font-family: var(--font-heading);
    font-size: 140px;
    color: var(--renk2);
    line-height: 1;
    opacity: 0.3;
}
.testimonial-stars {
    color: #f5b301;
    font-size: 15px;
    margin-bottom: 16px;
}
.testimonial-stars i { margin-right: 2px; }
.testimonial-text {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
    quotes: none;
    padding: 0;
    border: none;
}
.testimonial-text::before, .testimonial-text::after { content: none; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-avatar-placeholder {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}
.testimonial-name {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--renk1);
    font-size: 15px;
    font-family: var(--font-body);
}
.testimonial-role {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}
.testimonials-pagination { bottom: 0 !important; }
.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--renk2);
}

/* ---------- BRANDS ---------- */
.section-brands { padding: 80px 0; background: var(--bg-light); }
.brands-swiper { padding: 20px 0; }
.brand-item {
    display: flex; align-items: center; justify-content: center;
    height: 100px;
    background: var(--white);
    border-radius: 4px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.brand-item:hover { border-color: var(--renk2); box-shadow: var(--shadow-md); }
.brand-item img { max-height: 60px; width: auto; filter: grayscale(1); opacity: 0.7; transition: var(--transition); }
.brand-item:hover img { filter: grayscale(0); opacity: 1; }
.brand-text-placeholder {
    font-family: var(--font-heading);
    color: var(--renk1);
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}

/* ---------- BLOG ---------- */
.section-blog, .section-blog-page { padding: 100px 0; background: var(--white); }
.section-blog-page { background: var(--bg-light); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover { color: inherit; }
.blog-img { margin: 0; aspect-ratio: 16/10; overflow: hidden; }
.blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-img-placeholder {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 50px;
}
.blog-body { padding: 26px; }
.blog-meta {
    display: flex;
    gap: 16px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.blog-meta i { margin-right: 4px; color: var(--renk2); }
.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--renk1);
    line-height: 1.3;
}
.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--renk2);
    font-weight: 600;
    font-size: 14px;
}
.blog-card:hover .blog-more i { transform: translateX(4px); }

/* Pagination */
.pagination-nav { margin-top: 50px; }
.pagination-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}
.pagination-list a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.pagination-list a:hover { border-color: var(--renk2); color: var(--renk2); }
.pagination-list a.active { background: var(--renk1); color: var(--white); border-color: var(--renk1); }

/* ---------- CTA ---------- */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--renk1) 0%, var(--renk2) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border: 40px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 14px;
    line-height: 1.3;
}
.cta-desc {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 680px;
    margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- PAGE BANNER ---------- */
.page-banner {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, var(--renk1) 0%, var(--renk2) 100%);
    color: var(--white);
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--renk1-rgb), 0.6), rgba(var(--renk2-rgb), 0.4));
    pointer-events: none;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.2;
}
.breadcrumb-nav { display: flex; justify-content: center; }
.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.breadcrumb-list li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.breadcrumb-list li:not(:first-child)::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb-list li a { color: var(--white); }
.breadcrumb-list li a:hover { color: var(--renk2); }
.breadcrumb-list li[aria-current="page"] { color: var(--renk2); }
.page-banner-blog { padding: 120px 0 80px; }
.blog-detail-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-top: 20px;
}
.blog-detail-meta i { margin-right: 5px; color: var(--renk2); }

/* ---------- MISSION CARDS ---------- */
.section-mission { padding: 80px 0; background: var(--bg-light); }
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.mission-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
}
.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--renk1);
}
.mission-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* ---------- TEAM ---------- */
.section-team { padding: 100px 0; background: var(--white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.team-img { margin: 0; aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-img-placeholder {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 80px; font-weight: 700;
}
.team-body { padding: 24px 20px; }
.team-name {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--renk1);
}
.team-role {
    display: block;
    font-size: 13px;
    color: var(--renk2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.team-desc { color: var(--text-light); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.team-social {
    display: flex; justify-content: center; gap: 10px;
}
.team-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--renk1);
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--renk2); color: var(--white); border-color: var(--renk2); }

/* ---------- CONTACT ---------- */
.section-contact-info { padding: 70px 0 30px; background: var(--white); }
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.contact-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(var(--renk2-rgb), 0.1);
    color: var(--renk2);
    border-radius: 50%;
    font-size: 24px;
}
.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--renk1);
}
.contact-card address {
    font-style: normal;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}
.contact-card address a { color: var(--text-light); }
.contact-card address a:hover { color: var(--renk2); }

.section-contact-form { padding: 70px 0 100px; background: var(--bg-light); }
.form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-sub { color: var(--text-light); margin-bottom: 26px; font-size: 15px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}
.form-group label span[aria-label] { color: #e74c3c; }
.form-control, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--renk2);
    box-shadow: 0 0 0 3px rgba(var(--renk2-rgb), 0.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }

.map-wrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
    background: var(--bg-light);
}
.map-wrap iframe { border: 0; width: 100%; height: 100%; min-height: 450px; }

/* ---------- FAQ ---------- */
.section-faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] { border-color: var(--renk2); box-shadow: var(--shadow-md); }
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--renk1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    list-style: none;
    font-family: var(--font-heading);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    width: 30px; height: 30px;
    min-width: 30px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(var(--renk2-rgb), 0.1);
    color: var(--renk2);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--renk2); color: var(--white); }
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ---------- BLOG DETAIL ---------- */
.section-blog-detail, .section-service-detail { padding: 80px 0; background: var(--white); }
.blog-detail-content, .service-detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.blog-detail-img, .service-detail-img {
    margin: -40px -40px 30px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}
.blog-detail-img img, .service-detail-img img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}
.blog-detail-text, .service-detail-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}
.blog-detail-text h2, .blog-detail-text h3, .blog-detail-text h4,
.service-detail-text h2, .service-detail-text h3, .service-detail-text h4 {
    color: var(--renk1);
    margin-top: 32px;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}
.blog-detail-text h2, .service-detail-text h2 { font-size: 26px; }
.blog-detail-text h3, .service-detail-text h3 { font-size: 22px; }
.blog-detail-text p, .service-detail-text p { margin-bottom: 16px; }
.blog-detail-text ul, .blog-detail-text ol,
.service-detail-text ul, .service-detail-text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}
.blog-detail-text li, .service-detail-text li { margin-bottom: 8px; }
.blog-detail-text a, .service-detail-text a { color: var(--renk2); text-decoration: underline; }
.blog-detail-text blockquote, .service-detail-text blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--renk2);
    padding: 20px 24px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text);
}

.feature-list { list-style: none; padding: 0; margin: 20px 0; }
.feature-list li {
    padding: 10px 0;
    display: flex; align-items: center;
    gap: 12px;
    color: var(--text);
}
.feature-list li i { color: var(--renk2); font-size: 18px; }

.service-cta-box {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    color: var(--white);
    padding: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-cta-box h3 { color: var(--white); font-family: var(--font-heading); margin-bottom: 4px; font-size: 22px; }
.service-cta-box p { margin: 0; color: rgba(255,255,255,0.9); font-size: 15px; }
.service-cta-box .btn-primary-custom {
    background: var(--white);
    color: var(--renk1);
    border-color: var(--white);
}
.service-cta-box .btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.blog-share {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-share strong { color: var(--renk1); }
.blog-share a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-light);
    color: var(--renk1);
    border-radius: 50%;
    transition: var(--transition);
}
.blog-share a:hover { background: var(--renk2); color: var(--white); }

/* ---------- SIDEBAR ---------- */
.sidebar-widget {
    background: var(--white);
    padding: 26px;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.sidebar-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--renk1);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--renk2);
    position: relative;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: 8px; }
.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}
.sidebar-list a:hover { background: var(--renk1); color: var(--white); }
.sidebar-list a:hover i { color: var(--white); }
.sidebar-list a > i:first-child { color: var(--renk2); font-size: 16px; }
.sidebar-list a > i:last-child { margin-left: auto; font-size: 12px; }

.sidebar-contact p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }

.sidebar-recent-list { list-style: none; padding: 0; margin: 0; }
.sidebar-recent-list li { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sidebar-recent-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-recent-list a {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--text);
}
.sidebar-recent-list img, .sidebar-img-placeholder {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.sidebar-img-placeholder {
    background: linear-gradient(135deg, var(--renk1), var(--renk2));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 24px;
}
.sidebar-recent-list h4 {
    font-size: 14px;
    font-family: var(--font-body);
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--renk1);
    font-weight: 600;
}
.sidebar-recent-list time { color: var(--text-light); font-size: 12px; }

/* ---------- DYNAMIC PAGE ---------- */
.section-dynamic-page { padding: 80px 0; background: var(--white); }
.dynamic-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
}
.dynamic-page-content h2, .dynamic-page-content h3 {
    color: var(--renk1);
    margin-top: 30px;
}

/* ---------- 404 ---------- */
.section-404 { padding: 100px 0; background: var(--bg-light); min-height: 60vh; display: flex; align-items: center; }
.section-404 h1 { font-size: 80px; color: var(--renk2); margin-bottom: 10px; font-family: var(--font-heading); }
.section-404 p { color: var(--text-light); margin-bottom: 24px; }

/* ---------- FOOTER ---------- */
.site-footer { background: #0c1e3b; color: rgba(255,255,255,0.75); }

.footer-cta-bar {
    background: var(--renk2);
    padding: 28px 0;
}
.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--white);
}
.footer-cta-inner h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 24px;
    margin-bottom: 4px;
}
.footer-cta-inner p { margin: 0; color: rgba(255,255,255,0.9); font-size: 14px; }
.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--renk1);
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
}
.btn-cta-phone:hover { background: var(--renk1); color: var(--white); }

.footer-main { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 14px;
    position: relative;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--renk2);
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img {
    max-height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--renk2); transform: translateX(3px); }
.footer-links a i { font-size: 10px; color: var(--renk2); }

.footer-address { font-style: normal; }
.footer-address p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
}
.footer-address p i {
    color: var(--renk2);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-address a { color: rgba(255,255,255,0.75); }
.footer-address a:hover { color: var(--renk2); }

.social-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover {
    background: var(--renk2);
    color: var(--white);
    border-color: var(--renk2);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-links-bottom a { color: rgba(255,255,255,0.7); margin: 0 6px; }
.footer-links-bottom a:hover { color: var(--renk2); }

/* ---------- FLOAT BUTTONS ---------- */
.float-btn {
    position: fixed;
    right: 24px;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float { background: #25d366; bottom: 24px; }
.whatsapp-float:hover { background: #1fb755; transform: scale(1.1); color: var(--white); }
.phone-float { background: var(--renk1); bottom: 90px; }
.phone-float:hover { background: var(--renk2); transform: scale(1.1); color: var(--white); }

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(var(--renk2-rgb), 0.6); }
    70% { box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 15px rgba(var(--renk2-rgb), 0); }
    100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(var(--renk2-rgb), 0); }
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 48px; height: 48px;
    background: var(--renk1);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--renk2); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .nav-menu li a { padding: 10px 12px; font-size: 14px; }
}

@media (max-width: 991px) {
    .mobile-toggle { display: flex; }
    .mobile-close { display: block; }

    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        overflow-y: auto;
        z-index: 1100;
        transition: right 0.3s ease;
    }
    .main-nav.active { right: 0; }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .nav-menu li a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu li a::after { display: none; }
    .phone-btn-text { display: none; }
    .header-cta .btn-primary-custom { display: none !important; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-about, .section-services, .section-why, .section-testimonials, .section-gallery, .section-blog { padding: 70px 0; }
    .top-bar-left > span { display: none !important; }
}

@media (max-width: 767px) {
    .top-bar { display: none; }
    .top-bar-left > a:nth-child(2) { display: none; }
    .hero-swiper { min-height: 480px; max-height: 580px; height: auto; }
    .hero-content { padding: 80px 0 40px; }
    .section-head { margin-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .btn-primary-custom, .btn-outline-custom, .btn-light-custom, .btn-outline-light { justify-content: center; }
    .blog-detail-content, .service-detail-content { padding: 24px; }
    .blog-detail-img, .service-detail-img { margin: -24px -24px 24px; }
    .form-wrap { padding: 28px 24px; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .counter-number { font-size: 42px; }
    .section-cta { padding: 60px 0; }
    .page-banner { padding: 60px 0 50px; }
    .service-cta-box { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
    .services-grid, .blog-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .main-nav { width: 85%; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; right: 16px; }
    .whatsapp-float { bottom: 16px; }
    .phone-float { bottom: 74px; }
    .scroll-top { left: 16px; bottom: 16px; width: 42px; height: 42px; }
    .section-title { font-size: 1.7rem !important; }
    .about-experience-badge { bottom: -5px; right: -5px; padding: 14px 18px; }
    .about-experience-badge strong { font-size: 28px; }
}

/* ---------- PRINT ---------- */
@media print {
    .top-bar, .site-header, .site-footer, .float-btn, .scroll-top, .hero-slider { display: none; }
    body { color: #000; background: #fff; }
    a { text-decoration: underline; color: #000; }
}

/* ---------- EKSEN BUILDER UYUMLULUĞU ---------- */
.eb-block { transition: all 0.3s ease; }
.eb-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.eb-col { flex: 1; min-width: 0; }
@media (max-width: 768px) { .eb-row { flex-direction: column; } }
.eb-container-boxed { max-width: 1200px; margin: 0 auto; }
.eb-container-narrow { max-width: 900px; margin: 0 auto; }
.eb-container-wide { max-width: 1400px; margin: 0 auto; }
.eb-container-full { width: 100vw; margin-left: calc(50% - 50vw); max-width: 100vw; }
.eb-block[data-hover=lift]:hover { transform: translateY(-6px); }
.eb-block[data-hover=zoom]:hover { transform: scale(1.03); }
.eb-block[data-hover=glow]:hover { box-shadow: 0 0 40px rgba(var(--renk2-rgb), 0.4) !important; }
@media (min-width: 1024px) { .eb-hide-desktop { display: none !important; } }
@media (max-width: 1023px) and (min-width: 768px) { .eb-hide-tablet { display: none !important; } }
@media (max-width: 767px) { .eb-hide-mobile { display: none !important; } }
