
:root {
  --primary: #0B3C5D;
  --secondary: #2ECC71;
  --bg-light: #F5F5F5;
  --text-dark: #333333;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* HEADER & MENU */

.site-header {
  background: rgba(11, 60, 93, 0.96);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.logo span {
  color: var(--secondary);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: #f3f7fb;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.main-nav a.btn-primary {
  padding: 0.45rem 1.1rem;
}

/* Optional active menu style – add class="active" on current page link */
.main-nav a.active {
  background: #ffffff;
  color: var(--primary);
}

/* Header CTAs */

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-cta a {
  font-size: 0.88rem;
  font-weight: 600;
}

.header-cta .phone-link {
  color: #e3f2fd;
}

.header-cta .whatsapp-link {
  color: #fff;
  background: #25D366;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Mobile nav */

.menu-toggle {
  display: none;
  font-size: 1.65rem;
  cursor: pointer;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 56px 0 0 0;
    background: rgba(2, 9, 19, 0.98);
    display: none;
    padding: 1.25rem 0;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0 1.5rem;
  }

  .main-nav a {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 0.7rem;
  }

  .header-cta {
    display: none;
  }

  .site-header .inner {
    justify-content: space-between;
  }
}

@media (max-width: 500px) {
  .logo a {
    font-size: 1.1rem;
  }
}

/* GENERAL LAYOUT */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn-primary {
  background-color: var(--secondary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #0b3c5d 0, #061f33 45%, #020913 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  margin-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 500;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  text-decoration: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.hero-badge {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

.hero-card {
  background: rgba(255,255,255,0.03);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-card ul {
  list-style: none;
  font-size: 0.9rem;
}

.hero-card li {
  margin-bottom: 0.4rem;
}

/* SECTIONS */

.section {
  padding: 3rem 0;
}

.section.light {
  background: var(--bg-light);
}

.section.white {
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0.25rem auto 0;
  font-size: 0.95rem;
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  border: 1px solid #ebebeb;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.service-card ul {
  font-size: 0.85rem;
  margin-left: 1rem;
  margin-bottom: 0.75rem;
}

.service-card a.more {
  font-size: 0.9rem;
  font-weight: 600;
}

/* TRUST SECTION */

.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr;
}

.trust-points ul {
  list-style: none;
}

.trust-points li {
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  position: relative;
}

.trust-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}

/* HIGHLIGHTED SERVICES */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #ebebeb;
}

.highlight-card h3 {
  margin-bottom: 0.6rem;
}

.highlight-card ul {
  margin-left: 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* TESTIMONIALS */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #ebebeb;
  font-size: 0.9rem;
}

.testimonial strong {
  display: block;
  margin-top: 0.75rem;
}

/* BLOG GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid #ebebeb;
  font-size: 0.9rem;
}

/* CONTACT STRIP */

.contact-strip {
  background: var(--primary);
  color: #fff;
  padding: 1rem 0;
}

.contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.contact-item {
  font-size: 0.9rem;
}

.contact-item a {
  color: #fff;
  font-weight: 500;
}

/* FOOTER */

.site-footer {
  background: #020912;
  color: #d0d0d0;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

/* RESPONSIVE FOOTER & LAYOUT */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* INNER PAGES */

.page-hero {
  background: #0b3c5d;
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.8rem;
  opacity: 0.85;
}

.main-content {
  padding: 2.5rem 0;
}

.main-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  font-size: 0.9rem;
}

.sidebar-section {
  background: #fff;
  border-radius: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid #ebebeb;
  margin-bottom: 1rem;
}

.sidebar-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* FORMS */

form {
  display: grid;
  gap: 0.75rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #cccccc;
  font-size: 0.9rem;
}

textarea {
  min-height: 90px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkbox-inline {
  display: flex;
  gap: 0.4rem;
  font-size: 0.85rem;
  align-items: center;
}

/* BADGES & CHECKLISTS */

.badge {
  display: inline-block;
  background: #eef7ff;
  color: var(--primary);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

ul.checklist {
  list-style: none;
  margin-left: 0;
}

ul.checklist li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.4rem;
}

ul.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}

/* BLOG ARTICLE */

.article-meta {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.article-body h2 {
  font-size: 1.15rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
}

.article-body p {
  margin-bottom: 0.6rem;
}
