body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #e9f1ff;
  line-height: 1.6;
  background:
    linear-gradient(rgba(9, 19, 40, 0.55), rgba(9, 19, 40, 0.55)),
    url("/asset/bk01.avif") center/cover fixed no-repeat;
}

body.home-page {
  background:
    linear-gradient(rgba(9, 19, 40, 0.55), rgba(9, 19, 40, 0.55)),
    url("/asset/bk02.avif") center/cover fixed no-repeat;
  position: relative;
}

body.services-page {
  background:
    linear-gradient(rgba(9, 19, 40, 0.55), rgba(9, 19, 40, 0.55)),
    url("/asset/bk03.avif") center/cover fixed no-repeat;
}

body.contact-page {
  background:
    linear-gradient(rgba(9, 19, 40, 0.55), rgba(9, 19, 40, 0.55)),
    url("/asset/bk04.avif") center/cover fixed no-repeat;
}

body.home-page > *:not(.home-light-layer):not(.call-button) {
  position: relative;
  z-index: 1;
}

body.home-page .home-light-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.home-page .home-light-layer::before,
body.home-page .home-light-layer::after {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    linear-gradient(
      112deg,
      transparent 20%,
      rgba(110, 196, 255, 0.16) 40%,
      transparent 60%
    ),
    linear-gradient(
      72deg,
      transparent 28%,
      rgba(255, 204, 149, 0.12) 50%,
      transparent 72%
    );
  filter: blur(8px);
  transform: translate3d(0, 0, 0) scale(1.05);
}

body.home-page .home-light-layer::before {
  animation: light-sweep-a 18s ease-in-out infinite alternate;
}

body.home-page .home-light-layer::after {
  animation: light-sweep-b 24s ease-in-out infinite alternate;
  opacity: 0.75;
}

@keyframes light-sweep-a {
  0% {
    transform: translate3d(-4%, -2%, 0) rotate(-1.2deg) scale(1.04);
  }
  50% {
    transform: translate3d(3%, 2%, 0) rotate(0.8deg) scale(1.07);
  }
  100% {
    transform: translate3d(6%, -1%, 0) rotate(1.2deg) scale(1.05);
  }
}

@keyframes light-sweep-b {
  0% {
    transform: translate3d(6%, 3%, 0) rotate(0.8deg) scale(1.08);
  }
  50% {
    transform: translate3d(-3%, -2%, 0) rotate(-0.6deg) scale(1.04);
  }
  100% {
    transform: translate3d(-6%, 2%, 0) rotate(-1deg) scale(1.06);
  }
}

/* HEADER */

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

nav a {
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }
}

header {
  background: white;
  padding: 13px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 250px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #18356a;
  font-weight: 900;
  font-size: 22px;
}

nav a:hover {
  color: #d87520;
}

nav a.active {
  color: #d87520;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: none;
  margin: 0;
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.8s ease-in-out,
    transform 6s linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.06);
}

.hero-content {
  background: rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
  padding: 0 0 30px 0;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta {
  background: #d87520;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
}

.cta:hover {
  background: #18356a;
}

/* HOME INTERACTIONS */

body.home-page .hero-content h1,
body.home-page .hero-content p,
body.home-page .hero-content .cta {
  opacity: 0;
  transform: translateY(18px);
  animation: home-fade-up 0.8s ease forwards;
}

body.home-page .hero-content p {
  animation-delay: 0.16s;
}

body.home-page .hero-content .cta {
  animation-delay: 0.28s;
}

body.home-page .card,
body.home-page .trust-grid > div {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

body.home-page .card:hover,
body.home-page .trust-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

body.home-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

body.home-page .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .home-light-layer::before,
  body.home-page .home-light-layer::after,
  body.home-page .hero-content h1,
  body.home-page .hero-content p,
  body.home-page .hero-content .cta,
  body.home-page .reveal-on-scroll,
  body.home-page .card,
  body.home-page .trust-grid > div,
  .hero-slide,
  .hero-content {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* SECTION */

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #f5f9ff;
}
h3 {
  font-size: 22px;
}

/* ABOUT */

.about {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 20px;
  color: #e6eeff;
}

.page-link {
  font-size: 22px;
  text-align: center;
  margin-top: 25px;
}

.page-link a {
  color: #ffd3ac;
  font-weight: 700;
  text-decoration: none;
}

.page-link a:hover {
  color: #fff4e6;
}

/* SERVICES */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.card {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(214, 228, 255, 0.35);
  background: rgba(7, 17, 38, 0.45);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin-top: 0;
}

/* SERVICE AREA */

.area {
  text-align: center;
  font-size: 20px;
  color: #e6eeff;
}

/* TRUST AREA */

.trust {
  background: rgba(7, 17, 38, 0.35);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-grid h3,
.trust-grid p,
.card h3,
.card p,
.services h3,
.services p,
.mission-text h2,
.mission-text p,
.value-card h3,
.value-card p,
.service-card h3,
.service-card p,
.service-card ul li,
.process-step h3,
.process-step p,
.stat-label,
.form-col h2,
.form-col .subtitle,
.map-col h2,
.map-col .subtitle,
.info-item,
.hours-table td {
  color: #e9f1ff !important;
}

.info-item .info-label,
.stat-number {
  color: #d87520 !important;
}

.info-item .info-value {
  color: #0f172a;
}
/* CONTACT */

form {
  max-width: 600px;
  margin: auto;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
}

button {
  background: #18356a;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
}

button:hover {
  background: #d87520;
}

/* FOOTER */

footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.phone {
  font-size: 20px;
  margin-top: 10px;
}

.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #18356a;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.call-button:hover {
  background: #005ad6;
}
