/* =====================
   BASE RESET
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #e6eaee;
  color: #1f2a35;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: 1080px;
  margin: auto;
  padding: 0 20px;
}

section {
  padding: 44px 0;
}

.light-section {
  background: #ffffff;
}

.dark-section {
  background: linear-gradient(#3a4a5a, #2f3d4a);
  color: #ffffff;
}

/* =====================
   TOP BAR
===================== */
.top-bar {
  background: linear-gradient(#2f3d4a, #25313c);
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
}

.logo {
  font-weight: bold;
  letter-spacing: .8px;
  color: white;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
}

.nav-link {
  color: #e2e6ea;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-bottom: 2px solid rgba(255,255,255,.4);
}

.nav-link.active {
  border-bottom: 2px solid #9bb6d3;
}

.nav-cta {
  background: linear-gradient(#4b7bb3, #355f90);
  padding: 6px 14px;
  border-radius: 3px;
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(32,45,58,.75), rgba(32,45,58,.75)),
    url("../images/city.jpg") center/cover no-repeat;
  padding: 72px 20px 64px;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin: auto;
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: .3px;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: .6px;
  opacity: .95;
  margin-bottom: 26px;
}

.hero-actions {
  margin-bottom: 28px;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  opacity: .95;
}

.trust-bar span {
  color: #9bb6d3;
  margin-right: 4px;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  background: linear-gradient(#4b7bb3, #355f90);
  border: 1px solid #284d78;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}

.btn-secondary {
  background: linear-gradient(#e9edf1, #d7dde3);
  border: 1px solid #b7c0c9;
  padding: 8px 18px;
  font-size: 13px;
  text-decoration: none;
  color: #1f2a35;
  border-radius: 3px;
}

/* =====================
   SECTION TITLES
===================== */
.section-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 28px;
  font-weight: 600;
}

.section-title.light {
  color: #ffffff;
}

/* =====================
   SERVICES
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.service-box {
  background: linear-gradient(#ffffff, #f2f5f8);
  border: 1px solid #cfd6dd;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}

.service-icon {
  font-size: 22px;
  opacity: .55;
  margin-bottom: 6px;
}

.service-box h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.service-box p {
  font-size: 13px;
  line-height: 1.5;
  color: #3a4753;
}

.service-box:hover {
  border-color: #9bb6d3;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #3b6ea5;
  font-weight: 600;
}

/* =====================
   FEATURES
===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.feature-box {
  border: 1px solid rgba(255,255,255,.35);
  padding: 16px;
  text-align: center;
  font-size: 14px;
}




/* =====================
   MODAL
===================== */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.service-modal.show {
  display: block;
  opacity: 1;
}

.service-modal-content {
  background: #ffffff;
  max-width: 520px;
  margin: 10% auto;
  padding: 26px;
  border-radius: 4px;
  position: relative;
  transform: translateY(10px);
  transition: transform .25s ease;
}

.service-modal.show .service-modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}



/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    gap: 10px;
  }
}

/* WHY CHOOSE US – ENHANCEMENTS */

.why-us .features-grid {
  margin-top: 32px;
}

.why-us .feature-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 22px 20px;
  text-align: center;
  border-radius: 4px;
  transition: all .25s ease;
  opacity: 0;
  transform: translateY(10px);
}

.why-us .feature-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: .3px;
}

.why-us .feature-box p {
  font-size: 13px;
  line-height: 1.5;
  opacity: .9;
}

.feature-icon {
  font-size: 22px;
  margin-bottom: 8px;
  opacity: .8;
}

.why-us .feature-box:hover {
  background: rgba(255,255,255,0.08);
  border-color: #9bb6d3;
  transform: translateY(-3px);
}

/* Reveal animation */


.why-us .feature-box {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.why-us .feature-box.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* HOW IT WORKS – ENHANCED */
.how-it-works .section-intro {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 14px;
  line-height: 1.6;
  color: #3a4753;
  text-align: center;
}

.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.how-it-works .step {
  background: linear-gradient(#ffffff, #f3f6f9);
  border: 1px solid #cfd6dd;
  padding: 22px 20px;
  position: relative;
  transition: all .3s ease;
  opacity: 0;
  transform: translateY(14px);
}

.how-it-works .step:hover {
  border-color: #9bb6d3;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  transform: translateY(-4px);
}

.how-it-works .step-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #3b6ea5;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.how-it-works .step h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #1f2a35;
}

.how-it-works .step p {
  font-size: 13px;
  line-height: 1.6;
  color: #3a4753;
}

/* Reveal animation */
.how-it-works .step.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT US – ELITE PROFESSIONAL */
.about-us {
  background: #2f3d4a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 48px;
  align-items: start;
}

.about-left h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 15px;
  line-height: 1.6;
  color: #cfd6dd;
  max-width: 420px;
}

.about-right p {
  font-size: 14px;
  line-height: 1.7;
  color: #dfe5ea;
  margin-bottom: 14px;
}

/* Subtle reveal */
.about-left,
.about-right {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.about-us.reveal .about-left {
  opacity: 1;
  transform: translateY(0);
}

.about-us.reveal .about-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-lead {
    max-width: none;
  }
}

/* TESTIMONIALS – ELITE GLOW */
.testimonial-slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .6s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 28px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,182,211,.35);
  border-radius: 6px;
  box-shadow:
    0 0 0 rgba(155,182,211,0),
    0 10px 22px rgba(0,0,0,.25);
  text-align: center;
  transition: box-shadow .3s ease, transform .3s ease;
}

.testimonial-card:hover {
  box-shadow:
    0 0 16px rgba(155,182,211,.35),
    0 14px 26px rgba(0,0,0,.35);
  transform: translateY(-3px);
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid rgba(155,182,211,.6);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e6ebf0;
  margin-bottom: 16px;
}

.testimonial-meta strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.testimonial-meta span {
  font-size: 12px;
  opacity: .75;
}

/* DOTS */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: #9bb6d3;
  box-shadow: 0 0 6px rgba(155,182,211,.8);
}

/* =====================
   REVIEW SECTION
===================== */
.review-section {
  text-align: center;
}

.review-form {
  max-width: 520px;
  margin: auto;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #cfd6dd;
  font-size: 14px;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Success message hidden by default */
.review-success {
  display: none;
  margin-top: 20px;
  padding: 14px;
  background: #e6f3e9;
  border: 1px solid #9ac9a6;
  color: #215c2e;
  font-size: 14px;
  border-radius: 4px;
}

/* Show success when form is submitted */
.review-section.success .review-success {
  display: block;
}

.review-section.success .review-form {
  display: none;
}

/* =====================
   CONTACT SECTION
===================== */
.contact-section {
  background: #f6f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-intro {
  font-size: 14px;
  margin-bottom: 18px;
  color: #3a4753;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #cfd6dd;
  padding: 28px;
  border-radius: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #cfd6dd;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

/* Success message */
.contact-success {
  display: none;
  margin-top: 18px;
  padding: 14px;
  background: #e6f3e9;
  border: 1px solid #9ac9a6;
  color: #215c2e;
  font-size: 14px;
  border-radius: 4px;
}

.contact-section.success .contact-success {
  display: block;
}

.contact-section.success .contact-form {
  display: none;
}

/* Trust panel */
.contact-trust {
  background: linear-gradient(#3a4a5a, #2f3d4a);
  color: #ffffff;
  padding: 28px;
  border-radius: 4px;
}

.contact-trust h3 {
  margin-bottom: 14px;
}

.contact-trust ul {
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 18px;
}

.contact-trust li {
  margin-bottom: 8px;
}

.contact-direct {
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 14px;
  font-size: 14px;
}

.contact-note {
  font-size: 12px;
  opacity: .85;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.contact-disclaimer {
  font-size: 12px;
  color: #6b7785;
  margin-top: 12px;
  line-height: 1.5;
}

/* =====================
   FAQ
===================== */

.faq-item {
  border-bottom: 1px solid #e3e6ea;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2937;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* =====================
   FOOTER
===================== */
.footer {
  background: linear-gradient(#2f3d4a, #24313c);
  color: #cfd6dd;
  font-size: 13px;
  padding: 48px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
}

.footer-logo {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-desc {
  line-height: 1.6;
  opacity: .9;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  opacity: .9;
}

.footer-col ul li a {
  color: #cfd6dd;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.trust-badges img {
  height: 34px;
  opacity: .85;
  filter: grayscale(100%);
}

.footer-legal {
  font-size: 12px;
  line-height: 1.5;
  opacity: .8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 28px;
  padding-top: 12px;
  text-align: center;
  font-size: 12px;
  opacity: .85;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   TERMS PAGE
===================== */
.terms-page {
  font-size: 14px;
}

.terms-intro {
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: .9;
  text-align: center;
}

.terms-block {
  background: #ffffff;
  border: 1px solid #cfd6dd;
  padding: 22px 24px;
  margin-bottom: 18px;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.terms-block h4 {
  margin-top: 0;
  font-size: 15px;
  color: #2f3d4a;
}

.terms-block p {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #3a4753;
}

.terms-footer {
  margin-top: 30px;
  font-size: 13px;
  opacity: .85;
  text-align: center;
}

/* =====================
   PRIVACY PAGE
===================== */
.privacy-page {
  font-size: 14px;
}

.privacy-intro {
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: .9;
  text-align: center;
}

.privacy-block {
  background: #ffffff;
  border: 1px solid #cfd6dd;
  padding: 22px 24px;
  margin-bottom: 18px;
  border-radius: 3px;
  transition: opacity .5s ease, transform .5s ease;
}

.privacy-block h4 {
  margin-top: 0;
  font-size: 15px;
  color: #2f3d4a;
}

.privacy-block p {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #3a4753;
}

.privacy-footer {
  margin-top: 30px;
  font-size: 13px;
  opacity: .85;
  text-align: center;
}

/* =====================
   INVESTIGATIVE APPROACH
===================== */
.approach-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
  opacity: .9;
}

.approach-step {
  border-left: 3px solid #1f2b38;
  padding-left: 22px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.approach-step h4 {
  margin-top: 0;
  font-size: 16px;
  color: #1f2b38;
}

.approach-step p {
  line-height: 1.7;
  color: #3a4753;
}


.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 80px; /* Adjust based on your top bar height */
  width: auto;
  margin-right: 10px; /* Space between image and text */
}

.logo-text {
  font-size: 12px;
  font-weight: bold;
  color: #fff; /* Change color to match your theme */
}


html, body {
  overflow-x: hidden;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 44px;
    right: 0;
    width: 100%;
    background: linear-gradient(#2f3d4a, #25313c);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 14px;
    display: none;
    z-index: 999;
  }

  .nav.show {
    display: flex;
  }

  .nav-link {
    font-size: 14px;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  color: #25D366;
  display: inline-flex;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.secure-line {
  font-size: 12px;
  color: #9bb6d3;
  margin-left: 6px;
  font-style: italic;
}



