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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #123048;
  background-color: #f5fafc;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}

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

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #00bcd4;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 86, 125, 0.9), rgba(0, 188, 212, 0.75));
}

.hero-content {
  position: relative;
  padding: 5rem 1.5rem 4rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 28rem;
  margin: 0 0 1rem;
}

.hero-text {
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: #ff7043;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn.full {
  width: 100%;
}

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

/* Sections */

.section {
  padding: 4rem 0;
  background: #f5fafc;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.section-intro {
  max-width: 32rem;
  margin-bottom: 2rem;
}

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

.three-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 1.6rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

/* Lists & text */

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

.features-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00bcd4;
}

.highlight {
  background: #e0f7fa;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.inline-cta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
}

.link-cta {
  font-weight: 600;
  text-decoration: underline;
}

/* Photo stack */

.photo-stack {
  position: relative;
}

.photo-stack .photo {
  border-radius: 1.2rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.photo-stack .photo.main {
  transform: translateY(0);
}

.photo-stack .photo.secondary {
  position: absolute;
  width: 65%;
  right: -6%;
  bottom: -10%;
  border: 4px solid #ffffff;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 0.9rem;
  cursor: pointer;
  object-fit: cover;
  height: 180px;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.gallery-note {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  opacity: 0.8;
}

/* Social */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-card .social-title {
  font-weight: 600;
}

.social-card .social-handle {
  opacity: 0.85;
}

.social-card .social-cta {
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.social-card.fb {
  background: #e3f2fd;
}

.social-card.ig {
  background: #fce4ec;
}

.embed-wrapper {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.video-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  margin-top: 0.6rem;
}

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

.embed-note {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  opacity: 0.8;
}

/* Contact */

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

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

.contact-form {
  background: #ffffff;
  padding: 1.4rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input,
textarea {
  border-radius: 0.6rem;
  border: 1px solid #cfd8dc;
  padding: 0.55rem 0.7rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00bcd4;
  box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.15);
}

/* Map */

.section-map {
  padding-top: 0;
}

.map-container {
  margin-top: 1.3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

/* Footer */

.site-footer {
  background: #002737;
  color: #cfd8dc;
  padding: 1.6rem 0 1.8rem;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.footer-made-by a {
  color: #80deea;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 0.8rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 900px) {
  .two-columns,
  .contact-container,
  .three-cards {
    grid-template-columns: 1fr;
  }

  .photo-stack .photo.secondary {
    position: relative;
    width: 80%;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding-top: 4rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding-inline: 1rem;
  }

  .main-nav {
    gap: 0.8rem;
    font-size: 0.8rem;
  }

  .gallery-item {
    height: 150px;
  }
}
