:root {
  --bg: #f0f6ff;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --text: #102a43;
  --muted: #5c718f;
  --primary: #2f5bf2;
  --primary-dark: #1d3ebd;
  --accent: #7d4cf0;
  --shadow: 0 26px 90px rgba(16, 42, 67, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --spacing: 1.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(47, 91, 242, 0.14), transparent 22%),
              radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.09), transparent 21%),
              linear-gradient(180deg, #f9fbff 0%, #eef4ff 55%, #f5f9ff 100%);
  color: var(--text);
  line-height: 1.75;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: #eef4f8;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h3 {
  font-size: clamp(2rem, 2.3vw, 2.8rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto;
}

.section-header::before {
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  margin: 0 auto 1.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 91, 242, 0.95), rgba(124, 58, 237, 0.85));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(63, 131, 248, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.brand h1 {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.brand p {
  color: var(--muted);
  font-size: 1rem;
}

.animated-name {
  display: inline-block;
  animation: pulseGlow 2.7s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translateY(0); color: var(--text); }
  50% { transform: translateY(-4px); color: var(--primary); }
}

.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  margin-right: 0.75rem;
  box-shadow: 0 18px 48px rgba(16, 42, 67, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-img:hover {
  transform: translateY(-2px) scale(1.02);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.32);
}

.whatsapp-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
  }
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(47,91,242,0.18), transparent 22%),
              radial-gradient(circle at bottom right, rgba(124,58,237,0.12), transparent 26%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.eyebrow::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--primary);
}

.hero-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 760px;
  letter-spacing: -0.02em;
}

.hero-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-copy {
  padding: 2rem;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  border: 1px solid rgba(63, 131, 248, 0.12);
  box-shadow: 0 32px 70px rgba(31, 74, 166, 0.09);
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 40px rgba(63, 131, 248, 0.18);
}

.btn-secondary {
  color: var(--primary);
  border: 1px solid rgba(63, 131, 248, 0.18);
  background: white;
  box-shadow: inset 0 0 0 0 rgba(63, 131, 248, 0.16);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(63, 131, 248, 0.08);
  box-shadow: inset 0 0 0 1px rgba(63, 131, 248, 0.24);
  transform: translateY(-2px);
}

.hero-image {
  min-height: 480px;
  max-height: 740px;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(63, 131, 248, 0.16);
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,247,255,0.95));
  box-shadow: 0 42px 100px rgba(28, 64, 130, 0.14);
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  aspect-ratio: 16 / 9;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.36), transparent 30%);
  pointer-events: none;
}

.split-grid,
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.split-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 3.5rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.about-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 91, 242, 0.12);
}

.about-card h4 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.about-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-details div strong {
  display: block;
  margin-bottom: 0.45rem;
}

.services-grid,
.approach-grid,
.testimonial-grid {
  display: grid;
  gap: 2rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.service-card,
.approach-card {
  background: rgba(255,255,255,0.96);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 91, 242, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 92px rgba(20, 58, 128, 0.14);
  border-color: rgba(47, 91, 242, 0.18);
}

.service-card h4,
.approach-card h4 {
  margin-bottom: 1rem;
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-grid blockquote {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248,250,255,0.96), rgba(238,244,255,0.96));
  border-left: 4px solid var(--primary);
  box-shadow: 0 22px 42px rgba(32, 63, 127, 0.08);
}

.testimonial-grid blockquote p {
  margin: 0;
  color: var(--text);
}

.booking-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.booking-card {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 131, 248, 0.14);
}

.booking-card h3,
.booking-card h4 {
  margin-top: 0;
}

.booking-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.booking-steps {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.booking-steps li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.booking-highlight {
  background: linear-gradient(180deg, rgba(247,249,255,0.96), rgba(238,244,255,0.96));
}

.booking-list p {
  margin: 0.75rem 0;
  line-height: 1.75;
}

.testimonial-grid cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.contact-grid {
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-copy {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63, 131, 248, 0.14);
}

.contact-copy h3 {
  font-size: 2rem;
}

.contact-copy p {
  color: var(--muted);
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-info div strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-info div p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  max-width: 700px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
}

.form-status {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-size: 0.95rem;
}

.form-status.visible {
  opacity: 1;
  visibility: visible;
}

.form-status.success {
  background: rgba(79, 200, 144, 0.12);
  color: #2d8659;
  border: 1px solid rgba(79, 200, 144, 0.25);
}

.form-status.error {
  background: rgba(240, 84, 84, 0.12);
  color: #c91414;
  border: 1px solid rgba(240, 84, 84, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 18px;
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(47, 91, 242, 0.4);
  box-shadow: 0 0 0 4px rgba(47, 91, 242, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.form-header {
  display: grid;
  gap: 0.75rem;
}

.form-header h3 {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.form-header p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.contact-embeds-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.embed-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  border: 1px solid rgba(47, 91, 242, 0.1);
}

.embed-card h3 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
}

.embed-card iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  min-height: 200px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* Use focus-visible to show clear focus rings for keyboard users */
:focus-visible {
  box-shadow: 0 0 0 4px rgba(47, 91, 242, 0.14);
  border-color: rgba(47, 91, 242, 0.4);
}

.site-footer {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(16, 42, 67, 0.08);
}

@media (max-width: 1080px) {
  .contact-embeds-grid {
    grid-template-columns: 1fr;
  }
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
}

.footer-copy {
  display: grid;
  gap: 0.5rem;
  align-content: center;
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .approach-grid,
  .testimonial-grid,
  .contact-grid,
  .services-grid,
  .footer-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-copy h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .hero-copy h2 {
    font-size: 2rem;
  }

  .site-nav {
    width: 100%;
    flex-direction: row;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .contact-embeds-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 1.5rem;
    height: auto;
    min-height: 400px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .hero-grid {
    gap: 2rem;
  }

  .split-grid {
    gap: 2rem;
  }
}

