/* ================================================================
   Secureclean Management Services
   Rebuilt public design system
   ================================================================ */

:root {
  --ivory: #fffaf1;
  --pearl: #ffffff;
  --sand: #fff1dd;
  --beige: #f0dcc0;
  --gold: #efbf61;
  --gold-dark: #b97816;
  --charcoal: #141414;
  --gray: #555f6c;
  --gray-soft: #7f8894;
  --gray-lt: #a1a9b3;
  --navy: #fff7ea;
  --navy-2: #fffcf6;
  --dark: #141414;
  --dark-2: #f8efe2;
  --blue: #efbf61;
  --cyan: #b97816;
  --royal: #efbf61;
  --royal-light: #f5d389;
  --line: rgba(30, 30, 30, 0.08);
  --line-strong: rgba(30, 30, 30, 0.14);
  --glass: rgba(255, 255, 255, 0.76);
  --surface-shadow: 0 24px 70px rgba(20, 20, 20, 0.08);
  --shadow-sm: 0 12px 28px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 20px 48px rgba(20, 20, 20, 0.11);
  --shadow-lg: 0 30px 84px rgba(20, 20, 20, 0.16);
  --shadow-gold: 0 22px 52px rgba(185, 120, 22, 0.2);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --transition: 0.28s ease;
  --container: 1240px;
  --section-space: clamp(5rem, 7.5vw, 7.5rem);
  --section-space-sm: clamp(3.8rem, 5.5vw, 5.1rem);
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(239, 191, 97, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.96), transparent 34%),
    radial-gradient(circle at 50% 12%, rgba(255, 232, 188, 0.28), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 20%, #fff6e9 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

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

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

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

::selection {
  background: rgba(214, 179, 106, 0.28);
  color: var(--charcoal);
}

::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: rgba(234, 226, 214, 0.55);
}

::-webkit-scrollbar-thumb {
  background: rgba(198, 161, 91, 0.75);
  border-radius: 999px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.sp {
  padding: var(--section-space) 0;
}

.sp-sm {
  padding: var(--section-space-sm) 0;
}

.sp-lg {
  padding: clamp(6rem, 9vw, 8.5rem) 0;
}

.section-padding {
  padding: var(--section-space) 0;
}

.section-padding-sm {
  padding: var(--section-space-sm) 0;
}

.bg-ivory,
.bg-navy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 1)),
    var(--ivory);
}

.bg-pearl,
.bg-navy-2,
.bg-section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 245, 230, 0.92)),
    var(--pearl);
}

.bg-sand {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 241, 221, 0.98));
}

.bg-dark,
.bg-dark2 {
  background:
    linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(52, 46, 39, 0.92)),
    var(--charcoal);
}

.grid,
.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-playfair {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tag,
.sec-tag,
.section-subtitle,
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 191, 97, 0.2), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(185, 120, 22, 0.2);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.divider {
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 191, 97, 0.18), var(--gold), var(--gold-dark));
  box-shadow: 0 12px 24px rgba(185, 120, 22, 0.2);
}

.divider.center,
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.sec-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sec-head h2,
.sec-title,
.section-title {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--charcoal);
}

.sec-head p,
.section-subtitle + p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--gray);
  font-size: 1rem;
}

.gradient-text,
.accent,
.text-gold,
.gold,
.text-cyan {
  color: var(--gold-dark);
}

.text-muted {
  color: var(--gray);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(214, 179, 106, 0.2), transparent 30%),
    rgba(250, 248, 245, 0.98);
  transition: opacity 0.55s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(198, 161, 91, 0.2);
  border-top-color: var(--gold-dark);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-dark);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(198, 161, 91, 0.65);
  transition: transform 0.15s ease, opacity 0.2s ease;
  opacity: 0.45;
}

.cursor-ring.expand {
  transform: translate(-50%, -50%) scale(1.45);
  opacity: 0.2;
}

.topbar {
  position: relative;
  z-index: 60;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(234, 226, 214, 0.85);
  background: rgba(253, 253, 253, 0.8);
  backdrop-filter: blur(20px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
}

.topbar-link i {
  color: var(--gold-dark);
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 84px;
  border-bottom: 1px solid rgba(234, 226, 214, 0.85);
  background: rgba(253, 253, 253, 0.82);
  backdrop-filter: blur(22px);
  transition: height var(--transition), box-shadow var(--transition), background-color var(--transition);
}

#navbar.scrolled {
  height: 74px;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.12);
}

.nav-logo-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
}

.nav-logo-sub {
  display: block;
  color: var(--gray);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--gray);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
  background: rgba(245, 238, 230, 0.88);
}

.nav-link.active {
  box-shadow: inset 0 0 0 1px rgba(214, 179, 106, 0.22);
}

.nav-dd {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-dd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  height: 20px;
}

.dd-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(234, 226, 214, 0.95);
  border-radius: 20px;
  background: rgba(253, 253, 253, 0.96);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dd:hover .dd-panel,
.nav-dd:focus-within .dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
}

.dd-item i {
  width: 18px;
  color: var(--gold-dark);
  text-align: center;
}

.dd-item:hover {
  color: var(--charcoal);
  background: rgba(245, 238, 230, 0.78);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-ham {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(245, 238, 230, 0.78);
  box-shadow: inset 0 0 0 1px rgba(234, 226, 214, 0.95);
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
}

.mob-menu {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  z-index: 79;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(234, 226, 214, 0.95);
  border-radius: 24px;
  background: rgba(253, 253, 253, 0.98);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 112px);
  overflow: auto;
}

.mob-menu.open {
  display: flex;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 600;
}

.mob-link:hover,
.mob-link.active {
  background: rgba(245, 238, 230, 0.82);
  color: var(--gold-dark);
}

.mob-cta {
  margin-top: 8px;
}

.btn,
.btn-gold,
.btn-primary,
.btn-white,
.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn-gold:hover,
.btn-primary:hover,
.btn-white:hover,
.btn-outline:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-gold,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}

.btn-white {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(234, 226, 214, 0.95);
  box-shadow: var(--shadow-sm);
}

.btn-outline,
.btn-secondary {
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(198, 161, 91, 0.4);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(214, 179, 106, 0.14);
}

.btn-sm {
  min-height: 40px;
  padding: 0.7rem 1.05rem;
  font-size: 0.82rem;
}

.btn-lg {
  min-height: 54px;
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.wa-float,
.btt-btn {
  position: fixed;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.wa-float {
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #28d467, #1eb85a);
  color: #fff;
  font-size: 1.6rem;
}

.btt-btn {
  left: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  background: rgba(253, 253, 253, 0.92);
  border: 1px solid rgba(234, 226, 214, 0.95);
  color: var(--charcoal);
  opacity: 0;
  pointer-events: none;
}

.btt-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: min(920px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(250, 248, 245, 0.9), rgba(250, 248, 245, 0.42)),
    var(--ivory);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.98);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 251, 244, 0.96) 0%, rgba(255, 248, 237, 0.84) 42%, rgba(255, 248, 237, 0.48) 100%),
    radial-gradient(circle at top right, rgba(239, 191, 97, 0.26), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 7rem 0 6rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(185, 120, 22, 0.16);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 32px rgba(30, 30, 30, 0.06);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--charcoal);
}

.hero-sub {
  margin: 1.4rem 0 0;
  max-width: 610px;
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2.75rem;
}

.hero-stat {
  padding: 1.45rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 227, 0.8));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(20, 20, 20, 0.08);
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.hero-stat-lbl {
  margin-top: 0.35rem;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(320px, 38vw, 430px);
  padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(3.25rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at top left, rgba(239, 191, 97, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 228, 0.84));
  border-bottom: 1px solid rgba(234, 226, 214, 0.85);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 241, 0.8) 42%, rgba(255, 250, 241, 0.46) 100%),
    url("../../asset/hero%20bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  z-index: 1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 191, 97, 0.2), transparent 68%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero h1,
.page-hero .section-title {
  margin: 0.9rem 0 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--charcoal);
  text-wrap: balance;
}

.page-hero p {
  max-width: 680px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.95s ease, transform 6.2s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(0.8);
}

.page-hero .hero-slide img {
  filter: saturate(0.88) contrast(1.03) brightness(0.7);
}

.hero-dots {
  position: absolute;
  left: clamp(18px, 5vw, 32px);
  bottom: clamp(18px, 4vw, 28px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transition: width var(--transition), background-color var(--transition), transform var(--transition);
}

.hero-dot.active {
  width: 32px;
  background: linear-gradient(135deg, rgba(239, 191, 97, 0.96), rgba(185, 120, 22, 0.96));
}

.hero.has-slider,
.page-hero.has-slider {
  background: var(--ivory);
}

.hero.has-slider > .hero-bg {
  display: none;
}

.page-hero.has-slider::before {
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.72) 0%, rgba(40, 29, 16, 0.54) 38%, rgba(255, 248, 237, 0.1) 100%),
    radial-gradient(circle at top left, rgba(239, 191, 97, 0.26), transparent 28%);
}

.page-hero.has-slider .page-hero-tag,
.page-hero.has-slider .section-subtitle {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff3d8;
}

.page-hero.has-slider h1,
.page-hero.has-slider .section-title {
  color: #fff;
}

.page-hero.has-slider p,
.page-hero.has-slider .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero.has-slider .bc-sep,
.page-hero.has-slider .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.page-hero.has-slider .bc-cur,
.page-hero.has-slider .breadcrumb-current {
  color: #fff;
}

.hero-grid-bg,
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198, 161, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 161, 91, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.blob-1 {
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214, 179, 106, 0.26), transparent 70%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 1.2rem;
}

.breadcrumb a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.bc-sep,
.breadcrumb-sep {
  color: rgba(107, 114, 128, 0.55);
  font-size: 0.7rem;
}

.bc-cur,
.breadcrumb-current {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
}

.stats-band {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background:
    radial-gradient(circle at top left, rgba(239, 191, 97, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(20, 20, 20, 0.97), rgba(53, 35, 18, 0.92)),
    var(--charcoal);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.stat-lbl {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card,
.card-flat,
.svc-card,
.service-card,
.team-card,
.testi-card,
.blog-card,
.cert-card,
.info-card,
.glass,
.glass-card,
.card-dark {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.card::before,
.card-flat::before,
.svc-card::before,
.service-card::before,
.team-card::before,
.testi-card::before,
.blog-card::before,
.cert-card::before,
.info-card::before,
.glass::before,
.glass-card::before,
.card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card,
.card-flat,
.svc-card,
.service-card,
.team-card,
.testi-card,
.blog-card,
.cert-card,
.info-card,
.glass,
.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 235, 0.94));
  border: 1px solid rgba(240, 220, 192, 0.95);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(18px);
}

.card-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 229, 185, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.card,
.card-flat,
.cert-card,
.glass,
.glass-card,
.card-dark {
  padding: clamp(1.5rem, 2.3vw, 2.1rem);
}

.card:hover,
.card-flat:hover,
.svc-card:hover,
.service-card:hover,
.team-card:hover,
.testi-card:hover,
.blog-card:hover,
.cert-card:hover,
.info-card:hover,
.glass-hover:hover,
.service-cat-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 68px rgba(20, 20, 20, 0.13);
  border-color: rgba(185, 120, 22, 0.3);
}

.card:hover::before,
.card-flat:hover::before,
.svc-card:hover::before,
.service-card:hover::before,
.team-card:hover::before,
.testi-card:hover::before,
.blog-card:hover::before,
.cert-card:hover::before,
.info-card:hover::before,
.glass:hover::before,
.glass-card:hover::before,
.card-dark:hover::before {
  opacity: 1;
}

.bg-dark .card-dark,
.bg-dark2 .card-dark,
.stats-band .card-dark,
.bg-dark .glass,
.bg-dark2 .glass,
.stats-band .glass,
.bg-dark .glass-card,
.bg-dark2 .glass-card,
.stats-band .glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.svc-card,
.service-card {
  height: 100%;
  padding: clamp(1.6rem, 2.1vw, 2rem);
}

.svc-card h3,
.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.svc-card p,
.service-card p,
.testi-card p,
.blog-card p,
.team-bio {
  color: var(--gray);
}

.svc-icon,
.service-icon,
.svc-icon-dark,
.cert-icon,
.cert-icon-wrap,
.info-icon,
.icon-box,
.icon-box-gold,
.icon-box-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 191, 97, 0.22), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(185, 120, 22, 0.16);
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-img-wrap {
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 245, 228, 0.92), rgba(240, 220, 192, 0.5));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-img-wrap i {
  font-size: 4rem;
  color: rgba(198, 161, 91, 0.34);
}

.team-card-body,
.p-6 {
  position: relative;
  z-index: 1;
}

.team-card-body {
  padding: clamp(1.45rem, 2vw, 1.9rem);
}

.team-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--charcoal);
}

.team-role {
  margin-top: 0.15rem;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.team-dept {
  margin-top: 0.4rem;
  color: var(--gray-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-social,
.footer-socials {
  display: flex;
  gap: 8px;
}

.team-s-btn,
.team-s-icon,
.f-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 245, 228, 0.88);
  border: 1px solid rgba(240, 220, 192, 0.9);
  color: var(--gray);
}

.team-s-btn:hover,
.team-s-icon:hover,
.f-social:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
}

.testi-card,
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.55rem, 2.2vw, 2rem);
}

.star-row {
  display: flex;
  gap: 4px;
  color: var(--gold-dark);
  font-size: 0.88rem;
}

.testi-quote {
  margin: 1rem 0 1.25rem;
  font-size: 0.96rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(234, 226, 214, 0.8);
}

.avatar-ring,
.avatar-init {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avatar-ring {
  object-fit: cover;
  border: 2px solid rgba(198, 161, 91, 0.42);
}

.avatar-init {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 800;
}

.testi-name {
  font-weight: 700;
  color: var(--charcoal);
}

.testi-role {
  color: var(--gray-soft);
  font-size: 0.82rem;
}

.blog-thumb {
  min-height: 220px;
  margin: -1.9rem -1.9rem 1.4rem;
  background: linear-gradient(180deg, rgba(245, 238, 230, 0.74), rgba(234, 226, 214, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-thumb i {
  font-size: 3rem;
  color: rgba(198, 161, 91, 0.34);
}

.cat-tag,
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 191, 97, 0.18), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(185, 120, 22, 0.16);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.info-card {
  gap: 16px;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  align-items: flex-start;
}

.info-label {
  color: var(--gray-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-value {
  margin-top: 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.info-note {
  margin-top: 0.2rem;
  color: var(--gray);
  font-size: 0.82rem;
}

.service-cat-btn,
.gal-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 220, 192, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 227, 0.92));
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.05);
}

.service-cat-btn.is-active,
.gal-filter-btn.btn-primary,
.service-cat-btn.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a, #3b2610 50%, var(--gold-dark));
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.18);
}

.f-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gray-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.f-input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(240, 220, 192, 0.92);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 238, 0.96));
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.f-input:focus {
  border-color: rgba(198, 161, 91, 0.6);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.12);
}

.f-input::placeholder {
  color: rgba(107, 114, 128, 0.74);
}

textarea.f-input {
  min-height: 130px;
  resize: vertical;
}

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.alert-ok {
  background: rgba(18, 166, 107, 0.08);
  color: #0f8a5f;
  border-color: rgba(18, 166, 107, 0.16);
}

.alert-err {
  background: rgba(224, 77, 77, 0.08);
  color: #c43f3f;
  border-color: rgba(224, 77, 77, 0.16);
}

.alert-info {
  background: rgba(198, 161, 91, 0.12);
  color: var(--gold-dark);
  border-color: rgba(198, 161, 91, 0.2);
}

.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 22px;
  border: 1px solid rgba(240, 220, 192, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 235, 0.95));
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(198, 161, 91, 0.34);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.2rem 1.25rem;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 700;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 241, 221, 0.95);
  color: var(--gold-dark);
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray);
}

.gallery-grid {
  columns: 3;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 1px solid rgba(240, 220, 192, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 228, 0.94));
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.08), rgba(30, 30, 30, 0.4));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(25, 24, 22, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

#lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

#lb-img {
  max-width: min(92vw, 1160px);
  max-height: 84vh;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

#lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cta-band,
.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(239, 191, 97, 0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 220, 147, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(20, 20, 20, 0.96), rgba(66, 41, 15, 0.9));
}

.cta-band::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  padding: clamp(0.5rem, 1vw, 1rem) 0;
}

.cta-band h2,
.cta-section h2,
.sec-head-light h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p,
.cta-section p,
.sec-head-light p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top center, rgba(239, 191, 97, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 244, 227, 0.92));
  border-top: 1px solid rgba(234, 226, 214, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-desc,
.footer-link,
.footer-contact-item,
.footer-copy,
.footer-bottom-link {
  color: var(--gray);
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link:hover,
.footer-bottom-link:hover {
  color: var(--gold-dark);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

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

.footer-nl {
  display: flex;
  gap: 8px;
}

.footer-nl-input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(234, 226, 214, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(234, 226, 214, 0.9);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hidden {
  display: none !important;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.leading-relaxed {
  line-height: 1.75;
}

.leading-tight {
  line-height: 1.3;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.tracking-widest {
  letter-spacing: 0.14em;
}

.uppercase {
  text-transform: uppercase;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.transition-all {
  transition: all var(--transition);
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.border {
  border: 1px solid rgba(234, 226, 214, 0.9);
}

.border-t {
  border-top: 1px solid rgba(234, 226, 214, 0.84);
}

.rounded-lg {
  border-radius: 14px;
}

.rounded-xl {
  border-radius: 18px;
}

.rounded-2xl {
  border-radius: 24px;
}

.z-10 {
  z-index: 10;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-14 {
  top: 3.5rem;
}

.-bottom-5 {
  bottom: -1.25rem;
}

.-right-5 {
  right: -1.25rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.col-span-full {
  grid-column: 1 / -1;
}

.opacity-20 {
  opacity: 0.2;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-2\.5 {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-16 {
  gap: 4rem;
}

.space-y-1\.5 > * + * {
  margin-top: 0.375rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-xs {
  font-size: 0.78rem;
}

.text-sm {
  font-size: 0.92rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.08rem;
}

.text-xl {
  font-size: 1.3rem;
}

.text-2xl {
  font-size: 1.55rem;
}

.text-3xl {
  font-size: 2rem;
}

.text-4xl {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.text-5xl {
  font-size: clamp(2.5rem, 5vw, 3.4rem);
}

.text-7xl {
  font-size: clamp(3.6rem, 7vw, 5rem);
}

.text-white {
  color: var(--charcoal);
}

.text-black {
  color: var(--charcoal);
}

.text-gray-300,
.text-gray-400 {
  color: var(--gray);
}

.text-gray-500,
.text-gray-700,
.text-white\/40,
.text-white\/50,
.text-white\/65 {
  color: var(--gray-soft);
}

[class~="text-[10px]"] {
  font-size: 0.625rem;
}

[class~="text-[15px]"] {
  font-size: 0.9375rem;
}

[class~="bg-blue/40"],
[class~="bg-blue-900/30"],
[class~="bg-green-900/30"],
[class~="bg-royal/50"] {
  background: rgba(214, 179, 106, 0.14);
}

[class~="border-cyan/20"],
[class~="border-blue-700/30"],
[class~="border-green-700/30"],
[class~="border-royal-light/30"] {
  border-color: rgba(198, 161, 91, 0.22);
}

[class~="border-white/10"] {
  border-color: rgba(255, 255, 255, 0.12);
}

[class~="text-cyan/20"] {
  color: rgba(198, 161, 91, 0.2);
}

[class~="hover:gap-3"]:hover {
  gap: 0.75rem;
}

[class~="left-[26px]"] {
  left: 26px;
}

[class~="w-[2px]"] {
  width: 2px;
}

.w-8 {
  width: 2rem;
}

.w-11 {
  width: 2.75rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-80 {
  height: 20rem;
}

.bg-dark .text-white,
.bg-dark2 .text-white,
.stats-band .text-white,
.cta-band .text-white,
.cta-section .text-white,
.page-hero .text-white,
.bg-dark .sec-title,
.bg-dark2 .sec-title,
.stats-band .sec-title,
.bg-dark .section-title,
.bg-dark2 .section-title,
.bg-dark .service-card h3,
.bg-dark2 .service-card h3,
.bg-dark .svc-card h3,
.bg-dark2 .svc-card h3,
.bg-dark .team-card h3,
.bg-dark2 .team-card h3,
.bg-dark .blog-card h3,
.bg-dark2 .blog-card h3,
.bg-dark .cert-card h4,
.bg-dark2 .cert-card h4,
.bg-dark .testi-name,
.bg-dark2 .testi-name {
  color: #fff;
}

.bg-dark .text-gray-300,
.bg-dark .text-gray-400,
.bg-dark2 .text-gray-300,
.bg-dark2 .text-gray-400,
.cta-band .text-gray-300,
.cta-band .text-gray-400,
.cta-section .text-gray-300,
.cta-section .text-gray-400,
.bg-dark .svc-card p,
.bg-dark2 .svc-card p,
.bg-dark .service-card p,
.bg-dark2 .service-card p,
.bg-dark .team-bio,
.bg-dark2 .team-bio,
.bg-dark .blog-card p,
.bg-dark2 .blog-card p,
.bg-dark .testi-card p,
.bg-dark2 .testi-card p,
.bg-dark .cert-card p,
.bg-dark2 .cert-card p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-dark .text-gray-500,
.bg-dark .text-white\/40,
.bg-dark .text-white\/50,
.bg-dark .text-white\/65,
.bg-dark2 .text-gray-500,
.bg-dark2 .text-white\/40,
.bg-dark2 .text-white\/50,
.bg-dark2 .text-white\/65,
.cta-band .text-gray-500,
.cta-band .text-white\/40,
.cta-band .text-white\/50,
.cta-band .text-white\/65,
.cta-section .text-gray-500,
.cta-section .text-white\/40,
.cta-section .text-white\/50,
.cta-section .text-white\/65 {
  color: rgba(255, 255, 255, 0.56);
}

.bg-dark .cert-card,
.bg-dark2 .cert-card,
.bg-dark .svc-card,
.bg-dark2 .svc-card,
.bg-dark .team-card,
.bg-dark2 .team-card,
.bg-dark .testi-card,
.bg-dark2 .testi-card,
.bg-dark .blog-card,
.bg-dark2 .blog-card,
.bg-dark .service-card,
.bg-dark2 .service-card,
.bg-dark .glass,
.bg-dark2 .glass,
.bg-dark .glass-card,
.bg-dark2 .glass-card,
.bg-dark .info-card,
.bg-dark2 .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.bg-dark .team-img-wrap,
.bg-dark2 .team-img-wrap,
.bg-dark .blog-thumb,
.bg-dark2 .blog-thumb {
  background: rgba(255, 255, 255, 0.06);
}

.bg-dark .cat-tag,
.bg-dark .cert-pill,
.bg-dark2 .cat-tag,
.bg-dark2 .cert-pill {
  background: rgba(214, 179, 106, 0.18);
  border-color: rgba(214, 179, 106, 0.24);
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}

.swiper-pagination-bullet {
  background: rgba(234, 226, 214, 0.95);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold-dark);
}

.tl-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-aos] {
  transition-property: opacity, transform;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }

  .nav-ham {
    display: inline-flex;
  }

  .topbar {
    display: none;
  }

  .hero-content {
    max-width: 680px;
    padding: 6rem 0 4.6rem;
  }

  .page-hero {
    min-height: 360px;
    padding-top: clamp(5rem, 11vw, 6.5rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }

  .page-hero h1,
  .page-hero .section-title {
    max-width: 640px;
  }

  .footer-nl {
    flex-wrap: wrap;
  }

  [class~="lg:grid-cols-2"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  [class~="lg:grid-cols-3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [class~="lg:grid-cols-4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [class~="lg:grid-cols-6"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-cols-2,
  [class~="md:grid-cols-2"],
  [class~="md:grid-cols-3"],
  [class~="sm:grid-cols-2"] {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 5.5rem 0 4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-btns > *,
  .footer-nl > * {
    flex: 1 1 100%;
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero h1,
  .page-hero .section-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-hero-tag,
  .section-subtitle {
    padding: 0.58rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .breadcrumb {
    gap: 8px;
  }

  .faq-q {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-body-inner {
    padding: 0 1rem 1rem;
  }

  .cta-band-inner {
    padding: 1.5rem 0;
  }

  [style*="gap:64px"] {
    gap: 32px !important;
  }

  [style*="gap:56px"] {
    gap: 28px !important;
  }

  [style*="padding:48px 40px"] {
    padding: 32px 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    columns: 2;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .mob-menu {
    top: 74px;
  }

  #navbar,
  #navbar.scrolled {
    height: 74px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    columns: 1;
  }

  .hero-title,
  .sec-title,
  .section-title {
    line-height: 1.08;
  }

  .hero-stat,
  .card,
  .card-flat,
  .svc-card,
  .service-card,
  .team-card,
  .testi-card,
  .blog-card,
  .cert-card,
  .glass,
  .glass-card {
    border-radius: 22px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-sub,
  .page-hero p {
    font-size: 0.95rem;
  }

  .hero-btns,
  .footer-nl {
    flex-direction: column;
  }

  .btn,
  .btn-gold,
  .btn-primary,
  .btn-white,
  .btn-outline,
  .btn-secondary {
    width: 100%;
  }

  .service-cat-btn,
  .gal-filter-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-dots {
    left: 16px;
    bottom: 16px;
  }

  .wa-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .btt-btn {
    left: 18px;
    bottom: 18px;
  }

  .text-4xl {
    font-size: 2rem;
  }

  .page-hero {
    min-height: 280px;
    padding-top: 4.8rem;
    padding-bottom: 2.7rem;
  }

  .page-hero h1,
  .page-hero .section-title {
    margin-top: 0.75rem;
  }

  .p-10,
  .p-12 {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .hero-content {
    padding: 5.1rem 0 3.4rem;
  }

  .hero-tag,
  .page-hero-tag,
  .section-subtitle {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .page-hero h1,
  .page-hero .section-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .breadcrumb {
    font-size: 0.82rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  [style*="padding:32px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
