/* ================================================
   G.S.E. TRANSFER SICILY — style.css
   Design: Luxury Dark / Gold — Mobile First
   ================================================ */

/* ===== VARIABLES ===== */
:root {
  --blue-darkest: #02080e;
  --blue-dark: #071524;
  --blue-main: #0e2a47;
  --blue-mid: #163859;
  --gold: #d4a33b;
  --gold-light: #e8c06a;
  --gold-dark: #a87e2a;
  --white: #f8fafc;
  --text-muted: #94a3b8;
  --text-soft: #cbd5e1;
  --card-bg: rgba(14, 42, 71, 0.5);
  --border-gold: rgba(212, 163, 59, 0.15);
  --border-gold-hover: rgba(212, 163, 59, 0.6);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}
body {
  background: var(--blue-darkest);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  background: rgba(14, 42, 71, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 163, 59, 0.15);
}
select option {
  background: var(--blue-main);
  color: var(--white);
}
textarea {
  resize: vertical;
}
::placeholder {
  color: var(--text-muted);
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 21, 36, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1000;
  transition: var(--transition);
}
#main-header.scrolled {
  padding: 10px 5%;
  background: rgba(2, 8, 14, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a:not(.btn-primary) {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-soft);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:not(.btn-primary):hover {
  color: var(--white);
}
.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  background: rgba(14, 42, 71, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 6px;
}
.lang-toggle:hover {
  border-color: var(--gold);
}
.lang-toggle .lang-it,
.lang-toggle .lang-en {
  display: none;
}
.lang-toggle .lang-it.active,
.lang-toggle .lang-en.active {
  display: block;
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-darkest);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 59, 0.35);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 21, 36, 0.3);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-darkest);
  transform: translateY(-2px);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.center {
  text-align: center;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title.center {
  text-align: center;
}
.section-title span {
  color: var(--gold);
}

section {
  padding: 100px 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

/* Real van image as background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("van.jpg") center bottom / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg {
  transform: scale(1);
}
/* Subtle vignette on the van bg */
.hero-van-scene {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 8, 14, 1) 0%,
    rgba(2, 8, 14, 0.55) 35%,
    rgba(7, 21, 36, 0.25) 65%,
    rgba(7, 21, 36, 0.5) 100%
  );
}

/* Atmospheric glow */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 30%,
      rgba(14, 42, 71, 0.7) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(212, 163, 59, 0.05) 0%,
      transparent 60%
    );
  z-index: 1;
}
/* Stars */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 20% 15%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 70% 10%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 45% 25%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 85% 20%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 10% 40%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 60% 5%,
      rgba(212, 163, 59, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 90% 35%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 35% 8%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    );
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 8, 14, 0.3) 0%,
    rgba(7, 21, 36, 0.1) 40%,
    rgba(2, 8, 14, 0.7) 85%,
    rgba(2, 8, 14, 1) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 59, 0.12);
  border: 1px solid rgba(212, 163, 59, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-content h1 .line1,
.hero-content h1 .line3 {
  display: block;
}
.hero-content h1 .line2 {
  display: block;
}
.hero-content h1 .gold {
  color: var(--gold);
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-gold);
  padding-top: 30px;
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
.stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212, 163, 59, 0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ===== ABOUT ===== */
.about {
  background: #040d17;
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trinacria-bg {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 42, 71, 0.8) 0%,
    rgba(7, 21, 36, 0.4) 100%
  );
  border: 1px solid var(--border-gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trinacria-bg::before {
  content: "🚗";
  font-size: 5rem;
  filter: grayscale(0.3);
}
.trinacria-bg::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 163, 59, 0.2);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

.about-card-float {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--blue-main);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-icon {
  font-size: 1.8rem;
}
.about-card-float strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
.about-card-float span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text-block p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.feat span:first-child {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--blue-darkest);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212, 163, 59, 0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
  display: inline-block;
}
.service-cta:hover {
  color: var(--gold-light);
}

/* ===== FLEET ===== */
.fleet {
  background: #040d17;
}
.fleet-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 0.95rem;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.fleet-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
/* Featured card (single vehicle) — wider on large screens */
.fleet-card--featured {
  max-width: 680px;
  margin: 0 auto;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.fleet-photo {
  overflow: hidden;
  background: var(--blue-main);
}
.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.fleet-card:hover .fleet-photo img {
  transform: scale(1.04);
}
.fleet-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fleet-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fleet-info p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.fleet-specs span {
  background: rgba(212, 163, 59, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-soft);
}
.fleet-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .fleet-card--featured {
    grid-template-columns: 1fr;
  }
  .fleet-photo {
    height: 220px;
  }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  background: var(--blue-darkest);
}
.form-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 40px;
  font-size: 0.9rem;
}
.form-container {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(14, 42, 71, 0.35);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
}
.tab-btn {
  flex: 1;
  padding: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.tab-btn.active {
  color: var(--gold);
  background: rgba(14, 42, 71, 0.5);
}
.tab-btn.active::after {
  transform: scaleX(1);
}
.tab-btn:hover {
  color: var(--text-soft);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.form-actions {
  margin-top: 28px;
  text-align: center;
}
.btn-submit {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact {
  background: #040d17;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
a.contact-card:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-4px);
  background: var(--blue-main);
  box-shadow: var(--shadow);
}
.contact-icon-wrap {
  font-size: 2.4rem;
}
.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.contact-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SOCIAL ===== */
.social-section {
  text-align: center;
  border-top: 1px solid var(--border-gold);
  padding-top: 50px;
}
.social-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid;
  transition: var(--transition);
}
.social-btn:hover {
  transform: translateY(-3px);
}
.social-btn.facebook {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.06);
}
.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: #1877f2;
}
.social-btn.instagram {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
  background: rgba(225, 48, 108, 0.06);
}
.social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: #e1306c;
}
.social-btn.telegram {
  color: #0088cc;
  border-color: rgba(0, 136, 204, 0.3);
  background: rgba(0, 136, 204, 0.06);
}
.social-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.15);
  border-color: #0088cc;
}

/* ===== FOOTER ===== */
footer {
  background: #010509;
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  height: 64px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.fsocial {
  width: 36px;
  height: 36px;
  background: rgba(14, 42, 71, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.fsocial:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 163, 59, 0.08);
}

.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-contact-info a {
  color: var(--text-soft);
  transition: color 0.3s;
}
.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-success.show {
  display: block;
}
.form-success h3 {
  color: #25d366;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact-info {
    grid-column: 1 / -1;
  }
  .about-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  #main-header {
    padding: 12px 20px;
  }
  .logo-img {
    height: 42px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(2, 8, 14, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 24px 40px;
    border-bottom: 1px solid var(--border-gold);
    gap: 0;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a:not(.btn-primary) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 163, 59, 0.08);
    font-size: 0.9rem;
  }
  .nav-links a:not(.btn-primary):last-of-type {
    border-bottom: none;
  }
  .nav-links .btn-primary {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 18px;
  }
  .stat-divider {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 200px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: 1;
  }
  .tab-content {
    padding: 24px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .lang-toggle {
    display: none;
  } /* Hidden on very small, shown via mobile nav later */
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(212, 163, 59, 0.25);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--blue-darkest);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 163, 59, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
