/* ==========================================================================
   ADANA DAVULCU SERCAN - ULTRA FAST, MODERN & RESPONSIVE STYLESHEET
   PageSpeed +95 & SEO & Mobile Optimized
   ========================================================================== */

:root {
  --primary: #c2185b;
  --primary-dark: #880e4f;
  --primary-light: #f48fb1;
  --primary-soft: #fdf2f8;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fef3c7;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --accent: #10b981;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebc59;
  --phone: #e11d48;
  --phone-hover: #be123c;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.25s ease-in-out;
}

/* Reset & Basics */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  padding-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
  background: var(--dark);
  color: var(--gray-200);
  padding: 9px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-contact {
  display: flex;
  gap: 20px;
}
.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fcd34d;
  font-weight: 700;
}
.top-contact a:hover {
  color: var(--white);
}

header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.header-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.2);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.header-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.35);
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.4px;
  white-space: nowrap;
  display: inline-block;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-menu a {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.3;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-cta {
  background: var(--phone) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 30px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  white-space: nowrap !important;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--phone-hover) !important;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray-800);
  line-height: 1;
  transition: var(--transition);
}
.mobile-toggle:hover, .mobile-toggle:active {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  background: #f8fafc;
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li+li::before {
  content: '›';
  color: var(--gray-400);
  margin-right: 8px;
  font-weight: bold;
}
.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--gray-600);
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(136, 14, 79, 0.88) 100%), url('../images/adana-davulcu-kiralama-ekibi.webp') center/cover no-repeat;
  color: var(--white);
  padding: 70px 0 50px;
  text-align: center;
}
.hero-content {
  max-width: 950px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 span {
  color: #f59e0b;
}
.hero p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: #f1f5f9;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-phone {
  background: var(--phone);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}
.btn-phone:hover {
  background: var(--phone-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.45);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: #fcd34d;
}
.stat-label {
  font-size: 13px;
  color: #e2e8f0;
  font-weight: 500;
}

/* ==========================================================================
   RATING BANNER
   ========================================================================== */
.rating-banner {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
}
.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}
.score {
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section {
  padding: 55px 0;
}
.section-alt {
  background: #f1f5f9;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title span {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 4px;
}
.section-title h1, .section-title h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-top: 4px;
}
.section-title p {
  color: var(--gray-600);
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-img-link {
  display: block;
  overflow: hidden;
  position: relative;
}
.service-img-link img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card:hover .service-img-link img {
  transform: scale(1.06);
}
.service-body h2, .service-body h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-body h2 a, .service-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.service-body h2 a:hover, .service-body h3 a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.service-body p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.service-features {
  list-style: none;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--gray-700);
}
.service-features li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}
.service-btn {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.service-btn:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   DISTRICTS & MAHALLE GRID (BLOG BOX STYLE)
   ========================================================================== */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.district-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
  display: block;
}
.district-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--secondary);
  box-shadow: var(--shadow);
}
.district-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.district-card p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.5;
}
.district-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.mahalle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.mahalle-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.mahalle-box:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(194, 24, 91, 0.25);
}

/* ==========================================================================
   SEO ARTICLE & TABLE OF CONTENTS
   ========================================================================== */
.seo-article {
  background: var(--white);
  padding: 35px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.seo-article h1 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 900;
}
.seo-article h2 {
  font-size: 24px;
  color: var(--dark);
  margin: 35px 0 16px;
  font-weight: 800;
  scroll-margin-top: 80px;
}
.seo-article h3 {
  font-size: 19px;
  color: var(--primary-dark);
  margin: 24px 0 12px;
  font-weight: 700;
  scroll-margin-top: 80px;
}
.seo-article p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.seo-article ul, .seo-article ol {
  margin: 15px 0 20px 25px;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 15px;
}
.seo-article li {
  margin-bottom: 8px;
}

/* TOC Box */
.toc-box {
  background: #fff5f8;
  border: 2px solid #fbcfe8;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 30px 0 40px;
  box-shadow: var(--shadow-sm);
}
.toc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #fbcfe8;
  padding-bottom: 10px;
}
.toc-list {
  list-style-type: decimal;
  margin-left: 20px;
}
.toc-list li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.toc-list a {
  color: #1f2937;
  transition: var(--transition);
}
.toc-list a:hover {
  color: var(--primary);
  text-decoration: underline;
  padding-left: 4px;
}

/* ==========================================================================
   PRICING TABLE & BADGES
   ========================================================================== */
.pricing-table-wrap {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 620px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}
.pricing-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
}
.pricing-table tr:hover {
  background: #f8fafc;
}
.pricing-badge {
  background: #fef3c7;
  color: #b45309;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
.pricing-badge.popular {
  background: #fce7f3;
  color: #be185d;
}

/* ==========================================================================
   STEPS GRID (HOW IT WORKS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.step-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.step-num {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3);
}
.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   REPERTOIRE TAGS
   ========================================================================== */
.repertoire-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}
.rep-tag {
  background: #fdf2f8;
  color: var(--primary-dark);
  border: 1px solid #fbcfe8;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.rep-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   REVIEWS GRID & VERIFIED BADGES
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--secondary);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.reviewer-info h4 {
  font-size: 15px;
  color: var(--dark);
  font-weight: 700;
}
.reviewer-info span {
  font-size: 12px;
  color: var(--gray-600);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}
.review-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin-top: 8px;
}

/* ==========================================================================
   CONTACT SECTION & KVKK FORM
   ========================================================================== */
.contact-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-info h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.contact-info p {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.7;
}
.contact-list {
  list-style: none;
  margin-bottom: 25px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #e2e8f0;
}
.contact-list a {
  color: #fcd34d;
  font-weight: 700;
}
.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--gray-800);
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.4;
}
.form-checkbox input {
  margin-top: 3px;
}
.btn-submit {
  width: 100%;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}
.btn-submit:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  font-size: 15px;
  transition: var(--transition);
}
.faq-question:hover {
  background: #fdf2f8;
}
.faq-question.active {
  background: #fce7f3;
  color: var(--primary-dark);
}
.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}
.faq-question.active .arrow {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 16px 20px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.75;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #0b0f19;
  color: #94a3b8;
  padding: 50px 0 25px;
  font-size: 14px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: #94a3b8;
}
.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 200px;
  border: 1px solid var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item img:hover {
  transform: scale(1.06);
}

/* ==========================================================================
   MOBILE BOTTOM STICKY BAR
   ========================================================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  z-index: 9999;
}
.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}
.mobile-btn.phone {
  background: var(--phone);
}
.mobile-btn.whatsapp {
  background: var(--whatsapp);
}

/* ==========================================================================
   CONTENT IMAGES & MEDIA FEATURES
   ========================================================================== */
.content-media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 35px 0;
}
.media-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.media-figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.media-figure:hover img {
  transform: scale(1.04);
}
.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.88));
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.inline-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.inline-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  height: 180px;
}
.inline-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.inline-gallery-item:hover img {
  transform: scale(1.06);
}
.inline-gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET OPTIMIZATIONS)
   Zero overflow, flawless touch experience
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1160px) {
  .nav-menu {
    gap: 4px;
  }
  .nav-menu a {
    font-size: 13px;
    padding: 6px 7px;
  }
  .logo-text {
    font-size: 17px;
  }
  .header-logo {
    height: 42px;
    width: 42px;
  }
}

@media (max-width: 991px) {
  .nav-wrapper {
    position: relative;
  }
  .main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    align-items: stretch;
    border-bottom: 2px solid var(--primary);
    z-index: 1001;
    gap: 6px;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 11px 14px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 12px 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .content-media-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 75px; /* mobile bar clearance only on mobile */
  }
  .container {
    padding: 0 16px;
  }
  .mobile-bar {
    display: block;
  }
  .top-bar {
    display: none;
  }
  .hero {
    padding: 40px 0 30px;
  }
  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .section {
    padding: 35px 0;
  }
  .section-title h1, .section-title h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .seo-article {
    padding: 20px 15px;
  }
  .seo-article h2 {
    font-size: 20px;
  }
  .seo-article h3 {
    font-size: 17px;
  }
  .toc-box {
    padding: 18px 16px;
  }
  .toc-list {
    margin-left: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .mahalle-grid {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 8px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .repertoire-tags {
    gap: 6px;
  }
  .rep-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .inline-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .inline-gallery-item {
    height: 200px;
  }
  .media-figure img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .logo {
    gap: 8px;
  }
  .header-logo {
    height: 38px;
    width: 38px;
  }
  .logo-text {
    font-size: 16px;
  }
  .mobile-toggle {
    padding: 6px 10px;
    font-size: 20px;
  }
  .hero h1 {
    font-size: 21px;
  }
  .section-title h1, .section-title h2 {
    font-size: 20px;
  }
  .mahalle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .mahalle-card {
    padding: 10px 8px;
    font-size: 12px;
  }
  .mobile-bar {
    padding: 6px 8px;
  }
  .mobile-btn {
    padding: 10px 8px;
    font-size: 13px;
  }
}
