/* =============================================
   ÜSKÜDAR VİNÇ - Premium Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #A07810;
  --dark: #0A0A0F;
  --dark2: #111118;
  --dark3: #1A1A26;
  --dark4: #22222F;
  --gray: #888899;
  --gray-light: #AAAABB;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.08);
  --border: rgba(212,160,23,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(212,160,23,0.25);
  --font: 'Inter', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--white);
  background: var(--white-dim);
}
.nav .dropdown {
  position: relative;
}
.nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px !important;
  font-size: 13px;
  color: var(--gray-light) !important;
  border-radius: 8px;
}
.dropdown-menu a:hover { background: var(--white-dim) !important; color: var(--gold) !important; }
.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  margin-left: 8px;
}
.btn-call:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-call svg { width: 16px; height: 16px; }

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--white-dim);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--white-dim);
  color: var(--gray-light);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white-dim);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--dark2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 20%, rgba(212,160,23,0.05) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white-dim);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--white-dim);
}
.hero-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
}
.hero-stat span {
  font-size: 13px;
  color: var(--gray);
}
.hero-visual {
  position: relative;
}
.hero-visual-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-crane-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.hero-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-float-badge .dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  flex-shrink: 0;
}
.hero-float-badge span { font-size: 13px; font-weight: 600; }
.hero-float-badge small { font-size: 11px; color: var(--gray); }

/* =============================================
   SERVICES (HIZMETLER)
   ============================================= */
#hizmetler {
  background: var(--dark2);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,160,23,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.service-card .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
}
.service-card:hover .more-link { gap: 10px; }

/* =============================================
   WHY US
   ============================================= */
#neden-biz {
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.why-text p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.why-feat:hover {
  border-color: var(--border);
  background: var(--dark4);
}
.why-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,160,23,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-feat p { font-size: 13px; color: var(--gray); }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.why-stat strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.why-stat span {
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 500;
}

/* =============================================
   ARAÇLARIMIZ — FLEET
   ============================================= */
#araclar {
  background: var(--dark2);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.fleet-img {
  width: 100%;
  height: 200px;
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.fleet-body { padding: 20px; }
.fleet-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fleet-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* =============================================
   FAQ / ACCORDION
   ============================================= */
#sss {
  background: var(--dark);
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.faq-intro p { font-size: 15px; color: var(--gray-light); line-height: 1.7; margin-bottom: 32px; }
.faq-contact-box {
  background: linear-gradient(135deg, rgba(212,160,23,0.15) 0%, rgba(212,160,23,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.faq-contact-box p { font-size: 14px; color: var(--gray-light); margin-bottom: 16px; }
.faq-contact-box a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
}
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.acc-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 12px;
  transition: var(--transition);
}
.acc-header:hover { color: var(--gold); }
.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: rgba(212,160,23,0.2); color: var(--gold); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  border-top: 1px solid var(--white-dim);
  padding-top: 16px;
}
.acc-item.open .acc-body { max-height: 300px; }
.acc-item.open { border-color: var(--border); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, #1a1208 0%, var(--dark3) 50%, #1a1208 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at center, rgba(212,160,23,0.08) 0%, transparent 70%);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  font-size: 17px;
  color: var(--gray-light);
  margin-bottom: 36px;
  position: relative;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark2);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.footer-contact li svg { color: var(--gold); flex-shrink: 0; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li a {
  display: block;
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); }

/* =============================================
   PAGE HEADER (for inner pages)
   ============================================= */
.page-header {
  background: var(--dark2);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at right center, rgba(212,160,23,0.07) 0%, transparent 70%);
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb span { color: var(--gray); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
}
.page-header p {
  font-size: 16px;
  color: var(--gray-light);
  margin-top: 14px;
  max-width: 600px;
  position: relative;
}

/* =============================================
   CONTENT PAGES
   ============================================= */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.content-article {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.8;
}
.content-article h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin: 40px 0 16px;
}
.content-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
}
.content-article h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0 10px;
}
.content-article p { margin-bottom: 18px; }
.content-article strong { color: var(--white); font-weight: 700; }
.content-article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.content-article ul li { margin-bottom: 8px; }

/* Hakkımızda / Single page layout */
.hakkimizda-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hakkimizda-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.sidebar-menu li a:hover { color: var(--gold); padding-left: 4px; }
.sidebar-menu li a svg { color: var(--gold); flex-shrink: 0; }
.sidebar-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.sidebar-contact-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border); transform: translateY(-4px); }
.blog-img {
  width: 100%;
  height: 180px;
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 36px;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: rgba(212,160,23,0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-read {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* =============================================
   CONTACT / İLETİŞİM
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-info p { font-size: 15px; color: var(--gray-light); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,160,23,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 15px; font-weight: 600; color: var(--white); margin: 0; }
.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-light); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.form-submit:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

/* =============================================
   UTILITY
   ============================================= */
.gold-text { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.show-more-wrap { text-align: center; margin-top: 40px; }

/* SCROLL ANIMATION */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid, .faq-grid, .contact-layout, .hakkimizda-wrap { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .services-grid, .fleet-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
}
