@charset "UTF-8";
:root {
  --gold: #f5c842;
  --gold-dim: rgba(245, 200, 66, 0.14);
  --gold-pale: #fdf8e1;
  --gold-border: rgba(245, 200, 66, 0.35);
  --ink: #1a1a2e;
  --ink-2: #3d3d5c;
  --ink-3: #6b6b8a;
  --mist: #f4f2ee;
  --mist-dark: #ece9e2;
  --line-color: #c8c5bf;
  --card: #ffffff;
  --border: #e8e4dc;
  --border-med: #d4cfc5;
  --green: #2ecc71;
  --green-dim: rgba(46, 204, 113, 0.1);
  --red: #e74c3c;
  --red-dim: rgba(231, 76, 60, 0.09);
  --blue: #4285F4;
  --blue-dim: rgba(66, 133, 244, 0.09);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-md: 0 8px 40px rgba(26, 26, 46, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f4f2ee;
  background-image: radial-gradient(ellipse at 20% 0%, rgba(245, 200, 66, 0.1) 0%, transparent 55%);
  background-attachment: fixed;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

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

h1, h2, h3 {
  font-family: "DM Serif Display", serif;
  color: #1a1a2e;
  line-height: 1.15;
  text-wrap: balance;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

p {
  color: #3d3d5c;
  font-size: clamp(0.85rem, 0.8136rem + 0.1818vw, 0.95rem);
  line-height: 1.75;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5c842;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 0 8px;
  }
}

.panel {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e4dc;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.1);
  margin: 0 auto;
  max-width: 1200px;
  padding: 64px 56px;
}
@media (max-width: 1200px) {
  .panel {
    padding: 40px 40px;
  }
}
@media (max-width: 768px) {
  .panel {
    padding: 28px 28px;
  }
}
@media (max-width: 640px) {
  .panel {
    padding: 36px 22px 22px;
  }
}

.panel-head p {
  text-wrap: balance;
}

.section-wrap {
  padding: 40px 28px;
}
@media (max-width: 480px) {
  .section-wrap {
    padding: 28px 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: #1a1a2e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
}
.btn-primary:hover {
  background: #3d3d5c;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26, 26, 46, 0.28);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-gold {
  background: #f5c842;
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(245, 200, 66, 0.3);
}
.btn-gold:hover {
  background: rgb(243.4623115578, 191.5427135678, 36.9376884422);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245, 200, 66, 0.4);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid #d4cfc5;
  color: #3d3d5c;
}
.btn-ghost:hover {
  border-color: #1a1a2e;
  color: #1a1a2e;
  background: rgba(26, 26, 46, 0.03);
}
.btn-outline-ink {
  background: transparent;
  border: 1.5px solid rgba(26, 26, 46, 0.22);
  color: #1a1a2e;
}
.btn-outline-ink:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3d3d5c;
  margin-bottom: 6px;
}
label .optional {
  font-weight: 400;
  color: #c0bdb6;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=number],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e4dc;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #f4f2ee;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #6b6b8a;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #6b6b8a;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border-color: #f5c842;
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.18);
  background: #fff;
}

textarea {
  resize: none;
  line-height: 1.6;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 242, 238, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e8e4dc;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 14px 12px;
  }
}
@media (max-width: 400px) {
  .navbar {
    padding: 12px 8px;
  }
}

.logo {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 40px;
}
.logo .star-logo {
  color: #f5c842;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 640px) {
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #3d3d5c;
  transition: color 0.22s ease;
}
.nav-link:hover {
  color: #1a1a2e;
}

/* ── NAVIGATION & DROPDOWNS ── */
/* 1. Desktop Base Rules */
/* Hide mobile-specific elements on large screens */
.nav-mobile {
  display: none;
}

.nav-ul-wrapper {
  display: contents;
}

body.no-scroll {
  overflow: hidden;
}

/* Desktop Menu Positioning */
.nav-item {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.nav-chevron {
  font-size: 0.7rem;
  margin-left: 6px;
  color: var(--ink-3);
  transition: transform 0.22s ease, color 0.22s ease;
}

/* Base Dropdown Box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 260px;
  z-index: 300;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Mega Menu Override for Industries */
.dropdown-mega {
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

/* Dropdown Links */
.dropdown-item {
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
}

/* 2. Desktop Hover Interactions */
@media (min-width: 1025px) {
  .nav-login {
    margin-left: auto; /* This forces the login group to the far right edge */
  }
  .nav-item:hover .nav-link {
    color: var(--ink);
  }
  .nav-item:hover .nav-chevron {
    transform: rotate(180deg);
    color: var(--ink);
  }
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-item:hover {
    background: var(--mist);
    color: var(--ink);
  }
}
/* ── MOBILE NAV: SLIDE-IN DRAWER (1024px and below) ── */
@media (max-width: 1024px) {
  /* Structural Resets */
  .navbar {
    flex-direction: column !important;
    padding: 0 !important;
    align-items: stretch !important;
  }
  .nav-logo {
    display: none;
  }
  /* 1. The Mobile Top Bar */
  .nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    background: transparent;
    z-index: 2002;
    position: relative;
  }
  /* 2. Hamburger Button & Morph Animation */
  .nav-mobile-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0 5px 15px;
  }
  .nav-mobile-button-lines {
    width: 24px;
    height: 16px;
    position: relative;
  }
  .line-1, .line-2, .line-3 {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .line-1 {
    top: 0;
  }
  .line-2 {
    top: 7px;
  }
  .line-3 {
    top: 14px;
  }
  #main-nav.open .line-1 {
    transform: translateY(7px) rotate(45deg);
  }
  #main-nav.open .line-2 {
    opacity: 0;
  }
  #main-nav.open .line-3 {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* 3. The Slide-In Drawer Container */
  .nav-ul-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: block;
    padding-top: 76px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Hide double scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-ul-wrapper::-webkit-scrollbar {
    display: none;
  }
  #main-nav.open .nav-ul-wrapper {
    transform: translateX(0);
  }
  /* 4. Drawer Links Format */
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 50px 0;
    gap: 0;
  }
  .nav-link {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
  }
  .nav-links .btn-primary {
    margin: 32px 28px 0;
    justify-content: center;
  }
  /* 5. Dropdown Accordions */
  .nav-item {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #fcfbfa;
    min-width: 100%;
    /* Accordion Animation Mechanics */
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Reset Grid for Single Column */
  .dropdown-mega {
    grid-template-columns: 1fr;
  }
  .dropdown-item {
    display: block;
    padding: 16px 28px 16px 40px;
    border-bottom: 1px solid var(--mist-dark);
    border-radius: 0;
    font-size: 0.95rem;
  }
  /* 6. Active States & Chevron Logic */
  .nav-item.is-active .dropdown-menu {
    max-height: 700px; /* Smoothly expands */
  }
  .nav-item.is-active .nav-chevron {
    transform: rotate(180deg);
    color: var(--gold);
  }
}
/* ─── FOOTER ─── */
.main-footer {
  background: var(--ink); /* Uses your existing $ink variable */
  padding: 80px 28px 30px; /* More top breathing room for the fat footer */
  color: #fff;
  font-family: "DM Sans", sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  align-items: start;
  grid-template-columns: 2.5fr 1.5fr 1.5fr 1fr 1.2fr; /* Creates perfect proportional columns */
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtle separator line */
}

/* Brand Column */
.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-brand a {
  color: #fff;
  font-weight: 600;
}

.brand-desc {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Link Columns */
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  color: var(--ink-3);
  font-size: 0.85rem;
  margin-bottom: 14px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* Sub-Footer (Legal & Copyright) */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copy-text {
  font-size: 0.8rem;
  color: var(--ink-3);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--ink-3);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 1052px) {
  .footer-inner {
    /* Tablet: Stack Brand on top, 4 columns of links below */
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: 1/-1; /* Spans all 4 columns */
    max-width: 400px;
    margin-bottom: 10px;
  }
}
@media (max-width: 828px) {
  .footer-inner {
    /* Large Phone: 2 columns for links */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 430px) {
  .main-footer {
    padding: 60px 20px 30px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column-reverse; /* Puts copyright at the very bottom */
    align-items: flex-start;
    gap: 16px;
  }
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}
.review-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e4dc;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.1);
  padding: 18px 20px;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ba3f5, #4285f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-avatar.amber {
  background: linear-gradient(135deg, #f5c842, rgb(242.4371859296, 185.9045226131, 17.5628140704));
}

.reviewer-info h5 {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1a1a2e;
  font-family: "DM Sans", sans-serif;
}

.rv-stars {
  color: #f5c842;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.rv-stars.red {
  color: #e74c3c;
}

.review-text {
  font-size: 0.82rem;
  color: #3d3d5c;
  line-height: 1.65;
}

.reply-box {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 8px;
  padding: 11px 14px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.reply-box.pending {
  background: #fdf8e1;
  border-color: rgba(245, 200, 66, 0.35);
}
.reply-box p {
  font-size: 0.8rem;
  color: #3d3d5c;
  line-height: 1.6;
}

.reply-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 1px;
  flex-shrink: 0;
}
.reply-badge.green {
  background: rgba(46, 204, 113, 0.14);
  color: rgb(36.616, 162.384, 89.948);
}
.reply-badge.gold {
  background: #fdf8e1;
  color: rgb(208.1849246231, 158.6170854271, 11.0150753769);
  border: 1px solid rgba(245, 200, 66, 0.35);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5c842;
  animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
.hidden {
  display: none !important;
}

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

.text-gold {
  color: #f5c842;
}

.text-ink-2 {
  color: #3d3d5c;
}

.text-muted {
  color: #6b6b8a;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf8e1;
  border: 1px solid rgba(245, 200, 66, 0.35);
  color: rgb(208.1849246231, 158.6170854271, 11.0150753769);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.divider {
  height: 1px;
  background: #e8e4dc;
  margin: 22px 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.anim-1 {
  animation: fadeUp 0.5s ease both;
}

.anim-2 {
  animation: fadeUp 0.5s 0.1s ease both;
}

.anim-3 {
  animation: fadeUp 0.5s 0.2s ease both;
}

.anim-4 {
  animation: fadeUp 0.5s 0.32s ease both;
}

.anim-5 {
  animation: fadeUp 0.5s 0.44s ease both;
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .btn-primary:hover {
    background: #1a1a2e !important;
    transform: translateY(0) !important;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2) !important;
  }
  .btn-primary:active {
    background: #3d3d5c !important;
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.15) !important;
  }
  .btn-gold:hover {
    background: #f5c842 !important;
    transform: translateY(0) !important;
    box-shadow: 0 4px 16px rgba(245, 200, 66, 0.3) !important;
  }
  .btn-gold:active {
    background: rgb(243.4623115578, 191.5427135678, 36.9376884422) !important;
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(245, 200, 66, 0.2) !important;
  }
  .btn-ghost:hover {
    background: transparent !important;
    border-color: #d4cfc5 !important;
    color: #3d3d5c !important;
  }
  .btn-ghost:active {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: #1a1a2e !important;
    color: #1a1a2e !important;
  }
  .btn-outline-ink:hover {
    background: transparent !important;
    border-color: rgba(26, 26, 46, 0.22) !important;
    color: #1a1a2e !important;
  }
  .btn-outline-ink:active {
    background: #1a1a2e !important;
    color: #fff !important;
  }
  .nav-link:hover {
    color: #3d3d5c !important;
  }
  .nav-link:active {
    color: #1a1a2e !important;
  }
  .main-footer a:hover {
    color: inherit !important;
  }
  .footer-right a:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .main-footer a:active,
  .footer-right a:active {
    color: #fff !important;
  }
}/*# sourceMappingURL=global_styles.css.map */