@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&display=swap");
/*  */
:root {
  --gold: #f5c842;
  --gold-dark: #d4a91e;
  --black: #0e0e0e;
  --dark: #181818;
  --dark2: #222;
  --gray: #888;
  --light-bg: #f7f6f2;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --wa-green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--black);
  background: var(--light-bg);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

.wa-fab-tooltip {
  position: absolute;
  right: 68px;
  background: var(--black);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-fab-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
  border-right: none;
}
.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: var(--black);
  border-bottom: 1px solid #2a2a2a;
}

.logo {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-dot {
  color: #fff;
  font-weight: 400;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 9px;
  padding: 0.4rem 0.85rem;
  color: #ccc;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
  font-family: inherit;
}
.lang-dropdown-btn:hover {
  border-color: #555;
  background: #333;
  color: #fff;
}
.lang-dropdown-btn .lang-flag {
  font-size: 1rem;
}
.lang-dropdown-btn .lang-chevron {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  transition: transform 0.2s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 0.4rem;
  min-width: 160px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  color: #aaa;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.lang-option:hover {
  background: #2a2a2a;
  color: #fff;
}
.lang-option.active {
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
}
.lang-option .opt-flag {
  font-size: 1.1rem;
}
.lang-option .opt-label {
  flex: 1;
}
.lang-option .opt-check {
  width: 14px;
  height: 14px;
  opacity: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang-option.active .opt-check {
  opacity: 1;
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: 0.3rem;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: #111;
  border-bottom: 1px solid #2a2a2a;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open {
  max-height: 600px;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #1e1e1e;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu ul li a:hover {
  color: var(--gold);
  background: rgba(245, 200, 66, 0.05);
}

.mobile-menu-cta {
  margin: 1rem 1.5rem 0;
  display: block;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-lang-section {
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid #1e1e1e;
  margin-top: 0.5rem;
}
.mobile-lang-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}
.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}
.mobile-lang-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.25rem;
  border-radius: 8px;
  cursor: pointer;
  background: #1e1e1e;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}
.mobile-lang-opt:hover {
  background: #2a2a2a;
}
.mobile-lang-opt.active {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.08);
}
.mobile-lang-opt .m-flag {
  font-size: 1.2rem;
}
.mobile-lang-opt .m-code {
  font-size: 0.65rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
}
.mobile-lang-opt.active .m-code {
  color: var(--gold);
}

.hero {
  background: var(--black);
  color: var(--white);
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(6rem, 16vw, 16rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  user-select: none;
  letter-spacing: -8px;
  pointer-events: none;
}
.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  color: var(--gold);
}

.hero-desc {
  color: #999;
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid #444;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: #666;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-alt {
  color: var(--black);
  border-color: #ddd;
  background: var(--white);
}
.btn-outline-alt:hover {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.08);
}

.stats-bar {
  background: var(--gold);
  padding: 1.2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

section {
  padding: 5rem 3rem;
}

section #why {
  padding: 5rem 3rem;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 520px;
}

.services {
  background: var(--light-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e8e6e0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.service-card .popular-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
}
.service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

.areas {
  background: var(--white);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  justify-content: center;
}
.area-chip {
  background: var(--light-bg);
  border: 1px solid #e8e6e0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  flex: 0 1 200px;
}
.area-chip:hover {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.06);
}
.area-chip .chip-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}
.why-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.why-item h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.why-item p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq {
  background: var(--light-bg);
}
.faq-list {
  max-width: 680px;
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1.4rem 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 0.8rem;
}

.contact-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.contact-section .section-title {
  color: var(--white);
}
.contact-sub {
  color: #888;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.phone-link:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #4ecb71;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.wa-link:hover {
  opacity: 0.8;
}

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  flex-wrap: wrap;
}
.contact-meta-item {
  text-align: center;
}
.contact-meta-label {
  font-size: 0.72rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.contact-meta-val {
  color: #ccc;
  font-size: 0.92rem;
}

footer {
  background: #0a0a0a;
  color: #444;
  text-align: center;
  padding: 2rem 3rem;
  font-size: 0.82rem;
  border-top: 1px solid #1a1a1a;
}
footer span {
  color: var(--gold);
}

@media (max-width: 900px) {
  nav {
    padding: 0.9rem 1.5rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .stats-bar {
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.85rem 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .lang-dropdown {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    padding: 4.5rem 1.25rem 3.5rem;
  }
  .hero h1 {
    letter-spacing: -1px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 1.25rem;
  }
  section {
    padding: 3.5rem 1.25rem;
  }
  .areas-grid {
    gap: 0.7rem;
  }
  .area-chip {
    flex-basis: 140px;
  }
  .contact-meta {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
  .hero-bg-text {
    display: none;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-btns {
    flex-direction: column;
  }
  .phone-link {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
  }
  .area-chip {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .contact-meta {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .wa-fab {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
  }
  .wa-fab svg {
    width: 26px;
    height: 26px;
  }
  .wa-fab-tooltip {
    display: none;
  }
}

[dir="rtl"] .hero-inner {
  text-align: right;
}
[dir="rtl"] .faq-q {
  flex-direction: row-reverse;
}
[dir="rtl"] .wa-fab {
  right: auto;
  left: 1.5rem;
}
[dir="rtl"] .wa-fab-tooltip {
  right: auto;
  left: 68px;
}
[dir="rtl"] .wa-fab-tooltip::after {
  right: auto;
  left: -5px;
  border-left: none;
  border-right-color: var(--black);
}
[dir="rtl"] .why-item {
  border-left: none;
  border-right: 3px solid var(--gold);
}
[dir="rtl"] .service-card .popular-tag {
  right: auto;
  left: 1rem;
}
[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}
.call-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.call-modal-overlay.active {
  display: flex;
}
.call-modal-box {
  background: #1a1a2e;
  border: 1px solid rgba(255, 200, 0, 0.25);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 340px;
  width: 90%;
  position: relative;
  text-align: center;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    transform: scale(0.88);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.call-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.call-modal-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.call-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.call-modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.3);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.call-modal-btn:hover {
  background: rgba(255, 200, 0, 0.2);
  border-color: rgba(255, 200, 0, 0.6);
}
.call-num {
  color: #ffd000;
  font-size: 1.05rem;
  font-weight: 700;
}
.call-sub {
  color: #bbb;
  font-size: 0.78rem;
}
.call-modal-wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}
.call-modal-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.6);
}
.call-modal-wa .call-num {
  color: #25d366;
}
button.phone-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.phone-reveal {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  vertical-align: middle;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
button.phone-link:hover .phone-reveal,
button.phone-link:focus .phone-reveal {
  max-width: 280px;
  opacity: 1;
}
button.nav-cta,
button.mobile-menu-cta {
  font-family: inherit;
  cursor: pointer;
}
.area-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(14, 14, 14, 0.75);
  backdrop-filter: blur(8px);

  justify-content: center;
  align-items: center;
}

.area-modal-overlay.active {
  display: flex;
}

.area-modal-box {
  width: calc(100vw - 24px);
  max-width: 420px;

  max-height: 85vh;
  overflow-y: auto;

  background: #fff;
  border-radius: 20px;
  border: 2px solid var(--gold);

  padding: 1.5rem;
  position: relative;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(245, 200, 66, 0.15);

  animation: modalIn 0.25s ease;
}

.area-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;

  border: none;
  background: none;

  font-size: 22px;
  color: #666;
  cursor: pointer;
}

.area-modal-close:hover {
  color: var(--gold-dark);
}

#areaModalTitle {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;

  color: var(--black);

  margin-bottom: 1rem;
  padding-bottom: 0.8rem;

  border-bottom: 2px solid rgba(245, 200, 66, 0.25);
}

#areaModalList {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

#areaModalList li {
  background: var(--light-bg);
  border: 1px solid #e8e6e0;
  border-radius: 12px;

  padding: 0.8rem 1rem;

  font-size: 0.95rem;
  line-height: 1.4;

  word-break: break-word;
}

#areaModalList li:hover {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.08);

  transform: translateX(4px);
}
@media (max-width: 768px) {
  .area-modal-box {
    width: calc(100vw - 20px);
    max-height: 80vh;

    padding: 1.25rem;
    border-radius: 16px;
  }

  #areaModalTitle {
    font-size: 1.15rem;
    padding-right: 28px;
  }

  #areaModalList li {
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
  }

  .area-modal-close {
    top: 12px;
    right: 12px;
    font-size: 20px;
  }
}
.area-modal-box::-webkit-scrollbar {
  width: 6px;
}

.area-modal-box::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 20px;
}

.breadcrumb-bar {
  background: var(--black);
  border-bottom: 1px solid #2a2a2a;
}
.breadcrumb-inner {
  padding: 1rem 3rem;
  font-size: 0.85rem;
}
.breadcrumb-inner a {
  color: #999;
  text-decoration: none;
}
.breadcrumb-inner a:hover {
  color: var(--gold);
}
.breadcrumb-inner [aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}
.breadcrumb-inner span[aria-hidden="true"] {
  color: #555;
  margin: 0 0.4rem;
}
@media (max-width: 640px) {
  .breadcrumb-inner {
    padding: 0.85rem 1.25rem;
  }
}

.section-more {
  margin-top: 2.5rem;
}

*/ .page-sub .services,
.page-sub .areas,
.page-sub #why,
.page-sub .faq,
.page-sub .contact-section {
  background: var(--light-bg);
}

.page-sub .contact-section {
  color: var(--black);
}
.page-sub .contact-section .section-title {
  color: var(--black);
}
.page-sub .contact-sub {
  color: var(--gray);
}
.page-sub .contact-meta {
  border-top-color: #ddd;
}
.page-sub .contact-meta-label {
  color: #999;
}
.page-sub .contact-meta-val {
  color: var(--black);
}
