/* =====================================================
   RESET
===================================================== */

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

html, body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background: #0b1522; /* prevents white strip */
  color: #1a1a1a;
}

/* =====================================================
   CONTAINER
===================================================== */

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

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  color: #555;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center; /* centers nav */
  height: 70px;
  position: relative;
}

/* =====================================================
   LOGO (LEFT)
===================================================== */

.logo {
  position: absolute;
  left: 0;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* =====================================================
   NAVIGATION
===================================================== */

.main-nav ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none; /* removes black dots */
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #1f4ed8;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
}

@media (max-width: 768px) {

  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    transition: right 0.3s ease;
    padding: 40px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }
}



/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: url('../images/hero-image.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,40,0.85) 0%,
    rgba(10,20,40,0.6) 40%,
    rgba(10,20,40,0.3) 70%,
    rgba(10,20,40,0.1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary {
  background: #1f4ed8;
  color: #ffffff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.btn-primary:hover {
  background: #173bb0;
}

.btn-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* =====================================================
   SECTIONS
===================================================== */

section {
  padding: 100px 0;
  background: #ffffff;
}

.section-light {
  background: #f7f9fc;
}

.section-dark {
  background: #0f1e2e;
  color: #ffffff;
}

.section-dark p {
  color: #e0e0e0;
}

/* =====================================================
   SERVICES
===================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;          /* uniform height */
  object-fit: cover;      /* clean crop */
  border-radius: 6px;
  margin-bottom: 20px;
}


/* =====================================================
   PROCESS
===================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.step-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1f4ed8;
  margin-bottom: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  width: 100%;
}

/* Upper (WHITE + BLACK TEXT) */

.footer-upper {
  background: #ffffff;
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h4 {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  color: #000000;
  font-size: 14px;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #000000;
  text-decoration: none;
}

.footer-col a:hover {
  color: #1f4ed8;
}

/* ======================
   FOOTER LOGO
====================== */

/* ======================
   FOOTER LOGO SIZE
====================== */

.footer-logo {
  height: 80px;     /* adjust size here */
  width: auto;
  display: block;
  margin-bottom: 15px;
}

/* ======================
   LEGAL FOOTER
====================== */

.footer-lower {
  background: #0b1522;
  padding: 25px 0;
}

.footer-lower .container {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  text-align: center;        /* text center */
}

.footer-lower p {
  margin: 0;
  color: #ffffff;            /* force white */
  font-size: 14px;
}

.footer-lower a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-lower a:hover {
  opacity: 0.8;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

  h1 {
    font-size: 42px;
  }

  .services-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   SCROLL TO TOP
===================================================== */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #1f4ed8;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: none;

  /* Perfect centering */
  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: #173bb0;
  transform: translateY(-3px);
}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #1f4ed8;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
  padding: 120px 20px;
  background: #ffffff;
}

/* Main layout */
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

/* Form container */
.contact-form-section {
  max-width: 520px;
  width: 100%;
}

/* Woman image via CSS */
.contact-layout::after {
  content: "";
  width: 420px;
  height: 520px;
  background-image: url("../images/person%201.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  flex-shrink: 0;
}

/* =====================================================
   HEADINGS & TEXT
===================================================== */

.contact-form-section h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.contact-form-section p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #444;
}

/* =====================================================
   FORM
===================================================== */

.contact-form {
  width: 100%;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  box-sizing: border-box;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e5eff;
}

/* Checkbox */
.contact-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* =====================================================
   BUTTON (BLUE)
===================================================== */

.contact-form .btn-primary {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  background: #1e5eff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: #164bcc;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

  .contact-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-layout::after {
    width: 100%;
    height: 300px;
    background-position: center;
    margin-top: 40px;
  }

}

@media (max-width: 768px) {
  .contact-page {
    padding: 80px 20px;
  }
}

/* =========================
   NAV CTA BUTTON
========================= */

.main-nav .nav-cta a {
  background: #16a34a; /* Green */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.main-nav .nav-cta a:hover {
  background: #15803d;
  transform: translateY(-2px);
}


/* ===================================================== */
/* ================= TESTIMONIAL SECTION =============== */
/* ===================================================== */

.testimonials {
  padding: 120px 0;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

/* Round Image */
.testimonial-avatar {
  flex: 0 0 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text Area */
.testimonial-content {
  flex: 1;
}

.testimonial-content blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.client-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.client-title {
  font-size: 0.9rem;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-avatar {
    margin-bottom: 20px;
  }
}

/* =========================
   FAQs Section
========================= */

.faqs {
  padding: 80px 0;
  background: #f7f7f7;
}

.faqs h2 {
  margin-bottom: 10px;
}

.faqs p {
  margin-bottom: 40px;
  color: #555;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  margin-bottom: 15px;
  padding: 18px 22px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.faq-list summary::marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-top: 15px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   email-signup Section
========================= */


.email-signup {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.email-form {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.email-form input {
  padding: 12px 16px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-form button {
  padding: 12px 20px;
}

/* =========================
   GDPR Banner (Final)
========================= */

.gdpr-banner {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;               /* full-screen overlay */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 999998;
}

.gdpr-box {
  background: #fff;
  padding: 25px 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  z-index: 999999;
}

.gdpr-banner-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  background: #0056b3;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: #004a9c;
}
