:root {
  --black: #070707;
  --black-soft: #101010;
  --black-card: #151515;
  --graphite: #202020;
  --charcoal: #2a2a2a;

  --paper: #eee7dc;
  --paper-light: #f8f4ec;
  --paper-mid: #e4d8c9;
  --paper-deep: #d3c3b1;
  --paper-shadow: #c1ae9a;

  --text-main: #171717;
  --text-soft: #5f574e;
  --text-muted: #7a7066;

  --border: #d2c4b4;
  --border-dark: #b9a895;

  --success: #1f8f55;

  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 18px 48px rgba(0, 0, 0, 0.14);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.22);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text-main);
  line-height: 1.65;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.45), transparent 18%),
    radial-gradient(circle at 92% 28%, rgba(115, 104, 92, 0.16), transparent 24%),
    radial-gradient(circle at 20% 92%, rgba(83, 72, 61, 0.12), transparent 28%),
    linear-gradient(135deg, var(--paper-light) 0%, var(--paper) 38%, var(--paper-mid) 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.045), transparent 14%, transparent 86%, rgba(0,0,0,0.055)),
    radial-gradient(circle at center, transparent 0%, transparent 58%, rgba(0,0,0,0.075) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.025) 0,
      rgba(0,0,0,0.025) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: multiply;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: var(--paper-light);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 168, 149, 0.55);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--black);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--charcoal);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.nav a {
  color: var(--black);
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  background: var(--black);
  color: var(--paper-light);
  border: 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--paper-light);
  border-color: var(--black);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  background: var(--black-soft);
  border-color: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--black);
  border-color: rgba(185, 168, 149, 0.9);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--paper-light);
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 18% 90%, rgba(255,255,255,0.05), transparent 25%),
    linear-gradient(135deg, #050505 0%, #111111 48%, #181818 100%);
  color: var(--paper-light);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent 25%, transparent 75%, rgba(255,255,255,0.035)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 96px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  color: #c8bdaf;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--black);
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--paper-light);
}

h1 {
  font-size: clamp(2.9rem, 5.6vw, 5.7rem);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.1rem;
  color: #d7cec3;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.note {
  color: #bbb0a4;
  font-size: 0.92rem;
  margin-top: 18px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-medium);
}

.hero-card ul {
  padding-left: 20px;
}

/* SECTIONS */

.section {
  padding: 78px 0;
}

.section.white {
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.58), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.08));
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

/* GRID */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD */

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.3));
  border: 1px solid rgba(185, 168, 149, 0.78);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card .tag {
  font-family: "Sora", sans-serif;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* CHECKLIST */

.checklist {
  padding-left: 0;
  list-style: none;
}

.checklist li {
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

/* WARNING */

.warning {
  border-left: 5px solid var(--black);
  background:
    linear-gradient(180deg, #f0e8dc, #dfd1c1);
  padding: 20px;
  border-radius: 14px;
  color: var(--text-main);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
}

/* CTA */

.cta {
  background:
    radial-gradient(circle at center top, rgba(255,255,255,0.07), transparent 32%),
    linear-gradient(135deg, #070707 0%, #151515 100%);
  color: var(--paper-light);
  padding: 78px 0;
  text-align: center;
}

.cta h2 {
  color: var(--paper-light);
}

.cta p {
  color: #c9bfb3;
}

/* FORM */

.form {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.32));
  border: 1px solid rgba(185, 168, 149, 0.8);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-medium);
}

.form label {
  display: block;
  font-weight: 800;
  margin-bottom: 18px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #bfae9d;
  background: rgba(255,255,255,0.68);
  color: var(--text-main);
  border-radius: var(--radius-sm);
  padding: 13px;
  font: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid rgba(0, 0, 0, 0.09);
  border-color: var(--black);
}

/* PAGE HERO */

.page-hero {
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.07), transparent 22%),
    linear-gradient(135deg, #070707 0%, #111111 100%);
  color: var(--paper-light);
  padding: 76px 0;
}

.page-hero h1 {
  color: var(--paper-light);
}

.page-hero p {
  color: #d2c8bc;
  max-width: 760px;
}

/* TABLE */

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.48);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

th, td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  background: var(--black);
  color: var(--paper-light);
  font-family: "Sora", sans-serif;
}

/* DASHBOARD */

.dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.65), transparent 34%),
    linear-gradient(135deg, var(--paper-light), var(--paper) 42%, var(--paper-mid));
}

.sidebar {
  background:
    linear-gradient(180deg, #070707 0%, #141414 100%);
  color: var(--paper-light);
  padding: 28px 20px;
}

.sidebar h2 {
  color: var(--paper-light);
  font-size: 1.2rem;
  font-family: "Sora", sans-serif;
}

.sidebar a {
  display: block;
  color: #c9beb2;
  padding: 10px 0;
  font-weight: 700;
  transition: 0.2s ease;
}

.sidebar a:hover {
  color: white;
}

.dashboard-main {
  padding: 34px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.metric {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.34));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: var(--black);
}

/* FOOTER */

.site-footer {
  background: #070707;
  color: #c9beb2;
  padding: 30px 0;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* IMAGE CARDS */

.hero-photo-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-photo-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  filter: saturate(0.84) contrast(1.08);
}

.hero-photo-content {
  padding: 24px;
}

.hero-photo-content h2 {
  color: var(--paper-light);
  font-size: 1.7rem;
}

.hero-photo-content p {
  color: #d6cdc2;
  margin-bottom: 0;
}

.service-image-card {
  padding: 0;
  overflow: hidden;
}

.service-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.05);
}

.service-image-card h3,
.service-image-card p,
.service-image-card ul,
.service-image-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.service-image-card h3 {
  margin-top: 22px;
}

.service-image-card ul {
  padding-bottom: 22px;
}

.side-image-card {
  padding: 0;
  overflow: hidden;
}

.side-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.06);
}

.side-image-card-content {
  padding: 24px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  .logo-img {
  width: 210px;
}

.header-inner {
  padding: 12px 0;
}
}

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 4%;
    right: 4%;
    background: rgba(238, 231, 220, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-medium);
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .dashboard,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    padding: 24px;
  }

  .sidebar {
    position: static;
  }

  .hero {
    padding: 78px 0;
  }

  .page-hero {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
}
/* SHARPER FONT MAKEOVER OVERRIDES */

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

/* Main logo */
.logo {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--black);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo span {
  color: var(--black);
}

/* Navigation */
.nav {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

/* Eyebrow labels */
.eyebrow {
  font-family: "Rajdhani", sans-serif;
  color: #b9ad9f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 0.84rem;
  margin-bottom: 14px;
}

/* Main headings */
h1,
h2 {
  font-family: "Rajdhani", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.3rem);
}

h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.9rem);
}

/* Card and smaller headings */
h3 {
  font-family: "Rajdhani", sans-serif;
  line-height: 1;
  letter-spacing: -0.005em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.45rem;
}

/* Buttons */
.btn {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

/* Tags inside cards */
.card .tag {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Forms */
.form label {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* Tables */
th {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Dashboard metrics */
.metric strong {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Sidebar */
.sidebar h2,
.sidebar a {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
/* SCROLL REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}
/* HEADER / LOGO FINAL FIX */

.site-header {
  background: var(--paper-light);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 168, 149, 0.55);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.logo-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 320px;
  max-width: 100%;
  flex-shrink: 0;
}

.logo-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* optional: keeps nav aligned nicely */
.nav {
  margin-left: auto;
}
/* FINAL HEADER POLISH */

.header-inner {
  padding: 10px 0;
}

.logo-img {
  width: 330px;
}

.logo-img img {
  width: 100%;
  height: auto;
}

.site-header {
  min-height: 86px;
}
/* HEADER SIZE + NAV POLISH */

.site-header {
  min-height: 64px;
}

.header-inner {
  padding: 5px 0;
}

.logo-img {
  width: 300px;
}

.logo-img img {
  width: 100%;
  height: auto;
}

/* Make menu links slightly bigger */
.nav {
  font-size: 1.15rem;
  gap: 28px;
}
/* MAKE VIEW SERVICES BUTTON WHITE */

.btn-secondary {
  background: #f8f4ec;
  color: #070707;
  border-color: #f8f4ec;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #070707;
  border-color: #ffffff;
}
/* LEAD CAPTURE LANDING PAGE */

.lead-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 18% 90%, rgba(255,255,255,0.05), transparent 25%),
    linear-gradient(135deg, #050505 0%, #111111 48%, #181818 100%);
  color: var(--paper-light);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.lead-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 25%, transparent 75%, rgba(255,255,255,0.03)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.022) 0,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 96px
    );
  pointer-events: none;
}

.lead-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.lead-copy h1 {
  color: var(--paper-light);
}

.lead-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  max-width: 620px;
}

.lead-points div {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
}

.lead-points strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--paper-light);
  margin-bottom: 4px;
}

.lead-points span {
  color: #cfc6ba;
}

.lead-form-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.lead-form-card h2 {
  color: var(--paper-light);
}

.lead-form-card p {
  color: #d1c7bb;
}

.lead-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.lead-form label {
  color: var(--paper-light);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.28);
}

.form-smallprint {
  font-size: 0.82rem;
  color: #aaa096 !important;
  margin-top: 16px;
}

.thank-you-box {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: left;
}

.thank-you-box h1 {
  color: var(--paper-light);
}

@media (max-width: 900px) {
  .lead-hero-grid {
    grid-template-columns: 1fr;
  }

  .lead-hero {
    padding: 72px 0;
  }
}
/* SOCIAL FOOTER LINKS */

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.35);
  color: #f4efe6;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.social-links a:hover {
  background: #f4efe6;
  color: #070707;
  border-color: #f4efe6;
  transform: translateY(-2px);
}
/* SOCIAL ICON LINKS */

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #f4efe6;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a i {
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #f4efe6;
  color: #070707;
  border-color: #f4efe6;
  transform: translateY(-2px);
}

.gir-badge {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* OPTIONAL: footer layout improvement */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
/* FOOTER SOCIAL LINKS */

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #f4efe6;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a i {
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #f4efe6;
  color: #070707;
  border-color: #f4efe6;
  transform: translateY(-2px);
}

/* GIR logo button */
.gir-link {
  width: auto !important;
  height: 46px !important;
  padding: 0 12px;
  border-radius: 999px !important;
  background: transparent;
}

.gir-logo {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    margin-top: 10px;
  }
}
/* CLEAN GIR TEXT BUTTON */

.gir-link {
  width: 70px !important;
  height: 46px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 1px solid rgba(244, 239, 230, 0.35) !important;
  color: #f4efe6 !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gir-link:hover {
  background: #f4efe6 !important;
  color: #070707 !important;
  border-color: #f4efe6 !important;
}
/* FORM STATUS MESSAGE */

.form-status {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.sending {
  color: #d8cfc2;
}

.form-status.success {
  color: #9be6b0;
}

.form-status.error {
  color: #ffb4b4;
}
/* FORM STATUS MESSAGE */

.form-status {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.sending {
  color: #d8cfc2;
}

.form-status.success {
  color: #9be6b0;
}

.form-status.error {
  color: #ffb4b4;
}
/* HIDDEN PORTAL LINK */

.hidden-portal-link {
  position: fixed;
  right: 14px;
  bottom: 12px;
  z-index: 999;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.35);
  background: rgba(7, 7, 7, 0.45);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  transition: 0.2s ease;
}

.hidden-portal-link:hover {
  color: #f4efe6;
  background: #070707;
  border-color: rgba(244, 239, 230, 0.35);
}
/* PORTAL PASSWORD LOCK */

.portal-locked .portal-content {
  display: none;
}

.portal-locked.portal-unlocked .portal-content {
  display: grid;
}

.portal-lock-screen {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 55%, #181818 100%);
  color: #f4efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.portal-locked.portal-unlocked .portal-lock-screen {
  display: none;
}

.portal-lock-card {
  width: min(480px, 100%);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(244,239,230,0.14);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.portal-lock-logo {
  display: block;
  width: 230px;
  margin-bottom: 34px;
}

.portal-lock-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.portal-lock-card h1 {
  color: #f4efe6;
  margin-bottom: 12px;
}

.portal-lock-card p {
  color: #d1c7bb;
}

.portal-password-form {
  margin-top: 24px;
}

.portal-password-form label {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4efe6;
  margin-bottom: 18px;
}

.portal-password-form input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(244,239,230,0.25);
  background: rgba(255,255,255,0.92);
  color: #070707;
  border-radius: 10px;
  padding: 13px;
  font: inherit;
}

.portal-password-error {
  margin-top: 14px;
  color: #ffb4b4 !important;
  font-weight: 700;
}
/* SERVICE DETAIL FIELD */

.service-detail-field {
  display: none;
}

.service-detail-field.show {
  display: block;
}