:root {
  --white: #ffffff;
  --black: #111111;
  --text: #2a2a2a;
  --muted: #666666;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --primary: #0f172a;
  --accent: #16a34a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.alt-bg {
  background: #fafafa;
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--black);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-area {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 125px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  white-space: nowrap;
}

.whatsapp-btn {
  background: #16a34a;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #14803d;
}

.call-btn {
  background: var(--primary);
  color: #fff;
}

.call-btn:hover {
  background: #1e293b;
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.70) 0%, rgba(15,23,42,0.46) 45%, rgba(15,23,42,0.30) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 90px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 800px;
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero p {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  background: #16a34a;
  color: #fff;
}

.primary-btn:hover {
  background: #14803d;
}

.secondary-btn {
  background: #fff;
  color: var(--black);
}

.secondary-btn:hover {
  background: #f0f0f0;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.service-card h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

/* REGIONS */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.region-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  background: #fff;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
}

.why-card p {
  color: var(--muted);
}

/* CONTACT */
.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-box {
  width: 100%;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 34px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: 15px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-wrap {
  padding: 22px 0;
  text-align: center;
}

.footer-wrap p {
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .header-wrap {
    min-height: 76px;
  }

  .logo {
    height: 48px;
  }

  .header-actions {
    gap: 8px;
  }

  .action-btn {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .services-grid,
  .regions-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-wrap {
    gap: 10px;
  }

  .logo {
    height: 130px;
  }

  .header-actions {
    flex-direction: row;
    gap: 6px;
  }

  .action-btn {
    padding: 0 12px;
    min-width: auto;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}
.map-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 0 0;
}

.map-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  text-align: center;
}

.map-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 10px;
}

.map-header h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 10px;
}

.map-header p {
  font-size: 16px;
  color: #666666;
}

.map-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 1px solid #eaeaea;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .map-section {
    padding: 56px 0 0;
  }

  .map-header h2 {
    font-size: 28px;
  }

  .map-header p {
    font-size: 15px;
  }

  .map-wrap {
    height: 360px;
  }
}
.quick-request-section {
  padding: 70px 0;
  background: #ffffff;
}

.quick-request-box {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.quick-request-head {
  text-align: center;
  margin-bottom: 24px;
}

.quick-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3f7fb;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quick-request-head h2 {
  font-size: 30px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 10px;
}

.quick-request-head p {
  font-size: 16px;
  color: #666666;
  max-width: 620px;
  margin: 0 auto;
}

.quick-request-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  background: #ffffff;
  color: #222222;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
  resize: vertical;
}

.field-group select:focus,
.field-group textarea:focus {
  border-color: #22a8f2;
  box-shadow: 0 0 0 4px rgba(34, 168, 242, 0.10);
}

.location-status {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #475569;
}

.quick-request-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-btn,
.whatsapp-send-btn {
  min-height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.location-btn {
  background: #0f172a;
  color: #ffffff;
}

.location-btn:hover {
  background: #1e293b;
}

.whatsapp-send-btn {
  background: #16a34a;
  color: #ffffff;
}

.whatsapp-send-btn:hover {
  background: #14803d;
}

.whatsapp-send-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .quick-request-section {
    padding: 56px 0;
  }

  .quick-request-box {
    padding: 20px;
    border-radius: 20px;
  }

  .quick-request-head h2 {
    font-size: 25px;
  }

  .quick-request-head p {
    font-size: 15px;
  }

  .quick-request-actions {
    flex-direction: column;
  }

  .location-btn,
  .whatsapp-send-btn {
    width: 100%;
  }
}
.top-ticker {
  width: 100%;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.ticker-track {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  animation: tickerMove 28s linear infinite;
}

.ticker-content span {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.ticker-content span:first-child {
  color: #22c55e;
  font-weight: 700;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* hover durdurma (premium his) */
.top-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* mobil optimizasyon */
@media (max-width: 768px) {
  .ticker-content {
    gap: 20px;
    animation-duration: 22s;
  }

  .ticker-content span {
    font-size: 13px;
  }
}
.reviews-section {
  padding: 70px 0;
  background: #ffffff;
}

.reviews-head {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-head span {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  display: block;
  margin-bottom: 10px;
}

.reviews-head h2 {
  font-size: 32px;
  color: #111;
}

.reviews-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: reviewMarquee 12s linear infinite;
  will-change: transform;
}

.review-card {
  width: 280px;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 20px;
  flex-shrink: 0;
}

.review-card p {
  font-size: 14px;
  color: #444;
  margin: 10px 0;
  line-height: 1.6;
}

.review-card .author {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

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

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.reviews-slider:hover .reviews-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .reviews-track {
    animation: reviewMarquee 8s linear infinite;
  }

  .review-card {
    width: 230px;
    min-width: 230px;
    padding: 16px;
  }

  .reviews-head h2 {
    font-size: 26px;
  }

  .review-card p {
    font-size: 13px;
  }
}
.faq-section {
  padding: 70px 0;
  background: #ffffff;
}

.faq-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.faq-head span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.faq-head h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 12px;
}

.faq-head p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: #d9e8f7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  border: none;
  background: #ffffff;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #f4f7fb;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #e8f1fb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #5f5f5f;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 56px 0;
  }

  .faq-head h2 {
    font-size: 28px;
  }

  .faq-head p {
    font-size: 15px;
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 20px;
  }
}
.gallery-section {
  padding: 70px 0;
  background: #ffffff;
}

.gallery-head {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-head span {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  display: block;
  margin-bottom: 10px;
}

.gallery-head h2 {
  font-size: 32px;
  color: #111;
}

/* SLIDER */
.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 18s linear infinite;
  will-change: transform;
}

.gallery-track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* hover zoom */
.gallery-track img:hover {
  transform: scale(1.05);
}

/* animasyon */
@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* hover durdur */
.gallery-slider:hover .gallery-track {
  animation-play-state: paused;
}

/* mobil */
@media (max-width: 768px) {
  .gallery-track {
    animation: galleryScroll 10s linear infinite;
  }

  .gallery-track img {
    width: 200px;
    height: 140px;
  }

  .gallery-head h2 {
    font-size: 26px;
  }
}