/*
Theme Name: Oto Lastikçi Şerif
Theme URI: https://gedizotolastik.com.tr
Author: Oto Lastikçi Şerif
Author URI: https://gedizotolastik.com.tr
Description: Gediz Kütahya Oto Lastik Tamiri ve 7/24 Yol Yardım - Profesyonel kurumsal tema. Lastik tamir, jant satışı, balans ayarı ve gezici servis hizmetleri.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: business, one-page, responsive, auto, tire, repair
Text Domain: oto-lastikci-serif
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --red: #d91a1a;
  --red-dark: #b01515;
  --red-light: #ff2222;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --gray: #888888;
  --light: #f5f5f5;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(8px);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header .logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--red);
  object-fit: cover;
}

.site-header .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-header .logo-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}

.site-header .logo-text span {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ccc;
  transition: color 0.2s;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--red); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-link {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone-link:hover { color: var(--red); }

.btn-call-header {
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-call-header:hover { background: var(--red-dark); color: var(--white); }

/* Hamburger */
.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  flex-direction: column;
  padding-top: 80px;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.mobile-nav-overlay nav a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-nav-overlay nav a:hover { color: var(--red); }

.mobile-nav-actions {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.mobile-nav-actions .btn-call-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-nav-actions .btn-call-mobile:hover { background: var(--red-dark); color: var(--white); }

.mobile-nav-actions .btn-wa-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #075e54;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-nav-actions .btn-wa-mobile:hover { background: #064d45; color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/van.jpeg') center center / cover no-repeat;
  filter: brightness(0.25) saturate(0.5);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 60%, rgba(217,26,26,0.15) 100%);
  z-index: 1;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,26,26,0.15);
  border: 1px solid var(--red);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  position: relative;
  z-index: 2;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 12px;
  color: var(--white);
}

.hero-title .red { color: var(--red); }

.hero-subtitle {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 2vw, 20px);
  color: #cccccc;
  max-width: 620px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.emergency-banner .icon {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.emergency-banner .text h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 2px;
}

.emergency-banner .text p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 400;
}

.btn-emergency {
  background: var(--dark);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-emergency:hover { background: #222; color: var(--white); }

/* ── SECTIONS ── */
section { padding: 90px 60px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .red { color: var(--red); }

.section-desc {
  font-size: 16px;
  color: #aaa;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
#hizmetler { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--dark3);
  padding: 36px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: #202020; border-left-color: var(--red); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(217,26,26,0.12);
  border: 1px solid rgba(217,26,26,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

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

.service-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── ABOUT ── */
#hakkimizda { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--red);
  border-radius: 4px;
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  background: var(--dark3);
  padding: 20px 24px;
  border-radius: 4px;
  border-left: 3px solid var(--red);
}

.stat-item .number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .label {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

.about-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── GALLERY ── */
#galeri { background: var(--dark2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(217,26,26,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SEO CONTENT ── */
#seo-content { background: var(--dark3); padding: 80px 60px; }

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.seo-card {
  padding: 32px;
  background: var(--dark2);
  border-radius: 4px;
  border-top: 3px solid var(--red);
}

.seo-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}

.seo-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── CONTACT ── */
#iletisim { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--dark3);
  border-radius: 4px;
  border-left: 3px solid var(--red);
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(217,26,26,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item .details { flex: 1; }

.contact-item .details .title {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 4px;
}

.contact-item .details a,
.contact-item .details p {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s;
  display: block;
}

.contact-item .details a:hover { color: var(--red); }

.map-wrap { border-radius: 4px; overflow: hidden; border: 2px solid var(--dark4); }
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

.whatsapp-box {
  margin-top: 24px;
  background: #075e54;
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-box .wa-icon {
  font-size: 32px;
}

.whatsapp-box .wa-text { flex: 1; }

.whatsapp-box .wa-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--white);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.whatsapp-box .wa-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
}

.btn-whatsapp-box {
  background: #25D366;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-whatsapp-box:hover { background: #1ebe5d; color: var(--white); }

/* ── FOOTER ── */
.site-footer {
  background: #050505;
  border-top: 2px solid var(--red);
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 13px;
  color: #777;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-wa-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: wa-bounce 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.float-wa-btn:hover { transform: scale(1.1); }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-wa-btn:hover { animation: none; transform: scale(1.08); }

.float-call-btn {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(217,26,26,0.4);
  transition: transform 0.2s;
}

.float-call-btn:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-phone-link { display: none; }
  .header-menu-toggle { display: flex; }
  .site-header { padding: 0 16px; }
}

@media (max-width: 768px) {
  section, .hero { padding: 70px 24px 60px; }
  .emergency-banner { padding: 20px 24px; }
  #seo-content { padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 44px; }
  .site-footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .emergency-banner .btn-emergency { width: 100%; justify-content: center; }
}
