/* =========================================
   UNION COUNTY — Main Stylesheet
   Dark Cinematic Theme
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:   #0a0a0a;
  --bg-secondary: #111111;
  --bg-card:      #161616;
  --bg-card-hover:#1e1e1e;
  --gold:         #c9a96e;
  --gold-light:   #e2c48a;
  --gold-dark:    #9a7a4a;
  --white:        #f5f5f0;
  --white-60:     rgba(245,245,240,0.6);
  --white-30:     rgba(245,245,240,0.3);
  --white-10:     rgba(245,245,240,0.08);
  --border:       rgba(245,245,240,0.1);
  --font-ko:      'Noto Sans KR', sans-serif;
  --font-en:      'Montserrat', sans-serif;
  --section-py:   120px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       4px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-ko);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  overflow: visible;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

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

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--white-60);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white-60);
  transition: color var(--transition);
  position: relative;
  padding: 8px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* =========================================
   NAV DROPDOWN
   ========================================= */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-caret {
  font-size: 0.6rem;
  margin-left: 2px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: rgba(16,16,16,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  color: var(--white-60);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { background: var(--white-10); color: var(--white); }
.nav-dropdown-item.active-item { color: var(--gold); background: rgba(201,169,110,0.06); }

.nav-dropdown-item > i {
  font-size: 1rem;
  color: var(--gold);
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-dropdown-item > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: inherit;
}

.nav-dropdown-item small {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--white-30);
  white-space: nowrap;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ko);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}

.btn-primary:hover::before { transform: scaleX(1); }

.btn-primary span,
.btn-primary i { position: relative; z-index: 1; }

.btn-primary:hover { color: #0a0a0a; }
.btn-primary.full { width: 100%; justify-content: center; }

/* =========================================
   SECTION COMMON
   ========================================= */
.section-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-ko);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title.center { text-align: center; }
.section-sub { color: var(--white-60); margin-bottom: 64px; }
.section-sub.center { text-align: center; }
.accent { color: var(--gold); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #111 0%, #050505 60%, #0d0905 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.film-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease both;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-ko);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-title-accent {
  color: var(--gold);
  display: inline-block;
  position: relative;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 48px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--white-30);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white-30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 2;
  text-align: center;
  border: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--white-10);
  backdrop-filter: blur(8px);
}

.hero-badge span {
  display: block;
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-badge small {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--white-60);
  text-transform: uppercase;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

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

.about-desc {
  color: var(--white-60);
  font-size: 0.95rem;
  margin-bottom: 48px;
  line-height: 1.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white-10);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--gold-dark);
  background: rgba(201,169,110,0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  position: sticky;
  top: 100px;
}

.stat-card {
  background: var(--bg-card);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-card:hover { background: var(--bg-card-hover); }
.stat-card.highlight { background: rgba(201,169,110,0.1); }

.stat-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--white-60);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  padding: 56px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  font-size: 1.4rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.8;
  flex: 1;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 14px; }

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.25s; }
.process-step:nth-child(3) { transition-delay: 0.4s; }
.process-step:nth-child(4) { transition-delay: 0.55s; }

.step-line-before,
.step-line-after { display: none; }

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-circle {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,169,110,0.05);
}

.step-num {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white-60);
  font-size: 0.9rem;
}

.contact-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

.contact-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 56px 48px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.contact-cta-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-cta-desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-btn { width: 100%; justify-content: center; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}

.footer-brand .logo-main {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--white-60);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--white-30);
  letter-spacing: 0.03em;
}

.footer-right {
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE — Tablet (≤ 1024px)
   ========================================= */
@media (max-width: 1280px) {
  .nav-link { font-size: 0.75rem; padding: 8px 9px; letter-spacing: 0.02em; }
  .logo-sub { display: none; }
  .nav-inner { padding: 0 24px; }
}

@media (max-width: 1100px) {
  .nav-link { font-size: 0.72rem; padding: 8px 7px; letter-spacing: 0.01em; }
  .nav-inner { padding: 0 20px; }
}

@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 16px; gap: 4px; }
  .nav-link { font-size: 0.7rem; padding: 8px 6px; letter-spacing: 0; }
  .logo-sub { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stats { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-badge { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}

/* =========================================
   RESPONSIVE — Mobile (≤ 1080px) — 햄버거 메뉴 전환
   ========================================= */
@media (max-width: 1080px) {
  :root { --section-py: 64px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 60px 40px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; padding: 4px 0; letter-spacing: 0.06em; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Mobile nav dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    border: none;
    border-top: 1px solid var(--border);
    border-left: 2px solid var(--gold);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    margin-top: 8px;
    margin-left: 16px;
    display: none;
    min-width: unset;
    width: 100%;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { padding: 12px 16px; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 32px 20px; }
  .stat-num { font-size: 2.2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .contact-cta-box { padding: 40px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-nav { gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
}
