* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #f2f2f2;
}

/* GLOBAL SECTION RULES */
.section {
  width: 100%;
  position: relative;
}

/* NAVBAR – HERO ONLY */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 96px;                 /* increased from 80px */

  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 80px;              /* more left/right breathing room */
  z-index: 20;

  transform: translateY(0);
  transition: transform 0.3s ease;
}

/* navbar hidden state */
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

/* logo */
.logo {
  height: 52px;
  width: auto;

  filter:
    drop-shadow(1px 0 0 #fff)
    drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff)
    drop-shadow(0 -1px 0 #fff);
}

/* nav links */
.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin-left: 48px;
}

.navbar ul li a {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}

.navbar ul li a:hover {
  color: #dddddd;
  text-decoration: underline;
  text-underline-offset: 15px;
}

/* HOME / HERO */
#home {
  height: 100vh;
}

.banner {
  position: relative;
  height: 100vh;

  background-image:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.25)
    ),
    url("images/services.jpg");

  /* border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px; */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero text wrapper */
.banner .overlay {
  text-align: center;
  padding: 40px 60px;
}

/* hero text */
.banner h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #ffffff;
  -webkit-text-stroke: 0.5px #000;
}

.banner p {
  font-size: 2rem;
  color: #ffffff;
  -webkit-text-stroke: 0.5px #000;
}

/* ABOUT US */
.about-us {
  background-color: #f2f2f2;
  display: flex;
}

.about-us .about-text {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 15vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-us p {
  max-width: 1200px;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* SERVICES */
.services-us {
  background-color: #ffffff;
}

.services-container {
  display: flex;
  height: 100vh;
}

/* services text */
.services-text-column {
  flex: 2;
  height: 100%;                        
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.services-text-column h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

/* service list */
.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.service-list li {
  font-size: 1.1rem;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

/* service highlight */
.service-highlight {
  font-size: 1.1rem;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.services-image-placeholder {
  flex: 3;
  height: 100%;                         /* fill container */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: opacity 0.5s ease-in-out;
  /* border-bottom-left-radius: 15px;
  border-top-left-radius: 15px; */
}



/* TRUST SECTION */
.trust-us {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  position: relative;
}

/* divider lines */
.trust-us::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: rgba(0,0,0,0.08);
  transform: translateX(-50%);
}

.trust-us::after {
  bottom: 0;
}

.trust-container {
  width: 100%;
  padding: 120px 15vw;
  text-align: center;
}

.trust-container h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.trust-container p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 60px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}

/* =========================
    CONTACT
    ========================= */
.contact-us {
  background-color: #ffffff;
}

.contact-container {
  display: flex;
  flex-direction: row-reverse;
  min-height: 100vh;
}

.contact-text {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-box {
  width: 80%;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #000;
  border-radius: 10px;
}

.contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.captcha-container {
  height: 80px;
  background: #eeeeee;
  border: 1px dashed #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
}

.submit-button {
  padding: 14px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.submit-button:hover {
  opacity: 0.7;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {

/* NAVBAR */
.navbar {
  height: 72px;
  padding: 0 24px;
}

.logo {
  height: 42px;
}

.navbar ul {
  display: none; /* hide nav links on mobile (clean look) */
}

/* HERO */
.banner h1 {
  font-size: 2.4rem;
}

.banner p {
  font-size: 1.2rem;
}

.banner .overlay {
  padding: 24px;
}

/* ABOUT US */
.about-us .about-text {
  padding: 100px 24px;
}

.about-us h2 {
  font-size: 2rem;
}

.about-us p {
  font-size: 1.05rem;
}

/* SERVICES */
.services-container {
  flex-direction: column;
  min-height: auto;
}

.services-text-column {
  padding: 80px 24px;
}

.services-image-placeholder {
  min-height: 300px;
  border-radius: 0;
}

/* TRUST SECTION */
.trust-container {
  padding: 80px 24px;
}

.trust-container h2 {
  font-size: 2rem;
}

.trust-logos {
  gap: 20px;
}

/* CONTACT */
.contact-container {
  flex-direction: column;
}

.contact-text {
  padding: 60px 24px;
  text-align: center;
}

.contact-form {
  padding-bottom: 80px;
}

.contact-form-box {
  width: 100%;
  margin: 0 24px;
}
}
