:root {
  --navy-900: #0b1630;
  --navy-800: #132344;
  --charcoal-900: #121318;
  --charcoal-700: #1d212d;
  --beige-100: #f2ece1;
  --beige-200: #e7ddcb;
  --gold-500: #c2a15f;
  --gold-600: #af8d4e;
  --text-light: #f5f6f8;
  --text-dark: #1b1d24;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(145deg, #faf7f2 0%, #f6f2e9 45%, #efe7d9 100%);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.section-spacing {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.bg-soft {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.7) 0%, rgba(231, 221, 203, 0.45) 100%);
}

.site-header {
  background: rgba(11, 22, 48, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(194, 161, 95, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-light);
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #e8d0a1, #a88345);
  color: var(--charcoal-900);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.brand-text {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.navbar .nav-link {
  color: rgba(245, 246, 248, 0.85);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.28s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.lang-switcher {
  min-width: 112px;
  border: 1px solid rgba(194, 161, 95, 0.42);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(130deg, var(--gold-500), #d7bb85);
  border: none;
  color: #10131d;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.78rem 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(175, 141, 78, 0.35);
  background: linear-gradient(130deg, var(--gold-600), #e3c58c);
  color: #111;
}

.hero-section,
.page-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(7, 17, 38, 0.94), rgba(16, 33, 63, 0.84)),
    radial-gradient(circle at 10% 20%, rgba(194, 161, 95, 0.15), transparent 38%),
    radial-gradient(circle at 80% 70%, rgba(194, 161, 95, 0.17), transparent 42%);
  color: var(--text-light);
  overflow: hidden;
}

.small-hero {
  padding-bottom: 3.2rem;
}

.texture-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 8px),
    repeating-linear-gradient(-45deg, rgba(194, 161, 95, 0.06) 0, rgba(194, 161, 95, 0.06) 1px, transparent 1px, transparent 7px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 0.8rem;
}

.display-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.03;
  margin-bottom: 1rem;
}

.lead-copy {
  max-width: 44ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245, 246, 248, 0.88);
}

.hero-card {
  border: 1px solid rgba(194, 161, 95, 0.32);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-card-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-tags span,
.capability-strip span {
  border: 1px solid rgba(194, 161, 95, 0.45);
  background: rgba(11, 22, 48, 0.08);
  color: var(--charcoal-900);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.content-panel {
  border: 1px solid rgba(194, 161, 95, 0.3);
  border-radius: 15px;
  padding: 1.45rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-panel:hover,
.feature-card:hover,
.service-card:hover,
.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(19, 35, 68, 0.12);
}

.section-heading {
  max-width: 780px;
}

.product-tile {
  border: 1px solid rgba(194, 161, 95, 0.45);
  border-radius: 14px;
  padding: 1.25rem 0.8rem;
  text-align: center;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.service-card,
.feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(194, 161, 95, 0.36);
  border-radius: 16px;
  padding: 1.35rem;
  height: 100%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3,
.feature-card h3 {
  font-size: 1.5rem;
}

.enquiry-section {
  background: linear-gradient(150deg, #101d39 0%, #18284e 55%, #1f315c 100%);
}

.enquiry-card {
  border-radius: 18px;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(194, 161, 95, 0.36);
  color: var(--text-light);
}

.enquiry-card .form-control,
.enquiry-card .form-select {
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(194, 161, 95, 0.45);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
}

.enquiry-card .form-label {
  font-size: 0.84rem;
  color: rgba(245, 246, 248, 0.88);
}

.form-status {
  font-size: 0.86rem;
  color: #d4f4ce;
}

.site-footer {
  background: #0f182f;
  color: rgba(245, 246, 248, 0.9);
  padding: 3.2rem 0 1rem;
}

.site-footer h4,
.site-footer h5 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(245, 246, 248, 0.84);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(194, 161, 95, 0.5);
  text-decoration: none;
}

.social-icons a:hover {
  background: rgba(194, 161, 95, 0.2);
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(194, 161, 95, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-bottom .lang-switcher {
  max-width: 140px;
}

.footer-wa {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(13, 99, 76, 0.4);
  z-index: 1030;
  font-size: 1.45rem;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(11, 22, 48, 0.95);
  }

  .navbar-collapse {
    border-top: 1px solid rgba(194, 161, 95, 0.3);
    margin-top: 0.75rem;
    padding-top: 0.9rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .display-title {
    line-height: 1.1;
  }
}

@media (max-width: 575.98px) {
  .btn-gold {
    width: 100%;
  }

  .hero-tags span,
  .capability-strip span {
    font-size: 0.73rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
