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

body {
  background: #f4f6f9;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

header {
  background: #021226;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d6b46a;
}

/* HERO */

.contact-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(2, 18, 38, 0.97) 0%,
    rgba(5, 24, 48, 0.86) 48%,
    rgba(9, 32, 61, 0.62) 100%
  );
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("fuji5.JPG");
  background-size: cover;
  background-position: center 35%;
  transform: scaleX(-1);
  z-index: 0;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 18, 38, 0.97) 0%,
    rgba(5, 24, 48, 0.86) 48%,
    rgba(9, 32, 61, 0.62) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}


.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 70px 0;
}

.kicker,
.eyebrow {
  color: #d6b46a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 720px;
  color: #e5e7eb;
  font-size: 20px;
  margin-bottom: 26px;
}

/* BUTTONS */

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-glass,
.btn-glass-dark,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary,
.btn-submit {
  background: #d6b46a;
  color: #07111f;
  border: 1px solid #d6b46a;
}

.btn-primary:hover,
.btn-submit:hover {
  background: #e3c57f;
  border-color: #e3c57f;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-glass-dark {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.btn-glass-dark:hover {
  background: #ffffff;
  color: #07111f;
  transform: translateY(-2px);
}

/* SECTION HEADING */

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: 38px;
  color: #07111f;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.15;
}

/* CONTACT */

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 15px 45px rgba(7, 17, 31, 0.1);
  border-top: 5px solid #d6b46a;
}

.info-card {
  background: linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
}

.card-label {
  display: inline-block;
  background: rgba(214, 180, 106, 0.16);
  color: #8a681f;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.info-card .card-label {
  color: #d6b46a;
  background: rgba(214, 180, 106, 0.12);
  border: 1px solid rgba(214, 180, 106, 0.22);
}

.contact-card h3 {
  color: #07111f;
  font-size: 30px;
  margin-bottom: 12px;
}

.info-card h3 {
  color: #ffffff;
}

.card-text {
  color: #4b5563;
  font-size: 17px;
  margin-bottom: 26px;
}

.info-card .card-text {
  color: #d1d5db;
}

/* FORM */

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  color: #07111f;
  font-weight: 800;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #d6b46a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(214, 180, 106, 0.14);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 5px;
}

.form-note {
  margin-top: 18px;
  color: #6b7280;
  font-size: 14px;
}

/* SOCIAL */

.social-links {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  transition: 0.3s ease;
}

.social-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.social-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon img {
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

.social-item strong {
  display: block;
  font-size: 17px;
}

.social-item span {
  color: #d1d5db;
  font-size: 14px;
}

.contact-purpose {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
}

.contact-purpose h4 {
  color: #d6b46a;
  font-size: 19px;
  margin-bottom: 14px;
}

.contact-purpose ul {
  list-style: none;
}

.contact-purpose li {
  color: #e5e7eb;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-purpose li:last-child {
  border-bottom: none;
}

/* CONTACT OPTIONS */

.contact-options {
  padding: 20px 0 85px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.option-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(7, 17, 31, 0.1);
  border-top: 5px solid #d6b46a;
  transition: 0.3s ease;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.16);
}

.option-card span {
  display: block;
  font-size: 34px;
  margin-bottom: 14px;
}

.option-card h3 {
  color: #07111f;
  font-size: 24px;
  margin-bottom: 10px;
}

.option-card p {
  color: #4b5563;
}

/* FINAL CTA */

.final-cta {
  padding: 85px 0;
  background: linear-gradient(135deg, #07111f, #10243d);
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #e5e7eb;
  font-size: 18px;
}

.final-cta .cta-actions {
  justify-content: center;
}

/* FOOTER */

footer {
  background: #050b13;
  color: #cbd5e1;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  nav ul {
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .contact-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(2, 18, 38, 0.97) 0%, rgba(5, 24, 48, 0.9) 55%, rgba(9, 32, 61, 0.84) 100%),
      url("mariposa.png");
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    text-align: center;
    padding: 60px 0;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -1px;
  }

  .contact-hero p {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .btn-primary,
  .btn-glass,
  .btn-glass-dark {
    width: 100%;
  }

  .contact-section,
  .contact-options,
  .final-cta {
    padding: 65px 0;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-card h3,
  .section-heading h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .social-item {
    align-items: flex-start;
  }
}