﻿/* Dumlupınar Taksi - Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #ffb300;
  --primary-hover: #ff9100;
  --primary-rgb: 255, 179, 0;
  --bg-dark: #0b0c10;
  --bg-card: #15161e;
  --bg-card-hover: #1e202b;
  --bg-header: rgba(11, 12, 16, 0.95);
  --text-light: #ffffff;
  --text-main: #e2e4e9;
  --text-muted: #8e95a5;
  --border-color: rgba(255, 179, 0, 0.15);
  --border-color-light: rgba(255, 255, 255, 0.05);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 179, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background-color: var(--bg-header);
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
}

.header-top {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-info {
  display: flex;
  gap: 20px;
}

.header-top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.header-top-info span i {
  color: var(--primary);
}

.header-top-socials {
  display: flex;
  gap: 15px;
}

.header-top-socials a {
  color: var(--text-muted);
}

.header-top-socials a:hover {
  color: var(--primary);
}

.navbar {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Clean Professional Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
}

.logo-badge {
  background: var(--primary);
  color: #000;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  color: var(--text-light);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-text .brand-sub {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary);
}

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Call to Action Text-Based to match layout */
.header-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.header-phone-link i {
  color: var(--primary);
  font-size: 1.3rem;
  background: rgba(255, 179, 0, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-phone-link:hover i {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.header-phone-link div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-link span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.header-phone-link strong {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 800;
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
}

/* Hero Section with Slider */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 12, 16, 0.7) 0%, rgba(11, 12, 16, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid var(--border-color);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.4);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-light);
  border: 2px solid var(--primary);
  padding: 13px 30px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--primary-hover);
  color: #000;
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Feature Cards Grid (Clean White Card Layout from Reference) */
.features-quick {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-card {
  background: transparent;
  border: none;
  border-right: 1px solid #eef0f4;
  border-radius: 0;
  padding: 10px 20px;
  text-align: left;
  box-shadow: none;
  transition: var(--transition);
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::before {
  display: none;
}

.feature-card:hover {
  transform: translateY(-2px);
  background: transparent;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 179, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #000;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 800;
  color: #1a1d20;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.85rem;
  color: #5a6070;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background-color: #07080b;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color);
  box-shadow: var(--shadow);
}

.service-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.85) 0%, transparent 100%);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-icon-floating {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
  z-index: 10;
  transition: var(--transition);
}

.service-card:hover .service-icon-floating {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--text-light);
}

.service-content {
  padding: 40px 20px 30px;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-light);
  font-weight: 700;
}

.service-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Vehicles Carousel */
.vehicles-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.vehicles-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.vehicle-slide {
  min-width: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vehicle-slide:hover {
  transform: translateY(-5px);
  border-color: var(--border-color);
}

.vehicle-img {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vehicle-slide:hover .vehicle-img img {
  transform: scale(1.05);
}

.plate-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  border: 2px solid #000;
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.plate-badge span {
  background: #0033a0;
  color: #fff;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 0.65rem;
  margin-right: 6px;
}

.vehicle-details {
  padding: 25px;
}

.vehicle-details h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spec-item i {
  color: var(--primary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 25px;
  border-radius: 10px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #15161e 0%, #08090c 100%);
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,179,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-text h2 span {
  color: var(--primary);
}

.cta-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.cta-phone-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,179,0,0.05);
  border: 1px solid var(--border-color);
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.cta-phone-card:hover {
  transform: scale(1.03);
  background: rgba(255,179,0,0.1);
}

.cta-phone-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  animation: phonePulse 1.5s infinite;
}

.cta-phone-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

.cta-phone-info a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
}

.cta-phone-info a:hover {
  color: var(--primary);
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 179, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
  }
}

/* Why Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 15px;
  padding: 35px 25px;
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-color);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Photo Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--primary);
  font-size: 2.5rem;
  transform: scale(0.7);
  transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Contact Details Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-color);
  background: var(--bg-card-hover);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,179,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-details h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card-details p, .contact-card-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card-details a:hover {
  color: var(--primary);
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255,179,0,0.1);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Map Containers */
.maps-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card h4 {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-card h4 i {
  color: var(--primary);
}

.map-iframe {
  width: 100%;
  height: 250px;
  border: none;
  background: #111;
}

/* SEO Page Layout */
.seo-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.seo-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 15px;
  padding: 40px;
}

.seo-content h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255,179,0,0.1);
  padding-bottom: 15px;
}

.seo-content h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary);
}

.seo-content h3 {
  font-size: 1.25rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.seo-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.seo-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
  color: var(--text-muted);
}

.seo-content ul li {
  margin-bottom: 10px;
}

.seo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 12px;
  padding: 30px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.seo-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.seo-links-list::-webkit-scrollbar {
  width: 4px;
}

.seo-links-list li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-links-list li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.seo-faq {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background-color: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-contact-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-list li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Page Header (Inner Pages) */
.page-header {
  background: linear-gradient(rgba(11, 12, 16, 0.8), rgba(11, 12, 16, 0.95)), url('../images/arac-1.jpg') no-repeat center center/cover;
  padding: 150px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);
}

/* Floating Phone Button */
.phone-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: #000;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.phone-float:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.phone-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: phonePulseFloat 1.8s infinite;
  box-sizing: border-box;
}

@keyframes phonePulseFloat {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: waPulse 1.8s infinite;
  box-sizing: border-box;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vehicle-slide {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  header {
    background-color: var(--bg-header);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
  }
  .menu-btn {
    display: block;
  }
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #0b0c10;
    transition: var(--transition);
    padding: 40px;
    z-index: 998;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 25px;
  }
  nav ul li a {
    font-size: 1.2rem;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .section {
    padding: 60px 0;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .maps-container {
    grid-template-columns: 1fr;
  }
  .seo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }
  .feature-card {
    border-right: none;
    border-bottom: 1px solid #eef0f4;
    padding: 15px 10px;
  }
  .feature-card:last-child {
    border-bottom: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-slide {
    min-width: 100%;
    max-width: 100%;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
