/*
Theme Name: MNS Oto Servis
Theme URI: https://mnsotoservisi.com.tr/
Author: MNS Oto Servis
Author URI: https://mnsotoservisi.com.tr/
Description: Profesyonel ve Premium MNS Oto Servis WordPress Teması. Motor bakım, ön takım, fren sistemi, arıza tespit ve 7/24 yol yardım hizmetleri için modern, premium kurumsal web sitesi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mns-oto-servis
Tags: business, auto-service, corporate, dark, premium, responsive
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C878;
  --gold-dark: #A07830;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --font-heading: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.3);
  --radius: 8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 2rem 0;
}

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

.section-padding {
  padding: 80px 0;
}

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */
.ticker-wrapper {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1000;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 60px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.ticker-item::after {
  content: '|';
  margin-left: 60px;
  opacity: 0.5;
}

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

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

#site-header.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-logo img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  transition: var(--transition);
}

.site-logo img:hover {
  filter: drop-shadow(0 2px 16px rgba(201,168,76,0.7));
}

#site-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

#site-nav ul li a {
  color: var(--gray-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

#site-nav ul li a:hover {
  color: var(--gold);
}

#site-nav ul li a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

.phone-link:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title .gold {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-image-col {
  position: relative;
  z-index: 2;
}

.hero-main-img {
  border-radius: 8px;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  height: 400px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--dark);
  padding: 80px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

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

.service-card:hover .service-card-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.service-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.service-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--dark2), transparent);
}

.service-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--black);
}

.service-body {
  padding: 25px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(201,168,76,0.1);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.service-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
  background: var(--black);
  padding: 80px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-grid {
  columns: 4 250px;
  gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition);
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

/* ============================================================
   WHY US SECTION
   ============================================================ */
#why-us {
  background: var(--dark);
  padding: 80px 0;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-title {
  text-align: left;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark2);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--dark3);
  transform: translateX(5px);
}

.why-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
}

.why-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.why-text p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.why-image-col {
  position: relative;
}

.why-main-img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.why-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.why-badge-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--dark2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--font-heading);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-title .gold {
  color: var(--gold);
}

.contact-desc {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--black);
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin: 1rem 0;
  letter-spacing: 2px;
}

.cta-phone:hover {
  color: var(--gold-light);
}

.cta-subtitle {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--dark3);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 60px;
}

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

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
}

.footer-about {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  color: var(--gray);
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-copy a {
  color: var(--gold);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  #site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 20px;
  }

  #site-nav.open {
    display: block;
  }

  #site-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  #site-nav ul li a {
    font-size: 1.1rem;
  }

  .header-cta .phone-link span {
    display: none;
  }

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

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

  .why-image-col {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    columns: 2 160px;
  }

  .hero-content {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    columns: 2 120px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .ticker-item {
    font-size: 0.75rem;
    padding: 0 30px;
  }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   WORDPRESS DEFAULT CLASSES
   ============================================================ */
.aligncenter { margin: 0 auto; display: block; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.wp-block-image { margin-bottom: 1rem; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
