/* ===================================
   REŞATBEY EVDEN EVE NAKLİYAT
   Kırmızı - Beyaz Tema
=================================== */

:root {
  --red: #e30613;
  --red-dark: #b8050f;
  --red-light: #ff2230;
  --black: #1a1a1a;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #f4f4f4;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(227,6,19,0.25);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--gray-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

h1, h2, h3, h4 { color: var(--black); line-height: 1.3; }

/* ===== ÜST BİLGİ ÇUBUĞU ===== */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); }
.top-bar .top-phone {
  color: var(--red-light);
  font-weight: 700;
}
.top-bar .top-links { display: flex; gap: 20px; }
.top-bar .top-links span { opacity: 0.85; }

/* ===== HEADER ===== */
header.main-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area img { height: 62px; width: auto; }

nav.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
nav.main-nav a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: 6px;
  transition: var(--transition);
  font-size: 15px;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--red);
  color: var(--white);
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--gray-light); color: var(--red); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-call-header {
  background: var(--red);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-call-header:hover { background: var(--red-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227,6,19,0.08), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(227,6,19,0.1);
  color: var(--red);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--red); }
.hero p.lead {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(227,6,19,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(227,6,19,0.4); }
.btn-outline {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebc59; transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 28px; color: var(--red); font-weight: 800; }
.hero-stats span { font-size: 13px; color: var(--gray); }

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TAB SİSTEMİ ===== */
.tabs-section { padding: 70px 0; background: var(--white); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 45px; }
.section-tag {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-head h2 { font-size: 34px; margin: 10px 0 14px; font-weight: 800; }
.section-head p { color: var(--gray); font-size: 16px; }

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  background: var(--gray-light);
  border: 2px solid transparent;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-dark);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(227,6,19,0.3);
}

.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--gray-light);
  border-radius: 20px;
  padding: 45px;
}
.tab-panel img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; height: 320px; object-fit: cover; }
.tab-panel h3 { font-size: 26px; margin-bottom: 16px; font-weight: 800; }
.tab-panel p { color: var(--gray); margin-bottom: 18px; }
.tab-panel ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-weight: 600;
  color: var(--gray-dark);
}
.tab-panel ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--red);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  top: 8px;
}

/* ===== HİZMET KARTLARI ===== */
.services-section { padding: 70px 0; background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(227,6,19,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.service-card p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.service-card a { color: var(--red); font-weight: 700; font-size: 14px; }

/* ===== BÖLGELER (İLÇELER) ===== */
.districts-section { padding: 70px 0; background: var(--white); }
.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.district-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.district-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  opacity: 0;
  transition: var(--transition);
}
.district-card:hover::before { opacity: 1; }
.district-card * { position: relative; z-index: 2; }
.district-card h3 { color: var(--white); font-size: 19px; margin-bottom: 8px; }
.district-card p { color: #ccc; font-size: 13px; margin-bottom: 16px; }
.district-card a {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.district-card:hover a { background: var(--white); color: var(--red); }

/* ===== NEDEN BİZ ===== */
.why-section { padding: 70px 0; background: var(--gray-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-num {
  background: var(--red);
  color: var(--white);
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.why-card h4 { font-size: 17px; margin-bottom: 6px; }
.why-card p { color: var(--gray); font-size: 14px; }

/* ===== MAKALE (H1 + İÇERİK) ===== */
.article-section { padding: 70px 0; }
.article-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}
.article-section h1 span { color: var(--red); }
.article-section h2 {
  font-size: 26px;
  margin: 36px 0 16px;
  font-weight: 800;
  border-left: 5px solid var(--red);
  padding-left: 14px;
}
.article-section p { color: var(--gray-dark); margin-bottom: 16px; font-size: 16px; }
.article-section ul.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-weight: 600;
}
.article-section ul.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--red);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  top: 8px;
}
.article-img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 24px 0;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ===== SAYFA BAŞLIĞI (İÇ SAYFALAR) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--black), #2a2a2a);
  padding: 50px 0;
  text-align: center;
}
.page-banner h1 { color: var(--white); font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.page-banner .breadcrumb { color: #bbb; font-size: 14px; }
.page-banner .breadcrumb a { color: var(--red-light); }
.page-banner .breadcrumb span { margin: 0 6px; }

/* ===== SSS (ACCORDION) ===== */
.faq-section { padding: 70px 0; background: var(--gray-light); }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}
.faq-question .icon {
  background: var(--red);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item.open .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--gray); font-size: 15px; }

/* ===== CTA BANT ===== */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 50px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: 30px; margin-bottom: 14px; font-weight: 800; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 26px; font-size: 16px; }
.cta-band .btn-outline { background: var(--white); color: var(--red); border: none; }
.cta-band .btn-outline:hover { background: var(--black); color: var(--white); }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; font-weight: 700; }
.footer-col p { font-size: 14px; margin-bottom: 14px; color: #aaa; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #aaa; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red-light); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; color: #aaa; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #888;
}
.footer-bottom a { color: var(--red-light); }

/* ===== SABİT WHATSAPP BUTONU ===== */
.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  animation: pulse 2.2s infinite;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--red); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== HARİTA ===== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===== GALERİ ===== */
.gallery-section { padding: 70px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid img {
  border-radius: 12px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel { grid-template-columns: 1fr; padding: 28px; }
}

@media (max-width: 768px) {
  .top-bar .top-links span:nth-child(2) { display: none; }
  nav.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 24px 24px;
    transition: 0.35s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  nav.main-nav.open { left: 0; }
  nav.main-nav ul { flex-direction: column; width: 100%; align-items: stretch; }
  nav.main-nav a { width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .menu-toggle { display: flex; }
  .header-cta .btn-call-header span.txt { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tabs-nav { gap: 8px; }
  .tab-btn { padding: 11px 18px; font-size: 13px; }
  .section-head h2 { font-size: 26px; }
  body.menu-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 24px; }
}
