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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #12304b;
  background-color: #f5f7fb;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e6f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.logo-tagline {
  font-size: 0.72rem;
  color: #6b7a90;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #425674;
}

.main-nav a:hover {
  color: #1871c9;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.header-cta .btn-outline {
  border: 1px solid #1871c9;
  color: #1871c9;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.header-cta .btn-outline:hover {
  background-color: #1871c9;
  color: #fff;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  min-height: clamp(420px, 80vh, 540px);
  background: linear-gradient(120deg, #0c3c68 0%, #1e7dd6 40%, #48c08b 100%);
  color: #fff;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-content {
  padding-block: 3.5rem;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  backdrop-filter: blur(2px);
}

.hero h1 {
  font-size: clamp(1.8rem, 2.6vw + 1.4rem, 2.6rem);
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #ffb432;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: #1c2833;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: #17446e;
  box-shadow: none;
}

.btn-secondary:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-badges span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(12, 60, 104, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-address {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Sections */

.section {
  padding-block: 3rem;
}

.section-light {
  background-color: #ffffff;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 40rem;
  color: #5a6a82;
}

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Cards */

.cards-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 40, 80, 0.06);
  border: 1px solid #e1e6f0;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6a82;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.02rem;
  font-size: 0.8rem;
  color: #1fa57a;
}

/* Highlight section */

.section-highlight {
  background: linear-gradient(110deg, #0f4370 0%, #1b7ad1 40%, #48c08b 100%);
  color: #ffffff;
}

.section-highlight h2,
.section-highlight p,
.section-highlight li {
  color: #ffffff;
}

.section-highlight .plan-box {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.section-highlight .plan-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.section-highlight .plan-box ul {
  margin: 0 0 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.section-highlight .plan-box .small {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block: 0.8rem 1.1rem;
}

.tags span {
  font-size: 0.78rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

/* Promo stack */

.promo-stack {
  display: grid;
  gap: 0.8rem;
}

.promo-stack img {
  border-radius: 1.1rem;
  box-shadow: 0 14px 30px rgba(12, 44, 85, 0.18);
}

/* Gallery */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 18px rgba(15, 40, 80, 0.08);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 40, 80, 0.18);
}

/* Video & social */

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 40, 80, 0.22);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-cards {
  display: grid;
  gap: 1rem;
}

.social-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 40, 80, 0.08);
  border: 1px solid #e1e6f0;
}

.social-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.fb-embed iframe {
  width: 100%;
  border-radius: 0.7rem;
}

.social-link {
  display: inline-flex;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #1871c9;
  color: #1871c9;
}

.social-link:hover {
  background-color: #1871c9;
  color: #ffffff;
}

/* Contact & map */

.map-wrapper {
  margin-top: 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 40, 80, 0.16);
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 250px;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

.contact-list a {
  color: #1871c9;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 14px 32px rgba(15, 40, 80, 0.1);
  border: 1px solid #dde4f0;
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #cfd8ea;
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1871c9;
  border-color: #1871c9;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  z-index: 60;
  font-size: 1.4rem;
}

.whatsapp-float span {
  transform: translateY(1px);
}

/* Footer */

.site-footer {
  background-color: #0c2640;
  color: #e0e8f5;
  padding-block: 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.site-footer a {
  color: #ffdd7a;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 32, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-media {
    max-height: 260px;
  }

  .hero-content {
    padding-block: 2.1rem 2.6rem;
  }

  .layout-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-block: 2.3rem;
  }
}

@media (max-width: 720px) {
  .main-nav ul {
    position: absolute;
    inset-inline: 0;
    top: 58px;
    background: #ffffff;
    flex-direction: column;
    padding: 0.7rem 1rem 0.9rem;
    gap: 0.7rem;
    border-bottom: 1px solid #e0e6f0;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .main-nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
