/* ===== CSS Variables & Reset ===== */
:root {
  --navy: #0a1628;
  --navy-light: #121f38;
  --navy-mid: #1a2d4d;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text: #d4d4d8;
  --text-muted: #8a8fa0;
  --text-dark: #2d2d2d;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

em {
  font-style: italic;
  color: var(--gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 22, 40, 0.92);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

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

.nav-link {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 45, 77, 0.5) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.15s;
}

.title-line:nth-child(3) {
  animation-delay: 0.3s;
}

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

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease-out 0.55s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Services Preview ===== */
.services-preview {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.15);
}

.card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  top: 16px;
  right: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ===== Why Us ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.03), transparent);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.visual-card {
  position: relative;
  padding: 48px 36px;
  border-radius: var(--radius);
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.visual-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
}

.visual-card blockquote {
  position: relative;
  z-index: 1;
}

.visual-card blockquote p {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  padding: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin: 16px 0;
  line-height: 1.3;
}

.cta-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
}

.method-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.method-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.method-value {
  font-size: 0.92rem;
  color: var(--text);
}

/* ===== Disclaimer ===== */
.disclaimer-section {
  padding: 40px 0;
}

.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.disclaimer-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.disclaimer-box h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-style: italic;
}

/* ===== About Page ===== */
.page-header {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04), transparent);
}

.page-header .section-title {
  margin-top: 12px;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-visual {
  padding: 48px;
  border-radius: var(--radius);
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.about-visual .values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.value-item span {
  font-size: 0.95rem;
  color: var(--cream);
}

/* ===== Services Page ===== */
.services-detail {
  padding: 80px 0;
}

.service-block {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block-header {
  margin-bottom: 36px;
}

.service-block-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}

.service-block-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  margin-top: -12px;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-item {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.service-item-icon {
  color: var(--gold);
  margin-bottom: 12px;
}

.service-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Floating Social Sidebar ===== */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideInRight 0.8s ease-out 1.2s backwards;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-sidebar a:first-child {
  border-radius: 12px 0 0 0;
}

.social-sidebar a:last-child {
  border-radius: 0 0 0 12px;
}

.social-sidebar a::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-sidebar a:hover {
  transform: translateX(-6px);
  width: 54px;
}

.social-sidebar a:hover svg {
  transform: scale(1.15);
}

.social-sidebar a svg {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-sidebar a.social-linkedin::before {
  background: #0077b5;
}

.social-sidebar a.social-linkedin:hover::before {
  opacity: 1;
}

.social-sidebar a.social-linkedin:hover {
  border-color: #e6683c;
  box-shadow: -4px 0 20px rgba(230, 104, 60, 0.3);
}

.social-sidebar a.social-youtube::before {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-sidebar a.social-youtube:hover::before {
  opacity: 1;
}

.social-sidebar a.social-youtube:hover {
  border-color: #ff0000;
  box-shadow: -4px 0 20px rgba(255, 0, 0, 0.3);
}

.social-sidebar a.social-phone::before {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-sidebar a.social-phone:hover::before {
  opacity: 1;
}

.social-sidebar a.social-phone:hover {
  border-color: #25d366;
  box-shadow: -4px 0 20px rgba(37, 211, 102, 0.3);
}

.social-sidebar a.social-email::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.social-sidebar a.social-email:hover::before {
  opacity: 1;
}

.social-sidebar a.social-email:hover {
  border-color: var(--gold);
  box-shadow: -4px 0 20px rgba(201, 168, 76, 0.3);
}

/* Social Tooltip */
.social-sidebar a .social-tooltip {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: var(--navy-light);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.social-sidebar a .social-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-light);
}

.social-sidebar a:hover .social-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Footer Social Icons ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.footer-social a svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social a:hover svg {
  transform: scale(1.15);
  color: var(--white);
}

.footer-social a.social-linkedin::before {
  background: #0077b5;
}

.footer-social a.social-youtube::before {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.footer-social a.social-linkedin:hover::before,
.footer-social a.social-youtube:hover::before {
  opacity: 1;
}

.footer-social a.social-linkedin:hover {
  border-color: #e6683c;
  box-shadow: 0 4px 20px rgba(230, 104, 60, 0.25);
}

.footer-social a.social-youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25);
}

/* ===== Contact Detail Cards (enhanced) ===== */
.contact-method .method-value a {
  color: var(--text);
  transition: var(--transition);
}

.contact-method .method-value a:hover {
  color: var(--gold);
}

.contact-method:hover .method-icon {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  transition: all 0.4s ease;
}

/* ===== Social CTA Banner ===== */
.social-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), rgba(26, 45, 77, 0.3));
}

.social-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-banner-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
}

.social-banner-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.social-btn span,
.social-btn svg {
  position: relative;
  z-index: 1;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn:hover::before {
  opacity: 1;
}

.social-btn.linkedin-btn {
  background: rgba(230, 104, 60, 0.1);
  color: #e6683c;
  border-color: rgba(230, 104, 60, 0.2);
}

.social-btn.linkedin-btn::before {
  background: #0077b5;
}

.social-btn.linkedin-btn:hover {
  color: var(--white);
  box-shadow: 0 8px 32px rgba(230, 104, 60, 0.3);
}

.social-btn.youtube-btn {
  background: rgba(255, 0, 0, 0.08);
  color: #ff4444;
  border-color: rgba(255, 0, 0, 0.2);
}

.social-btn.youtube-btn::before {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn.youtube-btn:hover {
  color: var(--white);
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Auth Page ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
  position: relative;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.03), transparent);
}

.auth-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: 960px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.7s ease-out;
}

.auth-card {
  padding: 48px 40px;
  background: var(--navy-light);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo {
  color: var(--gold);
  margin-bottom: 16px;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.auth-step {
  animation: fadeInUp 0.5s ease-out;
}

.auth-input-group {
  margin-bottom: 24px;
}

.auth-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.auth-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.auth-input-wrapper:focus-within {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.input-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.auth-input {
  flex: 1;
  padding: 14px 16px 14px 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.auth-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.auth-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-bottom: 12px;
  border-radius: 12px;
}

.auth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.auth-btn-link {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  background: none;
  border: none;
  padding: 10px;
}

.auth-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  animation: fadeInDown 0.3s ease-out;
}

.auth-status.info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #93bbfd;
}

.auth-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.auth-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.auth-footer {
  margin-top: 28px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.auth-divider span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
}

.auth-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Auth Side Panel */
.auth-side {
  background: linear-gradient(135deg, var(--navy-mid), rgba(201, 168, 76, 0.08));
  padding: 48px 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
}

.auth-side::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent);
}

.auth-side-content {
  position: relative;
  z-index: 1;
}

.auth-side-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}

.auth-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.auth-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.auth-benefit span {
  font-size: 0.9rem;
  color: var(--cream);
}

.auth-quote {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
}

.auth-quote p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dark);
  line-height: 1.5;
}

/* Logged-in state in navbar */
.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 0.85rem;
  color: var(--gold-light);
}

.nav-user-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-light);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    padding: 36px 24px;
  }

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

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

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

  .social-sidebar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    animation: none;
  }

  .social-sidebar a {
    border-radius: 0 !important;
  }

  .social-sidebar a:first-child {
    border-radius: 12px 0 0 0 !important;
  }

  .social-sidebar a:last-child {
    border-radius: 0 12px 0 0 !important;
  }

  .social-sidebar a:hover {
    transform: translateY(-4px);
    width: 48px;
  }

  .social-sidebar a .social-tooltip {
    display: none;
  }

  .social-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .social-banner-links {
    flex-direction: column;
  }

  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-side {
    display: none;
  }

  .auth-card {
    padding: 36px 24px;
  }
}

/* ===== AI Legal Chatbot Widget ===== */

/* Setup Banner */
#lb-setup-banner {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 1001;
  background: #1a1208;
  color: #e8dcc8;
  padding: 16px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.65;
  max-width: 270px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  display: none;
}

#lb-setup-banner strong {
  color: #c49a2a;
}

#lb-setup-banner a {
  color: #c49a2a;
}

#lb-setup-banner input {
  width: 100%;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #3a2a10;
  background: #2a1e0a;
  color: #e8dcc8;
  font-size: 12px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

#lb-setup-banner input:focus {
  border-color: #c49a2a;
}

#lb-setup-save {
  margin-top: 8px;
  width: 100%;
  padding: 8px;
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

#lb-setup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #a08c6a;
  cursor: pointer;
  font-size: 15px;
}

/* Chatbot Toggle */
#lb-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 105, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

#lb-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(139, 105, 20, 0.6);
}

#lb-toggle svg {
  transition: transform 0.3s ease;
}

#lb-toggle.open svg {
  transform: rotate(45deg);
}

/* Chat Window */
#lb-window {
  position: fixed;
  bottom: 102px;
  right: 28px;
  z-index: 1000;
  width: 360px;
  height: 540px;
  max-height: 80vh;
  background: #fffdf8;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(26, 18, 8, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s;
}

#lb-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

#lb-header {
  background: linear-gradient(135deg, #1a1208, #3a2a10);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lb-avatar svg {
  width: 20px;
  height: 20px;
}

#lb-header h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #e8dcc8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

#lb-header p {
  color: #a08c6a;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.lb-online {
  width: 8px;
  height: 8px;
  background: #4caf82;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(76, 175, 130, 0.3);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(76, 175, 130, 0.1);
  }
}

#lb-disclaimer {
  background: #fdf4e3;
  border-bottom: 1px solid #e8d9b8;
  padding: 8px 14px;
  font-size: 10.5px;
  color: #8b6914;
  line-height: 1.5;
  flex-shrink: 0;
}

#lb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

#lb-messages::-webkit-scrollbar {
  width: 4px;
}

#lb-messages::-webkit-scrollbar-thumb {
  background: #ddd0b8;
  border-radius: 4px;
}

.lb-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: msg-in 0.28s ease;
}

@keyframes msg-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lb-msg.user {
  flex-direction: row-reverse;
}

.lb-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}

.lb-msg.bot .lb-bubble {
  background: #f0e9d8;
  color: #1a1208;
  border-bottom-left-radius: 4px;
}

.lb-msg.user .lb-bubble {
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  color: #fffdf8;
  border-bottom-right-radius: 4px;
}

.lb-msg-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-msg-av svg {
  width: 14px;
  height: 14px;
}

.lb-typing .lb-bubble {
  background: #f0e9d8;
  padding: 12px 16px;
}

.lb-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 16px;
}

.lb-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a08c6a;
  animation: dot-b 1.2s infinite;
}

.lb-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.lb-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-b {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

#lb-quick {
  padding: 6px 14px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}

.lb-qr {
  background: #fff;
  border: 1px solid #d4c09a;
  color: #8b6914;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lb-qr:hover {
  background: #8b6914;
  color: #fff;
  border-color: #8b6914;
}

#lb-input-row {
  padding: 10px 12px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid #ede3cf;
  flex-shrink: 0;
  background: #fffdf8;
}

#lb-input {
  flex: 1;
  border: 1.5px solid #ddd0b8;
  border-radius: 22px;
  padding: 9px 16px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  background: #fdf8f0;
  color: #1a1208;
  outline: none;
  transition: border-color 0.2s;
  height: 38px;
}

#lb-input:focus {
  border-color: #8b6914;
}

#lb-input::placeholder {
  color: #b8a880;
}

#lb-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8b6914, #c49a2a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}

#lb-send:hover {
  transform: scale(1.08);
}

#lb-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* WhatsApp */
#wa-wrapper {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}

#wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

#wa-btn svg {
  width: 30px;
  height: 30px;
}

#wa-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e53935;
  border: 2px solid #fff;
  animation: wa-ping 1.8s infinite;
}

@keyframes wa-ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}

#wa-popup {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 32px rgba(26, 18, 8, 0.18);
  width: 288px;
  overflow: hidden;
  position: relative;
  transform: scale(0.85) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s;
}

#wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

#wa-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

#wa-popup-close:hover {
  color: #555;
}

#wa-popup-head {
  background: #075E54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#wa-popup-head-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#wa-popup-head-title {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

#wa-popup-head-sub {
  color: #a8d5a2;
  font-size: 10.5px;
  margin-top: 3px;
}

#wa-popup-body {
  padding: 14px 16px 12px;
  font-size: 12.5px;
  color: #3a3a3a;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}

#wa-popup-tip {
  display: block;
  margin-top: 10px;
  background: #fdf4e3;
  border-left: 3px solid #c49a2a;
  padding: 9px 11px;
  border-radius: 0 8px 8px 0;
  font-size: 11.5px;
  color: #6b4f10;
  line-height: 1.65;
}

#wa-popup-cta {
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

#wa-popup-cta:hover {
  background: #1ebe5d;
}

@media (max-width: 420px) {
  #lb-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    right: 16px;
    bottom: 90px;
  }

  #lb-toggle {
    right: 16px;
    bottom: 16px;
  }

  #lb-setup-banner {
    right: 16px;
    max-width: calc(100vw - 32px);
  }

  #wa-wrapper {
    right: 84px;
    bottom: 16px;
  }

  #wa-btn {
    width: 52px;
    height: 52px;
  }

  #wa-btn svg {
    width: 26px;
    height: 26px;
  }

  #wa-popup {
    width: calc(100vw - 108px);
  }
}