/* ═══════════════════════════════════════════════════════════════
   CROMAN GROUP — Design System & Shared Styles
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold: #C9A96E;
  --gold-light: #D4BA8A;
  --gold-dark: #A8863E;
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --white: #F5F0EB;
  --white-dim: #B8B0A6;
  --grey: #2A2A2A;
  --green-wa: #25D366;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --container: 1280px;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

::selection { background: rgba(201,169,110,0.3); color: var(--white); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.4s;
}

.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex; gap: 32px; align-items: center;
}

.nav-links a {
  color: var(--white-dim);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  font-weight: 300;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

/* ── Language Switcher ───────────────────────────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  margin-left: 12px;
  padding-left: 20px;
  border-left: 1px solid var(--grey);
}

.lang-switch a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  padding: 2px 0;
}

.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active-lang { color: var(--gold); font-weight: 500; }

.lang-switch span { color: var(--grey); font-size: 11px; }

.mobile-lang-switch {
  display: flex; gap: 16px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--grey);
}

.mobile-lang-switch a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.mobile-lang-switch a:hover { color: var(--gold); }
.mobile-lang-switch a.active-lang { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 16px 20px; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.2);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--grey);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 12px;
}

/* ── Section Utilities ──────────────────────────────────────── */
.section { padding: 140px 0; }
.section--alt {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,169,110,0.03) 0%, transparent 50%),
    var(--black-light);
}

.section-header { text-align: center; margin-bottom: 80px; }

.section-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ── Page Header (inner pages) ──────────────────────────────── */
.page-header {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.06) 0%, transparent 60%),
    var(--black);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
  opacity: 0.1;
}

.page-header .section-tag { margin-bottom: 24px; }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-header h1 em { font-style: italic; color: var(--gold); }

.page-header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Hero (Landing) ─────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.3) 40%,
      rgba(10,10,10,0.6) 70%,
      rgba(10,10,10,1) 100%
    ),
    linear-gradient(to right,
      rgba(10,10,10,0.7) 0%,
      transparent 50%
    );
  z-index: 1;
}

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

.hero-tag {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-buttons {
  display: flex; gap: 20px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── Service Cards ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--black-card);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: default;
}

.service-card--link { cursor: pointer; text-decoration: none; display: block; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #1E1E1E; }

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  font-size: 20px;
  color: var(--gold);
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-dim);
}

/* ── Service Detail Sections ────────────────────────────────── */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--grey);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-detail-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}

.service-detail h2 em { font-style: italic; color: var(--gold); }

.service-detail-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.service-features {
  margin: 32px 0;
  display: flex; flex-direction: column; gap: 16px;
}

.service-feature {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

.service-feature-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-visual {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--grey) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.service-detail-visual::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,169,110,0.12);
}

.service-detail-visual .icon-large {
  font-size: 80px;
  color: rgba(201,169,110,0.08);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-detail:hover .service-detail-visual img {
  transform: scale(1.04);
}

.service-detail-visual .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── About Section ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--grey) 100%);
  position: relative;
  overflow: hidden;
}

.about-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,169,110,0.15);
}

.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border: 1px solid var(--gold-dark);
  opacity: 0.3;
}

.about-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 32px;
}

.about-content h2 em { font-style: italic; color: var(--gold); }

.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.about-stats {
  display: flex; gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--grey);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}

/* ── Fleet ──────────────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fleet-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black-card) 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.6s;
}

.fleet-card:hover .fleet-img { transform: scale(1.03); }

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.fleet-card:hover .fleet-img img { transform: scale(1.05); }

.fleet-img svg { width: 80px; height: auto; }

.fleet-info { padding: 28px 0 0; }

.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.fleet-info p {
  font-size: 13px;
  color: var(--white-dim);
  letter-spacing: 1px;
}

.fleet-price {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gold);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { text-align: center; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: -20px;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.testimonial-role {
  font-size: 13px;
  color: var(--white-dim);
  margin-top: 6px;
}

/* ── Contact & Forms ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-info h2 em { font-style: italic; color: var(--gold); }

.contact-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--white-dim);
}

.contact-info-value a {
  color: var(--white-dim);
  transition: color 0.3s;
}
.contact-info-value a:hover { color: var(--gold); }

/* ── Form Elements ──────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; gap: 20px; }

.form-group {
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black);
  border: 1px solid var(--grey);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184,176,166,0.4);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
}

.form-error {
  font-size: 11px;
  color: #e74c3c;
  letter-spacing: 1px;
  display: none;
}

.form-error.visible { display: block; }

.btn-submit {
  align-self: flex-start;
  background: var(--gold);
  color: var(--black);
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.2);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.visible { display: block; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 16px;
}

.form-success p {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ── Contact Tabs ───────────────────────────────────────────── */
.contact-tabs {
  display: flex; gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--grey);
}

.contact-tab {
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white-dim);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.contact-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.contact-tab.active { color: var(--gold); }
.contact-tab.active::after { transform: scaleX(1); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 60%),
    var(--black);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 16px;
}

.newsletter h2 em { font-style: italic; color: var(--gold); }

.newsletter p {
  font-size: 15px;
  color: var(--white-dim);
  margin-bottom: 40px;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-right: none;
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form input::placeholder { color: rgba(184,176,166,0.4); }

.newsletter-form button {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter-form input { border-right: 1px solid var(--grey); }
}

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--black-card);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--grey) 0%, var(--black-card) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.blog-card-img .placeholder-icon {
  font-size: 48px;
  color: rgba(201,169,110,0.1);
}

.blog-card-body { padding: 32px; }

.blog-card-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 1px;
}

.blog-card-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  padding: 4px 10px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--white);
  transition: color 0.3s;
}

.blog-card h3 a:hover { color: var(--gold); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
}

.blog-card-link:hover { opacity: 0.7; }

/* ── Blog Post (Article) ────────────────────────────────────── */
.article-header {
  padding: 180px 0 60px;
  text-align: center;
}

.article-header .blog-card-category {
  display: inline-block;
  margin-bottom: 24px;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
}

.article-meta {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-size: 13px;
  color: var(--white-dim);
}

.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.article-body p {
  font-size: 16px;
  line-height: 2;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin: 48px 0 24px;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin: 36px 0 16px;
}

.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 0 20px 32px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
}

.article-body ul, .article-body ol {
  margin: 20px 0 28px 24px;
}

.article-body li {
  font-size: 16px;
  line-height: 2;
  color: var(--white-dim);
  list-style: disc;
  margin-bottom: 8px;
}

.article-body ol li { list-style: decimal; }

.author-box {
  display: flex; align-items: center; gap: 24px;
  padding: 40px;
  background: var(--black-card);
  border: 1px solid var(--grey);
  margin-top: 60px;
}

.author-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--black);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.author-role {
  font-size: 13px;
  color: var(--white-dim);
}

.related-posts { padding: 100px 0; }

.related-posts h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-section { margin-bottom: 60px; }

.faq-category {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey);
}

.faq-item {
  border-bottom: 1px solid var(--grey);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  padding-right: 24px;
  transition: color 0.3s;
}

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

.faq-toggle {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s;
}

.faq-toggle::before {
  width: 14px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--grey);
}

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

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: var(--white-dim);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

.footer-newsletter {
  margin-top: 24px;
}

.footer-newsletter-form {
  display: flex; gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-right: none;
  color: var(--white);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
}

.footer-newsletter-form input:focus { border-color: var(--gold); }
.footer-newsletter-form input::placeholder { color: rgba(184,176,166,0.3); }

.footer-newsletter-form button {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.footer-newsletter-form button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--grey);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 1px;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 12px;
  color: var(--white-dim);
  transition: color 0.3s;
}

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

/* ── WhatsApp Floating Button ───────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  animation: waEnter 0.5s 2s forwards;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(201,169,110,0.5);
}

.whatsapp-btn svg {
  width: 28px; height: 28px;
  fill: var(--black);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.4);
  animation: waPulse 2s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--black-card);
  color: var(--white);
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--grey);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--black-card);
  border-right: 1px solid var(--grey);
  border-top: 1px solid var(--grey);
}

.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ── Legal Pages ────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 120px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 48px 0 20px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin: 32px 0 16px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 24px 20px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  list-style: disc;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.legal-content a:hover { opacity: 0.7; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes waEnter {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 100px 0; }
  .page-header { padding: 140px 0 80px; }
  .about-visual { height: 360px; }
  .about-stats { gap: 32px; }
}

@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .about-stats { flex-wrap: wrap; }
  .contact-tabs { flex-direction: column; }
  .contact-tab { text-align: left; }
  .author-box { flex-direction: column; text-align: center; }
  .article-meta { flex-direction: column; gap: 8px; }
  .fleet-grid { grid-template-columns: 1fr; }
}

@media print {
  body::before { display: none; }
  .navbar, .whatsapp-btn, .mobile-menu { display: none; }
  .hero { height: auto; min-height: auto; padding: 40px 0; }
  .hero-video, .hero-overlay { display: none; }
  .section { padding: 40px 0; }
  body { background: #fff; color: #000; }
  .footer { page-break-before: always; }
}
