/* ========== FOÇA OTO ÇEKİCİ - GLOBAL STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --red:    #D0151A;
  --dark:   #0D0D0D;
  --gray:   #1A1A1A;
  --mid:    #2C2C2C;
  --light:  #F5F5F5;
  --white:  #FFFFFF;
  --accent: #FF3B3F;
  --text:   #CCCCCC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(13,13,13,0.96);
  border-bottom: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}

.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  letter-spacing: 1px;
}

.navbar-brand .favicon-t {
  width: 40px; height: 40px;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.navbar-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--red);
  color: white; font-weight: 600;
  padding: 8px 18px; border-radius: 4px;
  font-size: 0.95rem; white-space: nowrap;
  transition: background .2s;
}
.navbar-phone:hover { background: #b50f13; }
.navbar-phone i { font-size: 1rem; }

.nav-links {
  display: flex; gap: 4px; list-style: none;
}
.nav-links a {
  padding: 6px 12px; border-radius: 3px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: white; background: var(--mid);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 64px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(208,21,26,0.25) 0%, rgba(0,0,0,0.6) 60%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 20px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-title span { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px; max-width: 600px; margin-inline: auto;
}

.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 1px;
  padding: 14px 32px; border-radius: 4px;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #b50f13; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  padding: 14px 32px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--red);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex: 1; min-width: 160px; justify-content: center;
}
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 1.6rem; color: rgba(255,255,255,0.8); }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: white; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}
.section-dark { background: var(--gray); }
.section-mid { background: var(--mid); }

.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--accent);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
  line-height: 1.15;
}

.section-lead {
  color: var(--text); font-size: 1.05rem;
  max-width: 700px; margin-bottom: 48px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--red);
  padding: 32px 24px; border-radius: 4px;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(208,21,26,0.2);
}
.service-card i {
  font-size: 2.4rem; color: var(--red); margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 10px;
}
.service-card p { color: var(--text); font-size: 0.92rem; }

.service-card a {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--accent);
  font-size: 0.88rem; font-weight: 600;
  transition: gap .2s;
}
.service-card a:hover { gap: 10px; }

/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.gallery-grid img {
  width: 100%; height: 240px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform .3s, filter .3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* ===== CONTENT TEXT ===== */
.content-text { color: var(--text); line-height: 1.9; }
.content-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem; color: white; margin: 36px 0 14px;
}
.content-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem; color: white; margin: 28px 0 10px;
}
.content-text p { margin-bottom: 18px; }
.content-text ul { padding-left: 24px; margin-bottom: 18px; }
.content-text ul li { margin-bottom: 8px; }

/* ===== TWO-COL ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; }
.features-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text); font-size: 0.95rem;
}
.features-list li i { color: var(--red); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 56px 20px; text-align: center;
}
.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: white; margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  padding: 14px 36px; border-radius: 4px;
  transition: transform .15s;
}
.btn-white:hover { transform: scale(1.03); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 20px 60px;
  background: linear-gradient(180deg, rgba(208,21,26,0.12) 0%, transparent 100%);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white; margin-bottom: 14px;
}
.page-hero p { color: var(--text); max-width: 650px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 0.85rem;
  justify-content: center; margin-top: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb i { font-size: 0.7rem; }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 2px solid var(--red);
  padding: 60px 20px 0;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: white;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo .favicon-t {
  width: 36px; height: 36px; background: var(--red);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.footer-desc { color: var(--text); font-size: 0.9rem; margin-bottom: 20px; }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 0.9rem; margin-bottom: 10px;
}
.footer-contact-item i { color: var(--red); width: 16px; }
.footer-contact-item a { color: var(--text); }
.footer-contact-item a:hover { color: white; }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600; color: white;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text); font-size: 0.9rem;
  transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a i { font-size: 0.75rem; color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px; text-align: center;
  color: var(--text); font-size: 0.82rem;
  max-width: 1100px; margin: 0 auto;
}
.footer-bottom a { color: var(--accent); }

/* ===== MOBILE NAV ===== */
.hamburger {
  display: none !important;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .navbar { flex-wrap: nowrap; height: 64px; }
}
@media (max-width: 600px) {
  .gallery-grid img { height: 180px; }
  .stat-item { padding: 14px 20px; }
}

/* ===== MOBİL ÇEKICI ÇUBUĞU ===== */
.mobile-call-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--dark);
    border-top: 2px solid var(--red);
    padding: 10px 16px;
    gap: 12px;
  }
  .mobile-call-label {
    display: flex; align-items: center; gap: 8px;
    color: var(--text); font-size: 0.92rem; font-weight: 500;
    white-space: nowrap;
  }
  .mobile-call-label i { color: var(--red); font-size: 1.1rem; }
  .mobile-call-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--red); color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: 0.5px;
    padding: 11px 22px; border-radius: 4px;
    white-space: nowrap; flex: 1; justify-content: center;
    max-width: 200px;
  }
  .mobile-call-btn i { font-size: 1rem; }
  /* body'nin alt padding'i çubuğa yer açsın */
  body { padding-bottom: 68px; }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 820px; margin: 0 auto; padding: 80px 20px;
}
.legal-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem; color: white; margin-bottom: 8px;
}
.legal-content .updated {
  color: var(--accent); font-size: 0.85rem; margin-bottom: 36px;
}
.legal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; color: white; margin: 32px 0 12px;
}
.legal-content p, .legal-content li {
  color: var(--text); line-height: 1.85; margin-bottom: 14px;
}
.legal-content ul { padding-left: 22px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--mid); border: 1px solid rgba(255,255,255,0.1);
  color: white; padding: 12px 16px; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.info-box {
  background: var(--mid); border-left: 3px solid var(--red);
  padding: 20px 24px; border-radius: 4px; margin-bottom: 20px;
}
.info-box h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  color: white; margin-bottom: 8px;
}
.info-box p { color: var(--text); font-size: 0.92rem; }
.info-box a { color: var(--accent); }
