:root {
  --blue: #004aad;
  --green: #25d366;
  --dark: #0b1629;
  --text: #1b2437;
  --muted: #6d7a90;
  --light: #f2f4f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(3, 20, 43, 0.15);
  --radius: 18px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 22, 41, 0.95);
  box-shadow: 0 12px 25px rgba(5, 12, 28, 0.3);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.logo small {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  color: var(--white);
  font-size: 0.95rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(11, 22, 41, 0.98);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(5, 12, 28, 0.35);
}

.dropdown-menu a {
  color: var(--white);
  padding: 6px 8px;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: flex;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  margin: 6px 0;
  transition: transform var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 19, 46, 0.6), rgba(0, 74, 173, 0.6)),
    url("assets/services/banner%20image1.png")
      center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 720px;
  text-align: center;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 150px 24px 80px;
  background: linear-gradient(135deg, rgba(4, 19, 46, 0.95), rgba(0, 74, 173, 0.9));
  color: var(--white);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
}

.page-content {
  padding: 80px 24px;
  background: var(--light);
}

.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(10, 30, 60, 0.08);
}

.page-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
}

.btn.whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: var(--light);
  gap: 1px;
}

.stat {
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
}

.stat h3 {
  font-size: 1.8rem;
  color: var(--blue);
}

.stat p {
  color: var(--muted);
}

/* Services */
.services {
  padding: 90px 24px;
  background: var(--light);
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(10, 30, 60, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 0;
}

.feature-list li::before {
  content: "•";
  color: var(--green);
  margin-right: 8px;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 74, 173, 0.12);
  display: grid;
  place-items: center;
  color: var(--blue);
}

/* Professional services */
.pro-services {
  padding: 90px 24px;
  background: var(--white);
}

.pro-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pro-card {
  background: var(--white);
  border-radius: 2px;
  border: 1px solid rgba(0, 74, 173, 0.12);
  box-shadow: 0 10px 20px rgba(10, 30, 60, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pro-media {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.pro-media img {
  transform: scale(1);
  transition: transform 0.5s ease;
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(10, 30, 60, 0.16);
}

.pro-card:hover .pro-media img {
  transform: scale(1.08);
}

.pro-body {
  padding: 20px 20px 24px;
  display: grid;
  gap: 10px;
}

.pro-body h3 {
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 700;
}

.pro-desc {
  color: var(--muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 3em;
}

.pro-link {
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
}

.pro-link span {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .pro-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pro-services-grid {
    grid-template-columns: 1fr;
  }
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.learn {
  color: var(--blue);
  font-weight: 600;
}

.learn::after {
  content: "→";
  margin-left: 6px;
}

/* Process */
.process {
  padding: 90px 24px;
  background: var(--white);
}

.info-section {
  padding: 90px 24px;
  background: var(--light);
}

.info-section.alt {
  background: var(--white);
}

.info-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}


.info-grid div {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(10, 30, 60, 0.08);
}

.info-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}


.section-media {
  max-width: 1000px;
  margin: 0 auto 32px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(10, 30, 60, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text);
}

.info-section.alt .info-grid div {
  background: var(--light);
}

.area-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.area-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.12);
  box-shadow: 0 10px 18px rgba(10, 30, 60, 0.08);
  display: grid;
  min-height: 90px;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(10, 30, 60, 0.14);
}

.area-title {
  padding: 12px 14px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}


.step {
  background: var(--light);
  padding: 26px;
  border-radius: 16px;
}


.step-number {
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

/* Testimonials */
.testimonials {
  padding: 90px 24px;
  background: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%);
}

.slider {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 74, 173, 0.2);
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.slider-btn:hover {
  transform: translateY(-2px);
}

.slider-track {
  flex: 1;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial {
  min-width: 100%;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial h4 {
  margin-top: 20px;
  font-size: 1.1rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 74, 173, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.slider-dots button.active {
  background: var(--blue);
  transform: scale(1.2);
}

/* Contact */
.contact {
  padding: 90px 24px;
  background: var(--light);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 24px rgba(10, 30, 60, 0.08);
}

.contact-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-details {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-form-section {
  padding: 90px 24px;
  background: var(--light);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 74, 173, 0.08);
  display: grid;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
  padding: 14px 16px;
  border: 2px solid rgba(0, 74, 173, 0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.2s ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-field.full {
  grid-column: 1 / -1;
}

.contact-form .btn.primary {
  justify-self: start;
  padding: 14px 40px;
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 599px) {
  .contact-form {
    padding: 32px 24px;
  }
  
  .contact-form .btn.primary {
    width: 100%;
    justify-self: stretch;
  }
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 24px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}


.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 24px;
    background: rgba(11, 22, 41, 0.95);
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    display: none;
    width: min(320px, 90vw);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    padding: 10px 0 0;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 140px;
  }

  .slider {
    flex-direction: column;
  }

  .slider-btn {
    order: 1;
  }
}
