/* =========================================================
   Hornbill International
   Shared site styles
   ========================================================= */

:root {
  --green-dark: #123524;
  --green-mid: #1c5a3a;
  --green-light: #277a4e;
  --green-soft: #eef6f0;
  --gold: #c9a14a;
  --gold-light: #ddb968;
  --gold-pale: #f5e8c8;
  --white: #ffffff;
  --off-white: #f7f4ee;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-muted: #777777;
  --border: #dfe6df;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: all 0.28s ease;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cinzel', serif;
  --font-body: 'Poppins', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  margin: 0;
  font-style: normal;
}

.site-main {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1200;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.gold-text {
  color: var(--gold);
}

.section-pad {
  padding: 88px 0;
}

@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }
}

/* Loader */

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo-img {
  width: 160px;
  margin: 0 auto 18px;
  animation: pulse-fade 1.4s ease-in-out infinite;
}

.loader-bar {
  width: 160px;
  height: 3px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.loader-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  animation: bar-load 1.8s ease-in-out infinite;
}

@keyframes pulse-fade {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes bar-load {
  0% {
    width: 0%;
    margin-left: 0;
  }

  50% {
    width: 100%;
    margin-left: 0;
  }

  100% {
    width: 0%;
    margin-left: 100%;
  }
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

.site-header.scrolled,
body.menu-open .site-header {
  padding: 10px 0;
  background: rgba(7, 32, 15, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-desktop {
  height: 64px;
  transition: var(--transition);
}

.logo-mobile {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav .nav-link,
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.13);
}

.header-contact {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-contact:hover {
  color: var(--green-dark);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .logo-desktop {
    height: 58px;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(280px, calc(100vw - 24px));
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(7, 32, 15, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-nav .nav-link,
  .header-contact {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 16px;
    border-radius: 14px;
  }

  .header-contact {
    display: inline-flex;
  }
}

@media (max-width: 479px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

/* Hero */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-dark) url('img/hero-interior.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(18, 53, 36, 0.93) 0%, rgba(18, 53, 36, 0.84) 45%, rgba(18, 53, 36, 0.93) 100%),
    radial-gradient(circle at 75% 28%, rgba(39, 122, 78, 0.34) 0%, transparent 48%),
    radial-gradient(circle at 18% 78%, rgba(201, 161, 74, 0.16) 0%, transparent 42%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(105vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.65;
  }

  100% {
    transform: translateY(-12vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 136px;
  padding-bottom: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 7px 18px;
  border: 1px solid rgba(201, 162, 39, 0.38);
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink-dot 1.3s ease-in-out infinite;
}

@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-title {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
}

.title-line.gold {
  color: var(--gold);
}

.hero-subtitle {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.hero-desc strong {
  color: var(--gold-light);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-gold,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 8px 26px rgba(201, 162, 39, 0.35);
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  position: relative;
  display: block;
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--gold);
  animation: scroll-mouse 1.5s ease-in-out infinite;
}

@keyframes scroll-mouse {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 18px;
    opacity: 0;
  }
}

/* Shared section headings */

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(20, 90, 56, 0.1);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

.section-heading {
  margin-bottom: 18px;
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
}

.section-heading.light {
  color: var(--white);
}

.section-para {
  color: var(--text-mid);
  font-size: 0.98rem;
}

.section-para.light {
  color: rgba(255, 255, 255, 0.74);
}

/* Services strip */

.services-strip {
  background: var(--gold);
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  padding: 24px 16px;
  border-right: 1px solid rgba(13, 51, 32, 0.12);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item i {
  font-size: 1.35rem;
}

.strip-item:hover {
  background: rgba(13, 51, 32, 0.08);
}

/* About */

.about-section {
  background: var(--off-white);
}

.about-stats {
  display: flex;
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  flex: 1;
  padding: 24px 16px;
  text-align: center;
}

.stat-num {
  display: block;
  margin-bottom: 6px;
  color: var(--green-mid);
  font-family: var(--font-head);
  font-size: 1.9rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.as-card {
  height: 100%;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.as-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.45);
}

.as-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(20, 90, 56, 0.1);
  color: var(--green-mid);
  font-size: 1.25rem;
}

.as-card:hover .as-icon {
  background: var(--gold);
  color: var(--green-dark);
}

.as-card h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.as-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* Gallery */

.gallery-section {
  background: var(--white);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 53, 36, 0.82) 100%);
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
}

/* Enquiry section */

.enquiry-section {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.enquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 14% 78%, rgba(29, 122, 78, 0.22) 0%, transparent 42%);
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
}

.form-alert.success {
  border: 1px solid rgba(29, 122, 78, 0.45);
  background: rgba(29, 122, 78, 0.18);
  color: #79e1b4;
}

.form-alert.error {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.16);
  color: #f6aaaa;
}

.enq-form {
  position: relative;
  z-index: 1;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.form-group-custom label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.req {
  color: var(--gold);
}

.form-control-custom {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: 0;
  transition: var(--transition);
  appearance: none;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form-control-custom.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

select.form-control-custom {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9a14a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

select.form-control-custom option {
  color: var(--white);
  background: var(--green-dark);
}

textarea.form-control-custom {
  min-height: 112px;
  resize: vertical;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #f7b0b0;
  font-size: 0.76rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

/* Contact */

.contact-section {
  background: var(--off-white);
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  height: 100%;
  padding: 30px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(20, 90, 56, 0.1);
  color: var(--green-mid);
  font-size: 1.35rem;
}

.contact-card:hover .cc-icon {
  color: var(--white);
  background: var(--green-mid);
}

.cc-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-card:hover .cc-icon.whatsapp {
  background: #25d366;
}

.cc-icon.email {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
}

.contact-card:hover .cc-icon.email {
  background: var(--gold);
  color: var(--green-dark);
}

.cc-icon.address {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.contact-card:hover .cc-icon.address {
  background: #ef4444;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.contact-card a:hover {
  color: var(--green-mid);
}

.cc-note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.cc-note a {
  color: var(--green-mid);
}

/* Map */

.map-section {
  background: var(--green-dark);
}

.map-header {
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.18);
}

.map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.map-label i {
  color: var(--gold);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(18%) saturate(1.05);
  transition: var(--transition);
}

.map-wrapper iframe:hover {
  filter: grayscale(0%) saturate(1.15);
}

/* Footer */

.site-footer {
  background: #07200f;
  padding-top: 66px;
}

.footer-logo {
  height: 84px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.68);
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.footer-heading {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links li,
.footer-contact-list li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list i {
  margin-top: 4px;
  color: var(--gold);
}

.footer-main {
  padding-bottom: 44px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

/* Floating controls */

.sticky-btns {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.sticky-btn .sticky-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.24s ease;
}

.sticky-btn:hover .sticky-label {
  max-width: 100px;
}

.sticky-btn.whatsapp {
  background: #25d366;
}

.sticky-btn.whatsapp:hover {
  background: #20ba58;
}

.sticky-btn.call {
  background: var(--green-mid);
}

.sticky-btn.call:hover {
  background: var(--green-light);
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
}

/* Page banner */

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 148px 0 72px;
  background: var(--green-dark);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 30%, rgba(29, 122, 78, 0.3) 0%, transparent 46%),
    radial-gradient(circle at 16% 82%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a14a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner-title {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-banner-copy {
  max-width: 620px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.page-breadcrumb a {
  color: var(--gold-light);
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-breadcrumb i {
  font-size: 0.58rem;
}

/* Privacy page */

.policy-section {
  background: var(--off-white);
}

.policy-card {
  padding: 52px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.policy-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.policy-meta i {
  color: var(--green-mid);
}

.policy-intro {
  padding-bottom: 34px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 1rem;
}

.policy-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.policy-block.last {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-block h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 1.3rem;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-dark);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.policy-block h3 {
  margin: 16px 0 8px;
  color: var(--green-mid);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-block p,
.policy-block li {
  color: var(--text-mid);
  font-size: 0.94rem;
}

.policy-block ul {
  margin: 12px 0 0;
}

.policy-block li {
  position: relative;
  padding: 5px 0 5px 22px;
}

.policy-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.policy-block a {
  color: var(--green-mid);
}

.policy-block a:hover {
  text-decoration: underline;
}

.policy-contact-box {
  margin-top: 16px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--off-white);
}

.policy-contact-box p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.policy-contact-box p:last-child {
  margin-bottom: 0;
}

.policy-contact-box i {
  width: 16px;
  margin-top: 4px;
  color: var(--green-mid);
}

/* Error pages */

.page-error {
  background: linear-gradient(180deg, #123524 0%, #163d29 100%);
}

.error-section {
  min-height: 100vh;
  padding-top: 148px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 16% 86%, rgba(29, 122, 78, 0.2) 0%, transparent 32%);
}

.error-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(12px);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 2.1rem;
}

.error-code {
  margin-bottom: 8px;
  color: transparent;
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 6.8rem);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(201, 162, 39, 0.45);
}

.error-title {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.error-copy {
  max-width: 560px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.error-note {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.error-note span {
  display: inline-block;
  max-width: 100%;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  overflow-wrap: anywhere;
}

.error-note a {
  color: var(--gold-light);
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.error-refresh {
  max-width: 320px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.error-refresh-bar {
  height: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.error-refresh-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: var(--gold);
  animation: refresh-progress linear forwards;
}

.error-card[data-auto-refresh='30'] .error-refresh-bar span {
  animation-duration: 30s;
}

@keyframes refresh-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Shared animations */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 767px) {
  .hero-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-gold,
  .btn-outline-gold {
    width: min(100%, 290px);
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .enq-form {
    padding: 26px 20px;
  }

  .page-banner {
    padding-top: 134px;
  }

  .policy-card {
    padding: 32px 22px;
  }

  .error-card {
    padding: 34px 22px;
  }
}

@media (max-width: 575px) {
  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 51, 32, 0.12);
  }

  .services-strip .col-6:nth-last-child(-n + 2) .strip-item {
    border-bottom: 0;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    width: 100%;
    justify-content: center;
  }

  .sticky-btn .sticky-label {
    display: none;
  }

  .sticky-btn {
    padding: 13px;
    border-radius: 50%;
  }
}

