/* ==========================================================================
   BANDIRMA DİŞ HEKİMİ - Dt. Emine Bilgehan Şahpaz
   Web: www.bandirmadishekimi.com
   Tasarım: Canvas Medical / ibrahimbay.com.tr Stili
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --primary: #144884;          /* İbrahimbay koyu lacivert */
  --primary-light: #1b5cb0;
  --primary-dark: #0e325c;
  --primary-rgb: 20, 72, 132;
  --secondary: #1ABC9C;        /* Medikal turkuaz */
  --secondary-dark: #16a085;
  --accent-gold: #c59b27;
  --dark: #222c38;
  --dark-light: #374151;
  --text-muted: #6b7280;
  --text-body: #4a5568;
  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #edf2f7;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(20,72,132,0.08);
  --shadow-lg: 0 10px 25px rgba(20,72,132,0.12);
  --shadow-hover: 0 14px 30px rgba(20,72,132,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', 'Roboto', sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

/* Container & Grid System */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-container,
.footer-container {
  max-width: 1420px !important;
  width: 95% !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-lg-3, .col-md-6, .col-12 { padding: 0 15px; }
.col-lg-4, .col-md-6 { padding: 0 15px; }
.col-lg-6 { padding: 0 15px; }
.col-lg-8 { padding: 0 15px; }
.col-lg-12 { padding: 0 15px; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fw-medium { font-weight: 500; }
.ls-0 { letter-spacing: 0; }
.ls-1 { letter-spacing: 1px; }
.uppercase { text-transform: uppercase; }

.section-pad {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-pad-sm {
  padding-top: 45px;
  padding-bottom: 45px;
}

.bg-light-soft {
  background-color: var(--bg-light);
}

.bg-primary {
  background-color: var(--primary) !important;
  color: var(--white);
}

/* ==========================================================================
   TOP BAR (ibrahimbay.com.tr stili)
   ========================================================================== */
#top-bar {
  background-color: #fcfcfd;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: #555;
  padding: 8px 0;
  line-height: 24px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-links li {
  display: inline-flex;
  align-items: center;
}

.top-links a {
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-links a:hover {
  color: var(--primary);
}

.top-links .top-phone {
  font-weight: 700;
  color: var(--primary);
}

.top-links .top-phone span {
  font-weight: 700;
  color: var(--primary);
}

.top-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-social a {
  color: #666;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f3f6;
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   HEADER & NAVBAR (Ferah, Tek Satır & Şık ibrahimbay / Canvas Medical stili)
   ========================================================================== */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  gap: 15px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--primary);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo-title span {
  color: var(--secondary);
}

.brand-logo-subtitle {
  font-size: 10.5px;
  font-weight: 600;
  color: #718096;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

/* Primary Navigation */
#primary-menu {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #334155;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap !important;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary);
  background-color: rgba(20, 72, 132, 0.06);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(20, 72, 132, 0.15);
  border: 1px solid var(--border-color);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: #f1f7fc;
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 24px;
}

/* Header Action / Appointment Button */
.header-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-appointment {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 72, 132, 0.22);
  transition: var(--transition);
  white-space: nowrap !important;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 72, 132, 0.35);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  color: #fff !important;
}

/* Mobile Menu Trigger */
.mobile-trigger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white) !important;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white) !important;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

/* ==========================================================================
   HERO BANNER / SLIDER (ibrahimbay tarzı)
   ========================================================================== */
.hero-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 50, 92, 0.88) 0%, rgba(20, 72, 132, 0.8) 100%),
              url('../images/banners/banner1.png') center center / cover no-repeat;
  color: var(--white);
  padding: 120px 0 110px;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, 0.2);
  border: 1px solid rgba(26, 188, 156, 0.5);
  color: #72efdd;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
  color: #5ce1e6;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FEATURE BOXES (6'LI GRID - ibrahimbay fbox-plain stili)
   ========================================================================== */
.section-features {
  padding: 70px 0 50px;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  margin-bottom: 30px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 72, 132, 0.3);
  box-shadow: var(--shadow-hover);
}

.feature-box .fbox-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(20, 72, 132, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-box:hover .fbox-icon {
  background-color: var(--primary);
  color: var(--white);
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-box p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.feature-box .fbox-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-box .fbox-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

/* ==========================================================================
   NELER YAPIYORUZ & ÇALIŞMA SAATLERİ (ibrahimbay'deki özgün ikili bölüm)
   ========================================================================== */
.section-split-wrap {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 75px 0;
  position: relative;
}

.heading-block {
  margin-bottom: 30px;
  position: relative;
}

.heading-block h2,
.heading-block h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.heading-block .badge-label {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.split-about-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
}

.split-about-text p {
  margin-bottom: 16px;
}

.feature-check-list {
  margin: 20px 0 25px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 10px;
}

.feature-check-list li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Opening Table (Çalışma Saatleri Tablosu) */
.opening-table {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.opening-table h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-table-wrap {
  display: flex;
  flex-direction: column;
}

.time-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 14px;
}

.time-table-row:last-child {
  border-bottom: none;
}

.time-table-row h5 {
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0;
}

.time-table-row span {
  font-weight: 500;
  color: #64748b;
}

.time-table-row.open-special span {
  color: var(--primary);
  font-weight: 700;
}

.opening-callout {
  margin-top: 20px;
  padding: 15px;
  background-color: #f0f7ff;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  font-size: 13.5px;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   STAT COUNTER BAR
   ========================================================================== */
.counter-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 50px 0;
}

.counter-item {
  text-align: center;
  padding: 15px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #5ce1e6;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   KLİNİĞİMİZDEN GÖRÜNTÜLER / GALERİ (ibrahimbay stili)
   ========================================================================== */
.gallery-section {
  padding: 70px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 72, 132, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   ADVANTAGES / WHY CHOOSE US
   ========================================================================== */
.advantages-section {
  background-color: #f8fafc;
  padding: 75px 0;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 25px;
  transition: var(--transition);
  height: calc(100% - 25px);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #ebf5ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.advantage-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.advantage-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================================================
   PAGE TITLE & BREADCRUMB (Subpages Header)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 55px 0 50px;
  position: relative;
}

.page-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: #5ce1e6;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SUBPAGE CONTENT LAYOUT & SIDEBAR
   ========================================================================== */
.content-section {
  padding: 70px 0;
}

.treatment-sidebar {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  position: sticky;
  top: 110px;
}

.treatment-sidebar h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef2f6;
}

.sidebar-menu li {
  margin-bottom: 6px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu li.active a {
  background-color: #f0f5fc;
  color: var(--primary);
  font-weight: 600;
  padding-left: 18px;
}

.sidebar-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius-md);
  margin-top: 25px;
  text-align: center;
}

.sidebar-banner h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.sidebar-banner p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.treatment-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: #334155;
}

.treatment-body h2 {
  font-size: 26px;
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.treatment-body h3 {
  font-size: 20px;
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
}

.treatment-body p {
  margin-bottom: 18px;
}

.treatment-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.treatment-body li {
  margin-bottom: 8px;
}

.info-alert-box {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 25px 0;
  color: #14532d;
  font-size: 14.5px;
}

/* ==========================================================================
   ACCORDION (SSS / Sıkça Sorulan Sorular)
   ========================================================================== */
.faq-wrap {
  margin-top: 25px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-dark);
  background: var(--white);
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--primary);
  background-color: #fafbfc;
}

.faq-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.faq-item.active .faq-header {
  background-color: #f1f7fc;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-body {
  padding: 18px 22px;
  max-height: 500px;
}

/* ==========================================================================
   CONTACT PAGE & FORMS
   ========================================================================== */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background-color: #eaf2fb;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 17px;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-card-info p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 14.5px;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #fafbfd;
  color: #1e293b;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 72, 132, 0.12);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER (Ferah 4 Kolonlu CSS Grid & Şık Aydınlık Detaylar)
   ========================================================================== */
#footer {
  background: linear-gradient(180deg, #091e38 0%, #051426 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 70px;
  position: relative;
}

.footer-widgets-wrap {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.4fr;
  gap: 45px;
  align-items: start;
}

.footer-brand-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.fbt-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.2;
}

.fbt-sub {
  font-size: 11px;
  font-weight: 500;
  color: #5ce1e6;
  letter-spacing: 0.5px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}

.footer-widget-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #5ce1e6;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.fci-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.fci-text {
  flex-grow: 1;
}

.footer-phone-link {
  color: #5ce1e6 !important;
  font-weight: 700;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

#copyrights {
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.copyrights-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   ONLINE RANDEVU MODAL (bandirmadisdoktoru stili interaktif widget)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.appointment-modal {
  background: var(--white);
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .appointment-modal {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 3px;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-bottom: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.modal-body {
  padding: 25px;
  max-height: 80vh;
  overflow-y: auto;
}

.appointment-steps {
  display: flex;
  justify-content: space-around;
  margin-bottom: 22px;
  position: relative;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.step-indicator.active {
  color: var(--primary);
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 700;
}

.step-indicator.active .step-circle {
  background: var(--primary);
  color: #fff;
}

/* Floating Actions: WhatsApp & Call */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20ba59;
}

.float-phone {
  background-color: var(--primary);
}

.float-phone:hover {
  transform: scale(1.1);
  background-color: var(--primary-light);
}

/* Lightbox Modal for Gallery */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  #top-bar {
    display: none;
  }

  .header-inner {
    height: 75px;
  }

  .brand-logo img {
    height: 48px;
  }

  .brand-logo-title {
    font-size: 16px;
  }

  .brand-logo-subtitle {
    font-size: 10px;
  }

  #primary-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--white);
    flex-direction: column;
    padding: 25px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #primary-menu.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link {
    width: 100%;
    padding: 14px 10px;
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: #f8fafc;
    padding: 5px 0 10px 15px;
    display: none;
  }

  .nav-item.dropdown-open .dropdown-menu {
    display: block;
  }

  .mobile-trigger {
    display: block;
  }

  .hero-wrapper {
    padding: 80px 0 70px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .counter-number {
    font-size: 36px;
  }

  .opening-table {
    margin-top: 35px;
  }

  .copyrights-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .floating-actions {
    bottom: 15px;
    right: 15px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}
