:root {
  --bg: #07121c;
  --surface: #0d1f32;
  --surface-strong: #122a41;
  --text: #f3f7fb;
  --muted: #99a7b8;
  --accent: #2bb7f4;
  --accent-soft: rgba(43, 183, 244, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-image: url('images/background.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 18, 28, 0.9);
  backdrop-filter: blur(14px);
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-copy {
  text-align: center;
}

.brand-copy h1,
.brand-copy p {
  margin: 0;
}

.brand-copy h1 {
  font-size: 2,5rem;
}

.brand-copy p {
  color: var(--muted);
  font-size: 1,5rem;
}

.logo {
  width: 150px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--surface);
}

.brand h1 {
  margin: 0;
  font-size: 5rem;
}

.brand p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 3rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.5rem 1rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--surface);
  transition: transform 0.3s ease;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo:hover img {
  transform: scale(1.1);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 3rem 1.25rem;
}

.hero-copy {
  max-width: 680px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.hero h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.hero p {
  margin: 0 0 1.75rem;
  max-width: 600px;
  color: var(--muted);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #07121c;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.hero-image {
  display: none;
}

.hero-box {
  display: none;
}

.carousel {
  display: none;
}

.carousel-inner {
  display: none;
}

.slide {
  display: none;
}

.slide img {
  display: none;
}

.prev, .next {
  display: none;
}

.image-section {
  text-align: center;
  padding: 2rem 1.25rem;
}

.image-section img {
  display: block;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section {
  scroll-margin-top: 120px;
}

.section-header h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}

.section-header h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
}

.section-header ul,
.section-header ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.section-header li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.cards-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.cards-grid {
  grid-template-columns: 1fr;
}

.card {
  padding: 1.6rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h4 {
  margin: 0 0 0.9rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  justify-items: center;
  padding: 0 1rem;
}

.contact-details {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.contact-grid p {
  margin: 0.7rem 0;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #25D366;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.contact-note {
  margin-top: 1.5rem;
  line-height: 1.7;
}

.site-footer {
  padding: 1.4rem 1.25rem 2rem;
  text-align: center;
  color: var(--muted);
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .top-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
  }

  .logo {
    width: 140px;
    height: auto;
    max-height: 140px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 3rem 2rem;
  }
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
