* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --gold: #d79d2f;
  --gold-light: #f0c463;
  --black: #050505;
  --panel: #101010;
  --text: #ffffff;
  --muted: #d8d8d8;
  --line: rgba(215, 157, 47, 0.55);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.8px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 48%, rgba(215,157,47,.08), transparent 24%),
    radial-gradient(circle at 95% 55%, rgba(215,157,47,.08), transparent 22%),
    #050505;
}

header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 6%;
  display: grid;
  grid-template-columns: 120px 1fr 150px;
  align-items: center;
  gap: 16px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(215, 157, 47, 0.22);
}

.logo-wrap {
  width: 128px;
  position: relative;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo-wrap img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.85));
  mix-blend-mode: screen;
  border-radius: 4px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .7px;
}

nav a {
  position: relative;
  color: #fff;
}

nav a.active,
nav a:hover {
  color: var(--gold);
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.whatsapp {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  padding: 10px 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  white-space: nowrap;
}

.whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 150px 6% 70px;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.86) 39%, rgba(5,5,5,.35) 76%, rgba(5,5,5,.20) 100%),
    url(images/home.jpg);
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(240,196,99,.19), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 30%, rgba(0,0,0,.60));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 40px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 12px 30px rgba(0,0,0,.6);
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 610px;
  color: #f2f2f2;
  font-size: 17px;
  margin-bottom: 34px;
}

.buttons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.hero-social-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 157, 47, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  transition: .2s ease;
}

.hero-social-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 27px;
  min-width: 174px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .6px;
  transition: .2s ease;
}

.btn-gold {
  background: linear-gradient(135deg, #efc35d, #bc8126);
  color: #fff;
  box-shadow: 0 15px 34px rgba(188,129,38,.22);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: #fff;
  background: rgba(0,0,0,.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.side-socials {
  position: fixed;
  right: 25px;
  top: 40%;
  z-index: 25;
  display: grid;
  gap: 12px;
}

.side-socials a {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.75);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

section {
  padding: 48px 3% 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-heading .small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.section-heading h2 {
  font-size: clamp(29px, 4vw, 42px);
  text-transform: uppercase;
}

.services-area {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.05), transparent 45%),
    linear-gradient(180deg, #050505, #090909);
  border-bottom: 1px solid rgba(215,157,47,.35);
  padding-bottom: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  min-height: 440px;
  border: 1px solid rgba(215,157,47,.72);
  background: linear-gradient(180deg, rgba(35,35,35,.90), rgba(6,6,6,.98));
  box-shadow: 0 26px 55px rgba(0,0,0,.46);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-top {
  padding: 27px 24px 10px;
}

.service-svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  color: var(--gold);
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 14px;
  font-weight: 600;
}

.service-card p {
  color: #ededed;
  font-size: 14px;
  line-height: 1.75;
}

.photo {
  margin-top: auto;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(215,157,47,.35);
  filter: saturate(.95) contrast(1.05);
}

.trust-row {
  max-width: 1280px;
  margin: 26px auto 0;
  border: 1px solid rgba(215,157,47,.44);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(5,5,5,.80);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.trust-item {
  padding: 28px 20px;
  min-height: 145px;
  text-align: center;
  border-right: 1px solid rgba(215,157,47,.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 13px;
}

.trust-item h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-family: Georgia, serif;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}

.trust-item p {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.45;
}

.trust-item.featured {
  background: linear-gradient(135deg, #efc35d, #b77a24);
  transform: scale(1.03);
  color: #fff;
}

.trust-item.featured h4,
.trust-item.featured .trust-icon {
  color: #fff;
}

.trust-item.featured h4 {
  font-size: 34px;
  line-height: 1;
}

.about-enquiry {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
  padding: 52px 5.5% 36px;
  background: linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.87)), url("data:image/jpeg;base64,..."); /* Sliced data URI for scannability */
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(215,157,47,.45);
}

.about-block {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.about-block .small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 15px;
  margin-bottom: 5px;
}

.about-block h2 {
  font-size: clamp(35px, 4vw, 46px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-block p {
  color: #f1f1f1;
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 10px;
}

.signature {
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 34px;
  margin: 26px 0;
}

.three-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.point svg {
  width: 31px;
  height: 31px;
  color: var(--gold);
  flex: none;
}

.enquiry-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(215,157,47,.14), transparent 35%),
    linear-gradient(135deg, rgba(43,43,43,.92), rgba(19,19,19,.95));
  border: 1px solid rgba(255,255,255,.10);
  padding: 38px;
  box-shadow: 0 22px 70px rgba(0,0,0,.48);
}

.enquiry-card h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 29px;
  margin-bottom: 4px;
}

.enquiry-card p {
  color: #efefef;
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(0,0,0,.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  outline: none;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #e5e5e5;
}

select {
  color: #e5e5e5;
}

textarea {
  margin-top: 18px;
  min-height: 120px;
  resize: vertical;
}

.submit {
  margin-top: 18px;
  border: none;
  min-width: 230px;
  padding: 16px 26px;
  background: linear-gradient(135deg, #efc35d, #bc8126);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .6px;
  cursor: pointer;
  font-size: 14px;
}

footer {
  background: linear-gradient(90deg, #0b0b0b, #050505);
  padding: 28px 5.5% 18px;
  border-bottom: 1px solid rgba(215,157,47,.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1.15fr 1.25fr 1fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 22px;
}

.footer-logo {
  width: 150px;
  filter: drop-shadow(0 14px 25px rgba(0,0,0,.8));
  mix-blend-mode: screen;
}

footer h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff;
}

footer a, footer p {
  display: block;
  color: #e3e3e3;
  font-size: 13px;
  margin-bottom: 6px;
}

.follow {
  display: flex;
  gap: 22px;
  font-size: 25px;
  align-items: center;
}

.copyright {
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 15px;
}

@media (max-width: 1180px) {
  header {
    grid-template-columns: 150px 1fr;
  }
  .whatsapp {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-enquiry {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  /* Make header part of the normal flow on small screens so it scrolls away */
  header {
    position: static !important;
    top: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    background: #050505;
    padding: 12px 5%;
  }

  /* Allow the page wrapper to scroll normally on small devices */
  .page {
    overflow: visible;
  }

  .logo-wrap {
    width: 110px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px 12px;
    font-size: 12px;
  }

  /* Reduce top padding so content doesn't sit far below the header when it's static */
  .hero {
    min-height: auto;
    padding: 18px 6% 40px;
  }

  .side-socials {
    display: none;
  }

  .services-grid,
  .trust-row,
  .form-grid,
  .three-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-enquiry {
    padding: 30px 6%;
  }

  .enquiry-card {
    padding: 20px;
  }

}
/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 24px;
  background-color: #28a745; /* Success green */
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast.error {
  background-color: #dc3545; /* Error red */
}
img, .photo {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Keeps the aspect ratio without distortion */
  display: block;
}
