/* =============================================
   ASSOS MARITIME — Stylesheet
   taste-skill: DESIGN_VARIANCE 8 | MOTION 6 | DENSITY 4
   ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #020b18;
  --bg-2:       #051625;
  --bg-3:       #091e38;
  --surface:    #0c2244;
  --border:     rgba(80, 150, 220, 0.12);
  --gold:       #c8a855;
  --gold-dim:   #9a7e3a;
  --gold-light: #e2c97a;
  --blue:       #5aaee3;
  --blue-dim:   #1e6090;
  --text:       #d4dae8;
  --text-muted: #6b7a94;
  --text-dim:   #3a4a62;

  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 110% 55% at 50% 0%, rgba(8, 32, 80, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(5, 25, 65, 0.35) 0%, transparent 70%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.mono { font-family: var(--font-mono); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section__header { margin-bottom: 4rem; }

/* ── Vanta hero ── */
.hero__vanta {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ── Fleet Canvas ── */
.fleet__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-index] { transition-delay: calc(var(--index, 0) * 80ms + 0ms); }
.reveal[data-index="0"] { transition-delay: 0ms; }
.reveal[data-index="1"] { transition-delay: 100ms; }
.reveal[data-index="2"] { transition-delay: 200ms; }
.reveal[data-index="3"] { transition-delay: 100ms; }
.reveal[data-index="4"] { transition-delay: 200ms; }
.reveal[data-index="5"] { transition-delay: 300ms; }

/* ── Section Typography ── */
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #e8edf5;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--gold);
  color: #07101f;
}
.btn--primary:hover { background: var(--gold-light); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(200, 168, 85, 0.35);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; justify-content: center; }

.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(61, 143, 196, 0.1);
  border: 1px solid rgba(61, 143, 196, 0.25);
  color: var(--blue);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  border-radius: 3px;
}


/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(2, 11, 24, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #020b18;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8edf5;
}
.nav__logo-text span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(200, 168, 85, 0.4);
  color: var(--gold) !important;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover { background: var(--gold) !important; color: #07101f !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__mobile {
  display: none;
  background: rgba(7, 16, 31, 0.97);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 1.2rem; }
.nav__mobile a { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.nav__mobile a:hover { color: var(--gold); }


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* KENDİ FOTOĞRAFINI BURAYA EKLİYORSUN */
  background-image: url('../Fotograflar/arkaplan.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 85, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 85, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}

/* gradient overlay so text stays legible over vanta */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 16, 31, 0.80) 0%,
    rgba(7, 16, 31, 0.45) 60%,
    rgba(7, 16, 31, 0.20) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 0 6rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 168, 85, 0.08);
  border: 1px solid rgba(200, 168, 85, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.8rem;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  display: flex;
  flex-direction: column;
  
  /* 1. YAZIYI KÜÇÜLTME (Orijinali: clamp(3rem, 7vw, 6.5rem) idi) */
  /* Buradaki 4.5rem yazan yeri 4.0rem veya 3.5rem yaparak daha da küçültebilirsin */
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.8rem;
  max-width: 14ch;

  /* 2. YAZIYI ÜSTE ÇIKARMA */
  /* Eksi (-) değer verdikçe yukarı çıkar. -30px, -50px gibi deneyebilirsin */
  margin-top: -40px; 

  /* 3. YAZIYI SOLA YAKLAŞTIRMA */
  /* Eksi (-) değer verdikçe daha da sola kayar. */
  margin-left: -20px; 
}
.hero__title-line { display: block; color: #eef0f6; }
.hero__title-line--accent { color: var(--gold); }

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  background: rgba(7, 16, 31, 0.5);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 2rem;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__sep { color: var(--gold-dim); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 5.5rem;
  right: 3rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0) translateY(-50%); opacity: 0; transform-origin: top; }
  50%  { transform: scaleY(1) translateY(0); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0) translateY(50%); opacity: 0; transform-origin: bottom; }
}


/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--bg); }
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
}
.about__visual {
  position: relative;
  height: 420px;
}
.about__card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.4s var(--ease-out);
}
.about__card:hover { transform: translateY(-4px); }
.about__card--main {
  top: 0; left: 0;
  width: 280px;
  z-index: 3;
}
.about__card--secondary {
  bottom: 60px; left: 60px;
  width: 180px;
  z-index: 2;
  background: rgba(200, 168, 85, 0.06);
  border-color: rgba(200, 168, 85, 0.2);
}
.about__card--tertiary {
  top: 90px; right: 0;
  width: 160px;
  z-index: 1;
  background: rgba(61, 143, 196, 0.06);
  border-color: rgba(61, 143, 196, 0.2);
}
.about__card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about__card-icon svg { width: 100%; height: 100%; }
.about__card-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about__card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.about__card--secondary .about__card-stat,
.about__card--tertiary .about__card-stat {
  font-size: 1.5rem;
}

.about__body {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 52ch;
  line-height: 1.75;
  font-size: 0.97rem;
}
.about__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }


/* =============================================
   FLEET
   ============================================= */
.fleet { background: var(--bg-2); }
.fleet__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}
.fleet__card {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.fleet__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 168, 85, 0.3);
}
.fleet__card-bg {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #07101f;
}

.fleet__card-body { padding: 1.6rem; flex: 1; }
.fleet__card-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.fleet__card-bg--lng + .fleet__card-body .fleet__card-type { color: var(--blue); }
.fleet__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8edf5;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.fleet__card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.fleet__card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.fleet__card-specs span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  color: var(--text-muted);
}


/* =============================================
   SERVICES
   ============================================= */
/* =============================================
   SERVICES IZGARA (GRID) VE KART BOŞLUKLARI
   ============================================= */

.services .services__grid {
  display: grid !important;
  /* Kartlar arasına ciddi bir nefes payı bırakıyoruz */
  gap: 2.5rem !important; 
  /* 3'lü sütun yapısını koruyoruz */
  grid-template-columns: repeat(3, 1fr) !important;
  padding: 2rem 0 !important;
}

.services .service__item {
  /* Kartların içindeki metinlerin de sıkışmaması için iç boşluğu artırıyoruz */
  padding: 3.5rem 2.5rem !important;
  /* Kartların köşelerini bir tık daha yumuşatalım, lüks durur */
  border-radius: 24px !important;
  /* Kartların genişliğini sabitlemiyoruz ki esnek kalsınlar */
  height: 100% !important;
}

/* Mobilde (telefonlarda) kartlar üst üste binsin ama yine aralıklı olsun */
@media (max-width: 992px) {
  .services .services__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (max-width: 768px) {
  .services .services__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}
.service__item:hover { background: rgba(200, 168, 85, 0.03); }
.service__item:nth-child(3n) { border-right: none; }
.service__item:nth-child(4),
.service__item:nth-child(5),
.service__item:nth-child(6) { border-bottom: none; }
.service__number {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.service__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service__item:hover .service__icon { color: var(--gold-light); }
.service__icon svg { width: 100%; height: 100%; }
.service__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e8edf5;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.service__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
  border-radius: 0 2px 0 0;
}
.service__item:hover .service__line { width: 40px; }


/* =============================================
   STATS
   ============================================= */
.stats {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.stats__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 168, 85, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.stats__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.stats__body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 50ch;
}
.stats__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.stat__block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  flex-direction: row;
}
.stat__value {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat__unit {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--gold-dim);
  font-weight: 500;
  align-self: flex-start;
  margin-top: 0.4rem;
}
.stat__label {
  flex: 0 0 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}


/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact__body {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-size: 0.97rem;
  max-width: 46ch;
}
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact__detail-value {
  font-size: 0.95rem;
  color: var(--text);
}
a.contact__detail-value:hover { color: var(--gold); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(180,160,100,0.15);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--text-dim); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); }
.form__group select { appearance: none; cursor: pointer; }
.form__group select option { background: var(--bg-2); }

.form__success {
  display: none;
  font-size: 0.85rem;
  color: #5cb87a;
  font-family: var(--font-mono);
  text-align: center;
  padding: 0.5rem 0;
}
.form__success.show { display: block; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.8rem;
  padding-left: calc(34px + 0.6rem);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 0.5rem;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .fleet__card:last-child { grid-column: 1 / -1; }
  .about__layout { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { height: 300px; }
  .about__card--main { width: 220px; }
  .stats__layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }

  .section { padding: 5rem 0; }
  .hero__content { padding-top: 8rem; padding-bottom: 5rem; }
  .hero__scroll { display: none; }

  .fleet__grid { grid-template-columns: 1fr; }
  .fleet__card:last-child { grid-column: auto; }

  .services__grid { grid-template-columns: 1fr; border-radius: 8px; }
  .service__item { border-right: none; }
  .service__item:nth-child(n) { border-bottom: 1px solid var(--border); }
  .service__item:last-child { border-bottom: none; }

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

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .about__visual { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero__title { font-size: 2.8rem; }
  .footer__links { grid-template-columns: 1fr; }
  .stats__numbers { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact__form { padding: 1.5rem; }
}

/* =============================================
   ABOUT BÖLÜMÜ - GERÇEK CAM EFEKTİ (DÜZELTİLMİŞ)
   ============================================= */

/* 1. Arka plana hafif bir ışık huzmesi ekliyoruz ki camın bluru belli olsun */
.about { 
  background: radial-gradient(circle at 20% 50%, #1a4a63 0%, #0E2A38 50%) !important; 
}
.about .section__title { color: #ffffff !important; }
.about .about__body { color: #d4dae8 !important; }

/* 2. KUTULARA GERÇEKÇİ CAM EFEKTİ (Glassmorphism) */
.about .about__card {
  /* Çaprazlama hafif şeffaf beyaz geçişi (Camın kendisi) */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)) !important; 
  /* Arkadaki ışığı bulanıklaştıran kod */
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important; 
  /* Camın üstüne vuran ışık yansıması (Parlak üst ve sol kenar) */
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important; 
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
  /* Altındaki derinlik gölgesi */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important; 
}
/* =============================================
   MASTER PREMIUM TEMA: BEYAZ ZEMİN + OKYANUS CAM KARTLAR
   ============================================= */

/* 1. TÜM SAYFA ZEMİNİNİ BEYAZ YAP (About Hariç) */
.fleet, .services, .contact, .footer {
  background-color: #F5F5F7 !important; /* Apple Premium Beyazı */
  background-image: none !important;
}

/* 2. TÜM ANA BAŞLIKLARI KOYU GRİ YAP (Beyaz Zeminde Okunsun) */
.section__title {
  color: #1d1d1f !important;
  font-weight: 800 !important;
}

/* 3. TÜM KARTLARA (Fleet, Services, Contact Form) OKYANUS CAM EFEKTİ */
.fleet .fleet__card, 
.services .service__item, 
.contact__form {
  background: linear-gradient(135deg, #1a4a63 0%, #0E2A38 100%) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(14, 42, 56, 0.2) !important;
  transition: all 0.4s ease !important;
}

/* Mouse ile üzerine gelince hafif yükselme */
.fleet .fleet__card:hover, .services .service__item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 50px rgba(14, 42, 56, 0.3) !important;
}

/* 4. KARTLARIN İÇİNDEKİ TÜM YAZILARI BEYAZA/ALTINA ÇEVİR */
/* Hizmetler ve Gemi Kartları İçin */
.fleet__card-title, .service__title, .contact__form label {
  color: #FFFFFF !important;
}

.fleet__card-desc, .service__desc, .fleet__card-type {
  color: #d4dae8 !important;
}

/* İkonlar, Rakamlar ve Gemi Özellikleri (Altın/Mavi Tonları) */
.service__icon, .service__number, .fleet .fleet__card-specs span {
  color: #c8a855 !important;
}

.fleet .fleet__card-specs span {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* 5. İLETİŞİM FORMU ÖZEL AYARI */
.contact__form {
  padding: 3rem !important;
}

.contact__form input, .contact__form select, .contact__form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}

/* 6. FOOTER TEMİZLİĞİ */
.footer {
  border-top: 1px solid rgba(0,0,0,0.05) !important;
}
.footer .nav__logo-text, .footer .nav__logo-text span, .footer h4, .footer ul li a {
  color: #1d1d1f !important;
}

/* Kutunun içindeki yazılar */
.about .about__card-stat,
.about .about__card-icon {
  color: #c8a855 !important; 
}
.about .about__card-label {
  color: #d4dae8 !important;
}

/* 3. Etiketler (SOLAS vs.) */
.about .tag {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #5aaee3 !important; 
}

/* 4. "Who We Are" Yazısı */
.about .section__eyebrow {
  font-family: 'Georgia', 'Times New Roman', serif !important;
  font-size: 1.1rem !important; 
  font-weight: bold !important; 
  letter-spacing: 0.1em !important; 
  color: #c8a855 !important; 
}
/* =============================================
   CONTACT BÖLÜMÜ YAZI TİPİ GÜNCELLEMESİ
   ============================================= */

/* 1. Ana Başlık: Daha klasik, büyük ve otoriter */
.contact .section__title {
  font-family: 'Georgia', 'Times New Roman', serif !important;
  font-weight: bold !important;
  font-size: 3.5rem !important; /* Bir tık daha büyüttük ki vursun */
  line-height: 1.1 !important;
  letter-spacing: -1px !important;
}

/* 2. "Get In Touch" Üst Başlığı */
.contact .section__eyebrow {
  font-family: 'Georgia', serif !important;
  font-weight: bold !important;
  text-transform: uppercase;
  letter-spacing: 2px !important;
}

/* 3. Formun İçindeki Yazılar (Label ve Inputlar) */
/* Daha temiz ve modern bir sans-serif fontu kullanıyoruz */
.contact__form label {
  font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.8) !important; /* Hafif transparan beyaz */
}

.contact__form input, 
.contact__form select, 
.contact__form textarea {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
}

/* 4. "Send Message" Butonu Yazısı */
.contact__form .btn {
  font-family: 'Inter', sans-serif !important;
  font-weight: bold !important;
  text-transform: uppercase;
  letter-spacing: 1px !important;
}
/* =============================================
   TÜM ÜST BAŞLIKLARI (EYEBROWS) KALIN VE KLASİK YAP
   ============================================= */

.section__eyebrow {
  font-family: 'Georgia', 'Times New Roman', serif !important;
  font-weight: 900 !important; /* Ekstra kalınlık */
  font-size: 1.1rem !important; /* Daha okunaklı boyut */
  text-transform: uppercase !important; /* Tamamı büyük harf */
  letter-spacing: 0.15em !important; /* Harf arası hafif açık (Lüks durur) */
  color: #c8a855 !important; /* Şık bir altın/bronz tonu */
  margin-bottom: 1rem !important;
  display: block !important;
}

/* Sayfa genelindeki büyük başlıkları (H2) da bir tık daha kalınlaştıralım */
.section__title {
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

/* =============================================
   STATS BÖLÜMÜ - OKYANUS CAM EFEKTİ & GEÇİŞ ÇİZGİLERİ
   ============================================= */

/* 1. Stats Bölümünü de Okyanus Cam Bloğu Yapalım */
.stats__container {
  background: linear-gradient(135deg, #1a4a63 0%, #0E2A38 100%) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 4rem !important;
  box-shadow: 0 15px 35px rgba(14, 42, 56, 0.2) !important;
  display: flex !important;
  gap: 3rem !important;
  align-items: center !important;
}

/* Stats içindeki metinleri beyaza çekelim */
.stats .section__title, .stats .stats__body, .stats .stat__label {
  color: #FFFFFF !important;
}
.stats .stat__value {
  color: #c8a855 !important; /* Rakamlar altın sarısı kalsın, mavi üstünde parlar */
}

/* 2. PREMIUM GEÇİŞ ÇİZGİSİ (Bölüm Ayırıcılar) */
/* Her bölümün üstüne çok ince, premium bir gri çizgi ekliyoruz */
section {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* İlk bölüm olan Hero'da çizgi gözükmesin */
#hero {
  border-top: none !important;
}

/* 3. WHATSAPP / START CONVERSATION BUTONU GÜNCELLEMESİ */
.stats .btn--primary {
  background-color: #c8a855 !important;
  color: #ffffff !important;
  border-radius: 50px !important; /* Daha modern oval buton */
  padding: 1rem 2.5rem !important;
  box-shadow: 0 4px 15px rgba(200, 168, 85, 0.3) !important;
}

/* Stats mobilde de güzel dursun */
@media (max-width: 992px) {
  .stats__container {
    flex-direction: column !important;
    text-align: center !important;
    padding: 3rem 2rem !important;
  }
}


/* =============================================
   ORİJİNAL KOYU TEMA - GERİ DÖNÜŞ
   ============================================= */

/* Tüm bölümleri tekrar o derin lacivert/siyah zemine çekiyoruz */
.fleet, .services, .stats, .contact, .footer, body {
  background-color: #0E1A23 !important; /* Orijinal koyu renk */
  background-image: none !important;
  color: #ffffff !important;
}

/* Başlıkları tekrar beyaza çekiyoruz */
.section__title {
  color: #ffffff !important;
}

/* Üst başlıklar (Fleet Types, What We Do) o sevdiğin kalın altın kalsın */
.section__eyebrow {
  color: #c8a855 !important;
  font-family: 'Georgia', serif !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

/* Kutular karanlık zemin üzerinde "Cam" gibi parlamaya devam etsin */
.fleet .fleet__card, 
.services .service__item, 
.contact__form,
.stats__container {
  background: rgba(255, 255, 255, 0.03) !important; /* Çok hafif şeffaf beyaz */
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}
/* =============================================
   FOOTER YAZILARINI BEYAZLATMA (GECE MODU)
   ============================================= */

/* 1. Footer ana zemin ve metin rengi */
.footer {
  background-color: #0E1A23 !important; /* Orijinal koyu zemini garantileyelim */
  color: #ffffff !important;
}

/* 2. Logo ve Marka İsmi */
.footer .nav__logo-text, 
.footer .nav__logo-text span {
  color: #ffffff !important;
}

/* 3. Slogan ve Küçük Yazılar */
.footer .footer__tagline, 
.footer__bottom p, 
.footer__iacs {
  color: rgba(255, 255, 255, 0.6) !important; /* Bir tık daha soft beyaz (göz yormaz) */
}

/* 4. Başlıklar (SERVICES, FLEET, COMPANY) */
.footer h4 {
  color: #c8a855 !important; /* Bunları senin o sevdiğin altına çekelim, çok şık durur */
  font-weight: bold !important;
}

/* 5. Linkler (Hizmetler, Gemi Tipleri vb.) */
.footer ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease !important;
}

.footer ul li a:hover {
  color: #ffffff !important; /* Üstüne gelince parlasın */
  text-decoration: none !important;
}

/* 6. En alttaki ince çizgi */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* =============================================
   LOGO KONTROL PANELİ (MANUEL AYAR)
   ============================================= */

/* 1. LOGOYU SOLA, MENÜYÜ SAĞA İTMEK İÇİN */
.nav__logo {
  display: flex !important;
  align-items: center !important;
  margin-right: auto !important; /* Bu kod logoyu en sola kilitler, yazıları sağa iter */
}

/* 2. LOGONUN BOYUTU VE KONUMU */
.nav__logo img {
  /* BÜYÜKLÜK (Sadece height değerini değiştir, genişlik otomatik ayarlanır) */
  height: 500px !important; /* Logoyu büyütmek için bu rakamı artır (örn: 100px, 120px) */
  width: auto !important;
  
  /* KONUM / BOŞLUKLAR (Yerini tam hizalamak için) */
  margin-top: 50px !important;  /* Logoyu biraz aşağı indirmek istersen bu rakamı artır */
  margin-left: -200px !important; /* Logoyu sağa doğru itmek istersen bu rakamı artır (örn: 20px) */
  
  /* Logoyu yazıların yanından uzaklaştırmak istersen */
  padding-right: 30px !important; 
}