/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top:0;
  font-family: Arial, Helvetica, sans-serif;
  /* Full-page fixed background image */
  background: url("image/background.png") center / cover no-repeat fixed;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* LAYOUT */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  padding-top: 2rem;
  flex: 1;
}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding:5px;
  background: rgba(0, 0, 0, 0.25); /* transparent dark glass */
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #00e676;
}


/* MOBILE NAV */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #444;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* HERO (HOME) */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 10rem;
  background: transparent;
  text-align: center;
}

.hero-overlay {
  padding: 7rem 1.5rem;
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  border: 3px solid #fff;
  margin: 0 auto 1rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
}

/* MAP SECTION (HOME) */
.map-section {
  background: #fff;
}

.map-section iframe,
.map-placeholder {
  width: 100%;
  height: 320px;
  border: none;
}

/* GENERIC SECTION TITLE */
.section {
  padding: 3rem 1.5rem;
  background: transparent;
}

.section.light {
  background: transparent;
}

/* .section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
} */

/* PROCESS PAGE: HERO-LIKE TITLE*/
.process-title, .section-title{
  text-align: center;
  position: relative;
  margin: 0.5rem 0 2rem 0;
  padding: 0.4rem 2.5rem;
  font-family: "Segoe UI", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 18px rgb(0, 0, 0);
}

.process-title::before, .section-title::before {
  content: "";
  position: absolute;
  inset: -0.6rem -2.2rem;
  border-radius: 999px;
  background: rgba(223, 220, 220, 0.844);
  box-shadow: 0 20px 45px rgba(224, 212, 212, 0.8);
  filter: blur(3px);
  z-index: -1;
}

/* ABOUT PAGE BLOCKS */
.about-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.split ul {
  list-style: none;
  line-height: 1.6;
}

.split ul li::before {
  content: "• ";
  color: #0fda64;
}

/* ICON GRID (WHY WORK & BENEFITS) */
.icon-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.3rem;
}

.icon-card {
  background: linear-gradient(135deg, #333, #555);
  padding: 1.3rem;
  border-radius: 8px;
}

.icon-card-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* PROCESS / STEPS */
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.step-card {
  position: relative;
  background: transparent;
  padding: 1.1rem 2.6rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.779);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.step-number {
  color: #ffed22;
  margin-right: 0.4rem;
  font-weight: 900;
}

.step-card p {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* SERVICE PAGE: CARDS + FORM */
.section.light {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* Use the global page background, keep layout full-width */
  background: transparent;
  text-align: center;
  padding: 3rem 1rem ;
}

.service-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.service-card-area {
  background: linear-gradient(145deg, #202040, #404070);
  padding: 2rem;
  border-radius: 10px;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.service-item {
  text-align: center;
  font-size: 0.9rem;
}

.service-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 0.6rem;
}


/* APPLY FORM */
.apply-form textarea {
  resize: none;
}

.apply-form {
  background: linear-gradient(180deg, #004d40, #00bfa5);
  padding: 1.5rem;
  border-radius: 8px;
}

.apply-form h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.apply-form label, .apply-form select {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.apply-form input,
.apply-form textarea, .apply-form select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  margin-bottom: 0.7rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  font-family: inherit;
}

.apply-form select {
  color: #999; /* grey */
}

/* When user selects a real option */
.apply-form select option {
  color: #000; /* black */
}

/* Force selected value to turn black */
.apply-form select:focus,
.apply-form select:valid {
  color: #000;
}

.apply-form button {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  background: #00c853;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

/* CONTACT + HOURS FOOTER BLOCK */
.footer-top {
  background: #000;
  color: #fff;
  padding: 2.5rem 1.5rem 1.7rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.footer-item {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.social-icons {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #050505;
  text-align: center;
  padding: 0.9rem;
  font-size: 0.8rem;
  color: #aaa;
}

/* WHATSAPP FLOATING */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  z-index: 99;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split,
  .service-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section {
    padding: 2.3rem 1rem;
  }

  .footer-top {
    padding: 2rem 1rem 1.3rem;
  }
}