/* ============================================
   GOLD STAR GEMİ - Maritime Logistics
   Color: Navy / Crimson / Cream / Gold
   Type:  Bodoni Moda (display) + Inter (body)
   ============================================ */

:root {
  --navy: #0a2342;
  --navy-2: #1a3a5c;
  --navy-deep: #051a30;
  --crimson: #c8102e;
  --crimson-2: #a30d24;
  --gold: #d4a85a;
  --cream: #f5f1e8;
  --cream-2: #ebe5d4;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --line: #e2dccb;
  --white: #ffffff;
  
  --f-display: 'Bodoni Moda', 'Times New Roman', serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
  
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(10,35,66,0.06);
  --shadow: 0 8px 32px rgba(10,35,66,0.12);
  --shadow-lg: 0 24px 64px rgba(10,35,66,0.18);
  
  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ ANNOUNCEMENT ============ */
.announce {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 12.5px;
  padding: 10px 0;
  letter-spacing: 0.3px;
}
.announce .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.announce-link {
  margin-left: auto;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
  transition: opacity .2s;
}
.announce-link:hover { opacity: 0.7; }

/* ============ HEADER ============ */
.header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(245,241,232,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--crimson);
  font-weight: 600;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width .3s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--crimson); }

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

.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--crimson);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--crimson-2);
}
.btn-primary:hover {
  background: var(--crimson-2);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--crimson-2);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-ghost {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  font-size: 12px;
}
.btn-ghost:hover { background: var(--navy-deep); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-primary.inline { margin-top: 8px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: .3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 100px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245,241,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,241,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-wave {
  position: absolute;
  bottom: 60px;
  left: -10%;
  right: -10%;
  height: 200px;
  background: radial-gradient(ellipse at center top, rgba(212,168,90,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(212,168,90,0.4);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 600;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200,16,46,0); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 8px;
  background: var(--crimson);
  z-index: -1;
  opacity: 0.6;
  border-radius: 4px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,241,232,0.75);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-buttons .btn-outline {
  color: var(--cream);
  border-color: rgba(245,241,232,0.3);
}
.hero-buttons .btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(245,241,232,0.15);
  padding-top: 32px;
}
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(245,241,232,0.6);
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.anchor-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  border: 12px solid rgba(212,168,90,0.3);
}
.anchor-card img {
  width: 70%;
  position: relative;
  z-index: 2;
}
.badge-rotate {
  position: absolute;
  inset: -20px;
  animation: spin 30s linear infinite;
}
.badge-rotate svg {
  width: 100%;
  height: 100%;
}
@keyframes spin { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  color: var(--ink);
  animation: float 4s ease-in-out infinite;
}
.fc-icon { font-size: 28px; }
.fc-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fc-value {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}
.card-1 { top: 20px; right: 0; }
.card-2 { bottom: 30px; left: -20px; animation-delay: -2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Ticker */
.ticker {
  background: var(--crimson);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 3px;
}
.ticker-track span { display: inline-block; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ TRACKING ============ */
.tracking {
  background: var(--cream);
  padding: 0;
  position: relative;
  z-index: 10;
}
.tracking-card {
  background: var(--white);
  margin-top: -50px;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 4px solid var(--crimson);
}
.tracking-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--crimson);
  font-weight: 700;
}
.tracking-left h2 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin: 12px 0 12px;
  letter-spacing: -0.5px;
}
.tracking-left h2 em { color: var(--crimson); font-style: italic; }
.tracking-left p { color: var(--muted); }

.tracking-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.input-row {
  display: flex;
  gap: 0;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}
.input-row input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: var(--f-mono);
  font-size: 14px;
  background: transparent;
  outline: none;
}
.input-row button {
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 0 28px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  transition: background .2s;
}
.input-row button:hover { background: var(--crimson); }
.tracking-hint {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ============ COMMON SECTION ============ */
section { padding: 120px 0; }
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 20px;
}
.eyebrow.light { color: var(--gold); }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--crimson);
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all .35s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--crimson);
}
.service-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.service-card.featured h3, .service-card.featured .sc-link { color: var(--cream); }
.service-card.featured p { color: rgba(245,241,232,0.7); }
.service-card.featured .sc-list li { color: rgba(245,241,232,0.85); border-color: rgba(245,241,232,0.15); }
.service-card.featured .sc-num { color: var(--gold); }
.service-card.featured .sc-icon { color: var(--gold); }

.sc-num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--crimson);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.sc-icon {
  width: 56px;
  height: 56px;
  color: var(--crimson);
  margin-bottom: 24px;
}
.sc-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sc-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.sc-list li {
  font-size: 13px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.sc-list li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-size: 11px;
}
.sc-link {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--crimson);
  text-transform: uppercase;
  margin-top: auto;
}

/* ============ ABOUT ============ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}
.about-left p {
  color: var(--muted);
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.af-item svg { color: var(--crimson); flex-shrink: 0; }

.about-right { position: relative; }
.about-image-stack { position: relative; height: 500px; }
.about-image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-1 {
  top: 0;
  right: 0;
  width: 78%;
  height: 80%;
}
.placeholder-ship {
  width: 100%;
  height: 100%;
}
.placeholder-ship svg { width: 100%; height: 100%; }
.image-2 {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 30%;
  background: var(--crimson);
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  border: 8px solid var(--cream);
}
.years {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.years-label {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
}

/* ============ FLEET ============ */
.fleet { background: var(--navy-deep); color: var(--cream); }
.fleet .section-title { color: var(--cream); }
.fleet .eyebrow { color: var(--gold); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fleet-card {
  background: var(--navy);
  border: 1px solid rgba(212,168,90,0.15);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: all .25s;
}
.fleet-card:hover {
  border-color: var(--gold);
  background: var(--navy-2);
  transform: translateY(-4px);
}
.fleet-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.fleet-card h4 {
  font-family: var(--f-display);
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--cream);
  font-weight: 600;
}
.fleet-specs { font-size: 13px; }
.fleet-specs div {
  padding: 6px 0;
  border-top: 1px solid rgba(245,241,232,0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(245,241,232,0.8);
}
.fleet-specs span {
  color: rgba(245,241,232,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ PROCESS ============ */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dashed var(--crimson);
  opacity: 0.4;
  z-index: 0;
}
.step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--crimson);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--cream);
}
.step h4 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============ QUOTE FORM ============ */
.quote { background: var(--navy); }
.quote-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.quote-left {
  color: var(--cream);
  position: sticky;
  top: 100px;
}
.quote-left h2 {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  margin: 16px 0 20px;
  letter-spacing: -0.5px;
}
.quote-left h2 em { color: var(--gold); font-style: italic; }
.quote-left p { color: rgba(245,241,232,0.7); margin-bottom: 32px; }
.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
}

.quote-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--crimson);
}
.field textarea { resize: vertical; }

/* ============ SECTORS ============ */
.sectors { background: var(--white); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sector {
  background: var(--cream);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .25s;
  border: 1px solid transparent;
}
.sector:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-4px);
}
.sector:hover h5 { color: var(--cream); }
.sector span {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}
.sector h5 {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
}

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 40px; }
.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ci-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-item h5 {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}
.ci-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.contact-map {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(245,241,232,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 24px 0;
  max-width: 360px;
}
.footer-logo .logo-name { color: var(--cream); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245,241,232,0.08);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all .2s;
}
.socials a:hover { background: var(--crimson); transform: translateY(-2px); }

.footer-col h5 {
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245,241,232,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom .powered { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .quote-card, .contact-grid, .tracking-card { grid-template-columns: 1fr; gap: 40px; }
  .contact-items { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn-ghost { display: none; }
  .hide-mobile { display: none; }
  .announce .container { gap: 12px; font-size: 11px; }
  
  .hero { padding: 60px 0 0; }
  .hero-title { font-size: 44px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-num { font-size: 34px; }
  
  .tracking-card { padding: 28px; margin-top: -30px; }
  .row-2 { grid-template-columns: 1fr; }
  .services-grid, .fleet-grid, .sectors-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .quote-form { padding: 24px; }
  .about-features { grid-template-columns: 1fr; }
}

/* ============================================
   HEADER PHONE CTA
   ============================================ */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #c8102e, #a30c25);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.4);
}
.header-phone svg { flex-shrink: 0; }

.announce-item[href] { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.announce-item[href]:hover { opacity: 0.75; }

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 168, 90, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 35, 66, 0.05), transparent 50%),
    #faf7f0;
  position: relative;
  overflow: hidden;
}
.leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 35, 66, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.leadership-intro .eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c8102e;
  font-weight: 600;
  margin-bottom: 20px;
}
.leadership-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  color: #0a2342;
  margin: 0 0 28px;
  font-weight: 500;
}
.leadership-title em {
  font-style: italic;
  color: #c8102e;
  font-weight: 400;
}
.leadership-message {
  font-size: 17px;
  line-height: 1.75;
  color: #2b3a4a;
  margin: 0 0 32px;
  border-left: 3px solid #d4a85a;
  padding-left: 24px;
  font-style: italic;
}
.leadership-message strong {
  color: #0a2342;
  font-weight: 700;
  font-style: normal;
}
.leadership-message em {
  color: #c8102e;
  font-style: italic;
  font-weight: 500;
}
.leadership-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d4a85a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.leadership-signature svg { color: #d4a85a; }

.leadership-cards {
  display: grid;
  gap: 24px;
}
.leader-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(10, 35, 66, 0.08);
  box-shadow: 0 20px 50px -25px rgba(10, 35, 66, 0.25);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -25px rgba(10, 35, 66, 0.4);
}
.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #c8102e, #d4a85a);
  border-radius: 4px 0 0 4px;
}
.leader-card--alt::before {
  background: linear-gradient(180deg, #0a2342, #d4a85a);
}
.leader-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a2342, #1a3a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a85a;
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 3px rgba(212, 168, 90, 0.3);
}
.leader-card--alt .leader-avatar {
  background: linear-gradient(135deg, #c8102e, #8c0a1f);
  color: #f5f1e8;
  box-shadow: inset 0 0 0 3px rgba(245, 241, 232, 0.25);
}
.leader-initials { z-index: 1; }
.leader-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #d4a85a;
  color: #0a2342;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border: 3px solid #fff;
}
.leader-role {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #c8102e;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.leader-card--alt .leader-role { color: #0a2342; }
.leader-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  font-weight: 600;
  color: #0a2342;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.leader-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #44546a;
  font-style: italic;
  margin: 0 0 18px;
  position: relative;
  padding-left: 16px;
}
.leader-quote::before {
  content: '"';
  position: absolute;
  left: -4px; top: -8px;
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  color: #d4a85a;
  line-height: 1;
}
.leader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 35, 66, 0.15);
}
.leader-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6b7a8e;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.leader-meta svg { color: #d4a85a; }

/* ============================================
   CONTACT ITEM AS LINK / WHATSAPP
   ============================================ */
.ci-item--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, background 0.25s ease;
  border-radius: 8px;
  padding: 8px;
  margin: -8px;
}
.ci-item--link:hover {
  transform: translateX(4px);
  background: rgba(212, 168, 90, 0.08);
}
.ci-item--primary .ci-icon {
  background: linear-gradient(135deg, #c8102e, #a30c25) !important;
  color: #fff !important;
}
.ci-item--primary p strong {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #c8102e;
}
.ci-icon--wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
}
.ci-item--wa:hover { background: rgba(37, 211, 102, 0.08); }

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}
.fc-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.35);
  transition: width 0.35s ease, border-radius 0.35s ease, transform 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
}
.fc-btn:hover {
  width: 180px;
  border-radius: 32px;
  transform: translateY(-2px);
}
.fc-label {
  max-width: 0;
  opacity: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-left: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease 0.1s, margin-left 0.35s ease;
}
.fc-btn:hover .fc-label {
  max-width: 110px;
  opacity: 1;
  margin-left: 10px;
}
.fc-phone {
  background: linear-gradient(135deg, #c8102e, #8c0a1f);
}
.fc-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.fc-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #c8102e;
  animation: fcPulse 2s infinite;
  pointer-events: none;
}
.fc-btn:hover .fc-pulse { display: none; }
@keyframes fcPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* ============================================
   LEADERSHIP & FLOATING RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .leadership-grid { grid-template-columns: 1fr; gap: 48px; }
  .header-phone span { display: none; }
  .header-phone { width: 40px; height: 40px; padding: 0; justify-content: center; }
}
@media (max-width: 720px) {
  .leadership { padding: 64px 0; }
  .leader-card {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 22px;
  }
  .leader-avatar { width: 80px; height: 80px; font-size: 26px; }
  .leader-badge { width: 26px; height: 26px; font-size: 13px; }
  .leader-name { font-size: 20px; }
  .leadership-message { font-size: 15px; padding-left: 18px; }
  .floating-contact { right: 16px; bottom: 16px; gap: 10px; }
  .fc-btn { width: 54px; height: 54px; }
  .fc-btn:hover { width: 54px; } /* disable expand on mobile */
  .fc-btn:hover .fc-label { display: none; }
  .header-phone { display: none; }
}

/* Leader photo (DB'den yüklenen görsel için) */
.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
.leader-avatar { overflow: hidden; }

/* ============================================
   LANGUAGE SWITCHER (Announce Bar)
   ============================================ */
.announce-langs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.lang-link {
  padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: inherit;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  opacity: 0.6;
}
.lang-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.lang-link.active {
  opacity: 1;
  background: rgba(212, 168, 90, 0.2);
  color: #d4a85a;
}

.announce .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .announce-langs { margin-left: 0; }
  .lang-link { padding: 3px 7px; font-size: 10px; }
}

/* ============================================================
   ÇIÇEK GİBİ DÜZGÜN MOBİL UYUM + İKON & FOTOĞRAF BÜYÜTMELER
   v3 — class mismatch + responsive comprehensive fix
   ============================================================ */

/* ============================================
   1. SERVICE CARDS — Class mismatch fixes
   index.php: .service-icon, .service-num, .service-features, .service-more
   ============================================ */

.service-num {
  font-family: var(--f-display, 'Bodoni Moda', serif);
  font-size: 18px;
  color: #c8102e;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.85;
}

.service-icon {
  font-size: 56px;        /* eskiden default 16px geliyordu - büyük emoji */
  line-height: 1;
  margin-bottom: 24px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(10, 35, 66, 0.15));
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-features {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  flex: 1;
}
.service-features li {
  font-size: 14px;
  padding: 10px 0 10px 24px;
  border-top: 1px solid rgba(10, 35, 66, 0.08);
  color: #1f2937;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #c8102e;
  font-size: 13px;
}
.service-features li:last-child { border-bottom: 1px solid rgba(10, 35, 66, 0.08); }

.service-more {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #c8102e;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  padding-top: 12px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-more:hover {
  color: #8c0a1f;
  letter-spacing: 2px;
}

/* ============================================
   2. PROCESS — Class mismatch (process-grid vs process-steps)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 50px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(10, 35, 66, 0.2) 0, rgba(10, 35, 66, 0.2) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a85a, #b8861f);
  color: #0a2342;
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(212, 168, 90, 0.35);
  border: 3px solid #f5f1e8;
}
.ps-line {
  display: none; /* dekoratif - kullanılmıyor */
}
.process-step h4 {
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  color: #0a2342;
  margin-bottom: 10px;
  font-weight: 600;
}
.process-step p {
  font-size: 14px;
  color: #5a6175;
  line-height: 1.6;
}

/* ============================================
   3. LEADER FOTOĞRAFLARI — büyütüldü
   ============================================ */
.leader-avatar {
  width: 140px !important;     /* 110px → 140px */
  height: 140px !important;
  font-size: 44px !important;
  box-shadow:
    inset 0 0 0 3px rgba(212, 168, 90, 0.35),
    0 14px 36px -8px rgba(10, 35, 66, 0.35);
}
.leader-card--alt .leader-avatar {
  box-shadow:
    inset 0 0 0 3px rgba(245, 241, 232, 0.3),
    0 14px 36px -8px rgba(200, 16, 46, 0.35);
}
.leader-badge {
  width: 38px !important;       /* 32 → 38 */
  height: 38px !important;
  font-size: 20px !important;
  bottom: 0 !important;
  right: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* leader-card grid: avatar büyüdü, layout güncelle */
.leader-card {
  grid-template-columns: 140px 1fr !important;
  gap: 28px !important;
}

/* ============================================
   4. ABOUT FEATURES — ikon/numara büyütme
   ============================================ */
.af-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;             /* eskiden küçüktü */
  color: #c8102e;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.08), rgba(200, 16, 46, 0.02));
  border-radius: 6px;
  border-left: 3px solid #c8102e;
}

/* ============================================
   5. SECTOR İKONLARI — büyütüldü
   ============================================ */
.sector {
  text-align: center;
  padding: 28px 18px;
}
.sector span {
  font-size: 48px !important;   /* 32-36px → 48px */
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(10, 35, 66, 0.12));
}
.sector h5 {
  font-size: 14px;
  font-weight: 600;
  color: #0a2342;
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   6. CONTACT IKONLARI — büyütme
   ============================================ */
.ci-icon {
  flex-shrink: 0;
  width: 52px !important;       /* eskiden küçüktü */
  height: 52px !important;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(200, 16, 46, 0.04));
  color: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 16, 46, 0.15);
}
.ci-icon svg { width: 24px; height: 24px; }
.ci-icon--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-color: transparent;
}

/* ============================================
   7. FOOTER SOSYAL İKONLARI — büyütme
   ============================================ */
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.25s;
  color: #f5f1e8;
}
.footer-social a:hover {
  background: #c8102e;
  transform: translateY(-3px);
}
.footer-social svg { width: 20px; height: 20px; }

/* ============================================
   8. HERO RING — favicon yansıması
   ============================================ */
.hero-logo-circle img { width: 100%; height: 100%; object-fit: contain; }


/* ============================================================
   ====== KAPSAMLI MOBİL UYUM (tablet ve telefon) ======
   ============================================================ */

/* TABLET (1024px ve altı) */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-inner { gap: 12px; }

  /* Nav tablette de gizli, hamburger menü gösterilir */
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 30px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-title { font-size: 56px; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-card { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .sectors-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* TELEFON (720px ve altı) — comprehensive */
@media (max-width: 720px) {
  /* Genel container ve section spacing */
  .container { padding: 0 16px; }
  section { padding: 56px 0 !important; }

  /* ANNOUNCE BAR — sık öğeleri kompakt göster */
  .announce { font-size: 11px; padding: 8px 0; }
  .announce .container { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .announce-item { font-size: 11px; }
  .hide-mobile { display: none; }
  .announce-langs { margin-left: 0; order: 99; width: 100%; justify-content: center; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); }

  /* HEADER */
  .header-inner { padding: 14px 0; }
  .logo img { width: 42px; height: 42px; }
  .logo-name { font-size: 15px; letter-spacing: 0.5px; }
  .logo-sub { font-size: 9px; letter-spacing: 1.5px; }
  .header-phone { display: none; }
  .header-cta .btn-ghost { display: none; }

  /* HERO */
  .hero { padding: 50px 0 0; }
  .hero-tag { font-size: 11px; }
  .hero-title { font-size: 38px !important; line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hs-num, .stat-num { font-size: 30px; }
  .hs-label { font-size: 11px; }
  .hero-visual { max-width: 280px; }
  .hero-badge-ring { width: 280px; height: 280px; }
  .hero-floating-card { display: none; }
  .hero-cert-badge { display: none; }
  .hero-ticker { font-size: 12px; padding: 14px 0; }

  /* SECTION TITLES */
  .section-title { font-size: 32px !important; line-height: 1.2; }
  .leadership-title { font-size: 32px !important; }
  .section-sub { font-size: 15px; }
  .eyebrow { font-size: 11px; letter-spacing: 2px; }

  /* LEADERSHIP — mobile düzeni */
  .leadership { padding: 56px 0 !important; }
  .leader-card {
    grid-template-columns: 1fr !important;     /* tek kolon, foto üstte */
    text-align: center;
    gap: 20px !important;
    padding: 28px 22px;
  }
  .leader-avatar {
    width: 130px !important;   /* hâlâ büyük ama biraz daha küçük */
    height: 130px !important;
    font-size: 42px !important;
    margin: 0 auto;
  }
  .leader-badge { width: 36px !important; height: 36px !important; font-size: 18px !important; }
  .leader-name { font-size: 22px; }
  .leader-quote { font-size: 14.5px; line-height: 1.65; }
  .leader-meta { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .leader-meta span { font-size: 11.5px; }
  .leadership-message { font-size: 15px; padding-left: 14px; line-height: 1.7; }
  .leadership-signature { gap: 10px; }
  .leadership-signature svg { width: 36px; height: 36px; flex-shrink: 0; }

  /* TRACKING */
  .tracking { padding-top: 0 !important; }
  .tracking-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    margin-top: -20px;
    gap: 24px;
  }
  .tracking-card h2 { font-size: 26px; }
  .tracking-form .input-row { flex-direction: column; gap: 12px; }
  .tracking-form button { width: 100%; justify-content: center; }

  /* SERVICES — tek kolon, ikon büyük */
  .services-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .service-card { padding: 28px 24px !important; }
  .service-num { font-size: 16px; margin-bottom: 8px; }
  .service-icon { font-size: 48px !important; margin-bottom: 18px; }
  .service-card h3 { font-size: 20px !important; }
  .service-features li { font-size: 13.5px; padding: 8px 0 8px 22px; }

  /* ABOUT */
  .about-grid { gap: 40px; }
  .about-features { grid-template-columns: 1fr; gap: 18px; }
  .af-item { padding: 18px; background: rgba(200, 16, 46, 0.03); border-radius: 8px; }
  .af-num { font-size: 22px; }
  .af-item h4 { font-size: 16px; margin: 8px 0; }
  .af-item p { font-size: 13.5px; }
  .about-card { padding: 28px 22px; }
  .ac-num { font-size: 56px !important; }

  /* FLEET */
  .fleet-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .fleet-card { padding: 20px 16px; }
  .fleet-num { font-size: 12px; }
  .fleet-card h4 { font-size: 15px; }
  .fleet-specs { font-size: 12px; }

  /* PROCESS */
  .process-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .process-step { text-align: center; }
  .ps-num { width: 64px; height: 64px; font-size: 22px; margin-bottom: 16px; }
  .process-step h4 { font-size: 18px; }
  .process-step p { font-size: 13.5px; }

  /* QUOTE */
  .quote-card { padding: 0 !important; }
  .quote-left { padding: 32px 24px; }
  .quote-left h2 { font-size: 28px; }
  .quote-contact { flex-direction: column; gap: 10px; align-items: flex-start; }
  .quote-form { padding: 28px 22px !important; }
  .row-2 { grid-template-columns: 1fr; gap: 16px; }
  .field input, .field select, .field textarea { font-size: 16px; /* iOS zoom önle */ padding: 12px 14px; }
  .field label { font-size: 13px; }
  .btn-primary.full { padding: 16px; font-size: 14px; }

  /* SECTORS — 2 kolon mobile */
  .sectors-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .sector { padding: 22px 14px; }
  .sector span { font-size: 40px !important; margin-bottom: 10px; }
  .sector h5 { font-size: 13px; }

  /* CONTACT */
  .contact-grid { gap: 32px; }
  .contact-items { grid-template-columns: 1fr; gap: 12px; }
  .ci-item { padding: 16px; gap: 14px; }
  .ci-icon { width: 46px !important; height: 46px !important; }
  .ci-icon svg { width: 20px; height: 20px; }
  .ci-item h5 { font-size: 12px; }
  .ci-item p { font-size: 14px; }
  .contact-map { height: 280px; }
  .contact-map iframe { height: 280px; }

  /* FOOTER */
  .footer { padding: 56px 0 30px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .footer-social { text-align: center; margin-top: 16px; }
  .footer-col h5 { font-size: 12px; margin-bottom: 14px; }
  .footer-col a { font-size: 13.5px; padding: 6px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-top: 28px; font-size: 12px; }

  /* FLOATING CONTACT */
  .floating-contact { right: 14px; bottom: 14px; gap: 10px; }
  .fc-btn {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
  }
  .fc-btn:hover {
    width: 56px !important;
    padding: 0 !important;
  }
  .fc-btn:hover .fc-label { display: none; }
  .fc-label { display: none; }
  .fc-btn svg { width: 26px !important; height: 26px !important; }

  /* MENU TOGGLE - hamburger görünür kıl */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(200, 16, 46, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #0a2342;
    border-radius: 2px;
    transition: all 0.25s;
  }
}

/* DAR TELEFON (480px ve altı) — daha sıkı */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 32px !important; }
  .section-title, .leadership-title { font-size: 26px !important; }
  .service-icon { font-size: 44px !important; }
  .sector span { font-size: 36px !important; }
  .stat-num, .hs-num { font-size: 26px !important; }
  .leader-avatar { width: 110px !important; height: 110px !important; font-size: 36px !important; }
  .ci-icon { width: 42px !important; height: 42px !important; }
  .ci-icon svg { width: 18px; height: 18px; }
  .fleet-grid { grid-template-columns: 1fr !important; }
  .quote-form { padding: 22px 18px !important; }
}

/* iOS Safari input zoom önle */
@media (max-width: 720px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ============================================
   MOBİL NAVİGASYON — açılır panel
   ============================================ */
@media (max-width: 1024px) {
  .nav.open {
    display: flex !important;
    position: fixed;
    top: 0; right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(180deg, #0a2342, #1a3a5f);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    z-index: 9000;
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
    overflow-y: auto;
    animation: slide-in 0.3s ease;
  }
  .nav.open a {
    color: #f5f1e8 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .nav.open a:hover, .nav.open a.active {
    color: #d4a85a !important;
    padding-left: 8px;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 35, 66, 0.6);
    z-index: 8999;
    animation: fade-in 0.3s ease;
  }
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Menu toggle X animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   CLASS NAME ALIASES — index.php uses some
   different class names than the original CSS
   ============================================ */
.quote-section { background: var(--navy); padding: 120px 0; }
.quote-section .eyebrow { color: rgba(245, 241, 232, 0.7); }
.quote-section .eyebrow.light { color: #d4a85a; }

/* Fleet alternative class */
.fleet { background: var(--white); }

/* Sectors */
.sectors { background: var(--cream); }
.sectors .section-head { margin-bottom: 48px; }

/* Process — ensure cream background and proper colors */
.process { background: var(--cream); padding: 120px 0; }
.process .section-head .section-title { color: var(--navy); }
.process .section-head .section-title em { color: var(--crimson); }
.process .eyebrow.light { color: #c8102e; }

/* Mobile process spacing */
@media (max-width: 720px) {
  .quote-section { padding: 56px 0 !important; }
  .quote-section .quote-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
  }
  .quote-section .quote-left {
    background: var(--navy);
    color: var(--cream);
    padding: 32px 24px;
  }
  .quote-section .quote-form {
    background: var(--white);
    padding: 28px 22px !important;
  }
}
