/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f5f2;
  color: #1b2d4f;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* =========================
   GLOBAL
========================= */

.container {
  width: 92%;
  max-width: 1380px;
  margin: auto;
}

.small-container {
  max-width: 950px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #8f8f8f;
  margin-bottom: 18px;
}

.section-tag.dark {
  color: rgba(255, 255, 255, .5);
}

h1,
h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -2px;
}

.btn-dark {
  background: #1b2d4f;
  color: white;
  padding: 17px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dark:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.btn-light {
  border: 1px solid #d9d9d9;
  padding: 17px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-light:hover {
  background: white;
}

/* =========================
   NAVBAR
========================= */

nav {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(247, 245, 242, .85);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1b2d4f;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  color: #666;
  font-size: 15px;
  transition: .3s;
}

.nav-links a:hover {
  color: #1b2d4f;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  transition: .3s;
  flex-shrink: 0;
}

.lang-btn:hover {
  background: white;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 40px 0 60px;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .95;
  font-weight: 600;
  color: #1b2d4f;
}

.hero-content p {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  background: #efebe6;
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(380px, 55vh, 580px);
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 0;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 185px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
}

.floating-card small {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .12em;
  color: #888;
}

.floating-card h3 {
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.1;
  color: #1b2d4f;
}

.floating-card p {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   EQUIPMENT
========================= */

.equipment {
  padding: 120px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 72px;
  color: #1b2d4f;
}

.section-header p {
  max-width: 520px;
  color: #666;
  line-height: 1.8;
}

.section-header a {
  display: inline-block;
  margin-top: 12px;
  color: #1b2d4f;
  font-weight: 600;
  border-bottom: 1px solid #1b2d4f;
  padding-bottom: 2px;
  transition: .3s;
}

.section-header a:hover {
  opacity: .6;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.equipment-card {
  background: #efebe6;
  border-radius: 34px;
  overflow: hidden;
  transition: .35s ease;
}

.equipment-card:hover {
  transform: translateY(-6px);
}

.equipment-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.equipment-content {
  padding: 28px;
}

.equipment-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1b2d4f;
}

.equipment-content span {
  color: #666;
  font-size: 15px;
}

/* =========================
   STEPS
========================= */

.steps {
  padding: 120px 0;
  background: #1b2d4f;
  color: white;
}

.steps-header {
  margin-bottom: 70px;
}

.steps-header h2 {
  font-size: 72px;
  max-width: 720px;
  line-height: 1;
  color: white;
}

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

.step-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 40px;
  border-radius: 34px;
}

.step-number {
  font-size: 54px;
  color: rgba(255, 255, 255, .3);
  font-family: 'Cormorant Garamond', serif;
}

.step-card h3 {
  margin-top: 20px;
  font-size: 30px;
}

.step-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
}

.step-link {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #1b2d4f;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.step-link:hover {
  opacity: .85;
  transform: translateY(-1px);
}

/* =========================
   CTA
========================= */

.cta {
  padding-top: 80px;
  padding-bottom: 120px;
}

.cta-box {
  background: #1b2d4f;
  color: white;
  border-radius: 42px;
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-box h2 {
  font-size: 72px;
  line-height: .95;
  max-width: 700px;
  color: white;
}

.cta-box p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 560px;
}

.cta-btn {
  background: white;
  color: #1b2d4f;
  padding: 22px 36px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: .3s;
}

.cta-btn:hover {
  opacity: .85;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 100px 0;
  background: #f7f7f5;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: white;
  border-radius: 32px;
  padding: 60px;
  align-items: center;
}

.contact-left h2 {
  font-size: 48px;
  margin: 20px 0;
  color: #071d49;
}

.contact-left p {
  color: #5f6675;
  line-height: 1.7;
  max-width: 500px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #071d49;
}

.contact-item a {
  color: #6f9b67;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  opacity: 0.8;
}

/* =========================
   FOOTER
========================= */

footer {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 40px 0;
  position: relative;
}

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1b2d4f;
}

.logo img {
  height: 60px;
  width: auto;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #666;
  transition: .3s;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #1b2d4f;
}

.footer-legal a {
  color: #999;
  font-size: 13px;
  transition: .3s;
}

.footer-legal a:hover {
  color: #1b2d4f;
}

/* =========================
   RESPONSIVE — 1200px
========================= */

@media (max-width: 1200px) {

  .hero-grid,
  .section-header,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 68px;
  }

  .section-header h2,
  .steps-header h2,
  .cta-box h2 {
    font-size: 58px;
  }
}

/* =========================
   RESPONSIVE — 768px
========================= */

@media (max-width: 768px) {

  /* NAVBAR */

  .nav-links {
    display: none;
  }

  /* On mobile show only lang buttons + one CTA (WhatsApp dark button) */
  .nav-actions {
    gap: 8px;
  }

  /* Hide WhatsApp btn-dark in navbar on mobile to save space */
  .nav-actions .btn-dark {
    display: none;
  }

  /* Keep Book now btn-light visible but smaller */
  .nav-actions .btn-light {
    padding: 12px 18px;
    font-size: 13px;
  }

  .lang-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  /* HERO */

  .hero {
    padding: 24px 0 48px;
    min-height: unset;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
    margin-top: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-image {
    height: clamp(260px, 50vw, 380px);
  }

  .hero-image img {
    height: 100%;
  }

  .floating-card {
    bottom: 12px;
    right: 12px;
    width: 150px;
    padding: 10px 12px;
  }

  .floating-card h3 {
    font-size: 14px;
  }

  .floating-card p {
    font-size: 11px;
  }

  /* EQUIPMENT */

  .equipment {
    padding: 60px 0;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .equipment-content {
    padding: 18px;
  }

  .equipment-content h3 {
    font-size: 20px;
  }

  /* STEPS */

  .steps {
    padding: 60px 0;
  }

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

  .step-card {
    padding: 28px 24px;
  }

  /* SECTION HEADERS */

  .section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .section-header h2,
  .steps-header h2,
  .cta-box h2 {
    font-size: 38px;
  }

  .steps-header {
    margin-bottom: 36px;
  }

  /* CTA */

  .cta {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .cta-box {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    gap: 28px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 18px 24px;
    white-space: normal;
  }

  /* CONTACT */

  .contact {
    padding: 60px 0;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 32px;
    border-radius: 24px;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  /* FOOTER */

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 10px;
  }

  footer {
    padding: 32px 0;
  }
}

/* =========================
   RESPONSIVE — 480px
   (extra safety for ~360px devices like Samsung A26)
========================= */

@media (max-width: 480px) {

  .container {
    width: 94%;
  }

  /* Prevent any element from escaping viewport */
  .hero-content h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .section-header h2,
  .steps-header h2,
  .cta-box h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .btn-dark,
  .btn-light {
    padding: 14px 22px;
    font-size: 14px;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .equipment-content {
    padding: 14px;
  }

  .equipment-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .equipment-content span {
    font-size: 13px;
  }

  .cta-box {
    padding: 28px 18px;
  }

  .contact-box {
    padding: 24px 16px;
  }

  .step-card {
    padding: 24px 18px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .step-number {
    font-size: 42px;
  }
}