:root {
  --lavender: #efe0f9;
  --blue-dark: #15406b;
  --blue-mid: #2060a0;
  --text-main: #1f2933;
  --text-muted: #5f6c80;
  --white: #ffffff;
  --accent: #fbbf24;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --max-width: 1080px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: #f5f5fb;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #ffffff;
}

/* Header / Hero */

.site-header {
  background: var(--lavender);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-soft));
}

.header-text h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
  color: var(--blue-dark);
}

.tagline {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    color 0.1s ease;
}

.btn.primary {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.btn.secondary {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn.secondary:hover {
  background: rgba(32, 96, 160, 0.06);
}

.btn.full-width {
  width: 100%;
}

/* Typography & sections */

h2 {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--blue-dark);
}

.section-intro {
  max-width: 640px;
  margin: 0 0 2rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Grid */

.grid {
  display: grid;
  gap: 1.5rem;
}

.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.three-cols {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.card ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.card li + li {
  margin-top: 0.35rem;
}

/* Service Area */

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.service-area-list li::before {
  content: "•";
  color: var(--blue-mid);
  margin-right: 0.4rem;
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.contact-details p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--blue-mid);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--lavender);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 0.5rem;
  border: 1px solid #cbd2e1;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(32, 96, 160, 0.18);
  background-color: #ffffff;
}

/* Footer */

.site-footer {
  padding: 1.8rem 0 2.2rem;
  background: #0f172a;
  color: rgba(248, 250, 252, 0.95);
  margin-top: 2rem;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.15rem 0;
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.8);
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 2.5rem;
  }
}



.cta-main {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.btn.whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}
