/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0b1d35;
  --blue:    #12376e;
  --mid:     #1a5276;
  --gold:    #c8973e;
  --gold-lt: #e2b96b;
  --white:   #ffffff;
  --off:     #f4f6f8;
  --gray:    #6b7a8d;
  --text:    #1e2d3d;
  --border:  rgba(200,151,62,0.25);
  --shadow:  0 8px 40px rgba(11,29,53,0.14);
  --radius:  6px;
  --font:    'Inter', sans-serif;
  --serif:   'Playfair Display', serif;
  --nav-height: 76px;
  --nav-height-mobile: 72px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; }
h1,h2,h3,h4,p,a,li,span {
  max-width: 100%;
  overflow-wrap: break-word;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title.white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section-sub.white { color: rgba(255,255,255,0.75); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.nav-inner,
.hero-content,
.page-hero-content,
.about-content,
.why-content,
.cta-text,
.footer-grid > *,
.services-intro-grid > *,
.contact-grid > *,
.service-card,
.service-full-card,
.sfc-body {
  min-width: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  min-height: 46px;
  max-width: 100%;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,62,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 13px;
  cursor: pointer;
  transition: all .2s ease;
  text-transform: uppercase;
  line-height: 1;
}

.lang-btn + .lang-btn {
  border-left: 1px solid rgba(255,255,255,0.18);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-mobile .lang-switcher {
  border-color: rgba(255,255,255,0.15);
  width: fit-content;
  margin-top: 4px;
}

.nav-mobile .lang-btn {
  padding: 9px 18px;
  font-size: 12px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav.transparent .nav-inner { border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav.scrolled,
.nav.menu-open { background: var(--navy); box-shadow: 0 2px 30px rgba(0,0,0,0.25); }

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

.nav-logo-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.nav-logo-text strong { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.nav-logo-text span { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right .25s ease;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.nav-mobile { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(7, 18, 33, 0.88) 0%,
      rgba(11, 29, 53, 0.76) 45%,
      rgba(18, 55, 110, 0.55) 100%
    ),
    url('../img/bg.png') center/cover no-repeat;
  background-attachment: fixed;
}

/* Subtle vignette over bg image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 50%,
    transparent 30%,
    rgba(7, 18, 33, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,62,0.15);
  border: 1px solid rgba(200,151,62,0.4);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: 72px;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,151,62,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== ABOUT (HOME) ===== */
.about-home {
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-img-placeholder img {
  width: min(62%, 280px);
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-float strong { display: block; font-size: 36px; font-family: var(--serif); line-height: 1; }
.about-badge-float span { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; }

.about-content { padding-left: 16px; }

.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(200,151,62,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-point-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.about-point h4 { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-point p { font-size: 14px; color: var(--gray); }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--off); }

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub { margin: 0 auto; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 26px; height: 26px; fill: var(--white); }

.service-card h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: gap .2s;
}

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

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(200,151,62,0.05);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.why-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-feature-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-feature h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.why-feature p { font-size: 13px; color: rgba(255,255,255,0.6); }

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

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background .3s;
}

.why-card:hover { background: rgba(255,255,255,0.10); }

.why-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(200,151,62,0.2);
  border: 1px solid rgba(200,151,62,0.35);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg { width: 22px; height: 22px; fill: var(--gold); }

.why-card h4 { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--gold);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p { font-size: 16px; color: rgba(255,255,255,0.85); }

.btn-white {
  background: var(--white);
  color: var(--gold);
  white-space: nowrap;
}
.btn-white:hover { background: var(--off); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: #060f1c;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-link:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); margin-top: 2px; min-width: 16px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-reg { font-size: 12px; color: rgba(255,255,255,0.2); text-align: right; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(200,151,62,0.07);
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-breadcrumb a { color: var(--gold); }
.page-hero h1 { font-size: 56px; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 540px; }

/* ===== SERVICES PAGE ===== */
.services-intro { background: var(--white); }

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all .3s;
  display: flex;
  gap: 24px;
}

.service-full-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--border); }

.sfc-icon {
  width: 60px; height: 60px; min-width: 60px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfc-icon svg { width: 28px; height: 28px; fill: var(--white); }

.sfc-body h3 { font-family: var(--font); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sfc-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.sfc-body ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sfc-body ul li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}

.sfc-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== PROCESS ===== */
.process-section { background: var(--off); }

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

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.process-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--white); }

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

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info > div:first-child { grid-column: 1 / -1; }
.contact-info > div:last-child { grid-column: 1 / -1; }

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg { width: 22px; height: 22px; fill: var(--white); }

.contact-info-item h4 { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-info-item a { color: var(--gold); }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--off);
  border-radius: var(--radius);
  padding: 48px 44px;
}

.contact-form-wrap h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,62,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px; }

/* Success message */
.form-success {
  display: none;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #27ae60;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(30%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { max-width: 920px; }
  .section { padding: 84px 0; }
  .section-title { font-size: 36px; }
  .hero h1 { font-size: 56px; }
  .page-hero h1 { font-size: 44px; }

  .nav-links { gap: 24px; }

  .about-grid,
  .why-grid,
  .services-intro-grid,
  .contact-grid {
    gap: 56px;
  }

  .about-img-placeholder { height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { gap: 24px; }
  .service-full-card { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }

  h1,h2,h3,h4,p,a,li,span { overflow-wrap: anywhere; }

  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 30px; }
  .section-sub {
    font-size: 16px;
    max-width: none;
  }

  .btn {
    width: 100%;
    padding: 14px 22px;
  }

  .btn-white { white-space: normal; }

  .nav-inner { height: var(--nav-height-mobile); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-logo {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .nav-logo-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .nav-logo-text strong { font-size: 15px; }
  .nav-logo-text span {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .nav-mobile {
    display: flex;
    position: fixed;
    top: var(--nav-height-mobile); left: 0; right: 0;
    max-height: calc(100svh - var(--nav-height-mobile));
    overflow-y: auto;
    background: var(--navy);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

  .nav-mobile.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile .nav-link {
    font-size: 15px;
    padding: 8px 0;
  }

  .nav-mobile .btn { width: 100%; }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 128px 0 88px;
  }

  .hero-content { max-width: 100%; }
  .hero-badge {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 1.6px;
    padding: 7px 12px;
  }
  .hero h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-scroll { display: none; }

  .about-grid,
  .why-grid,
  .services-intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-info > div:first-child,
  .contact-info > div:last-child { grid-column: 1; }

  .about-content { padding-left: 0; }
  .about-img-placeholder { height: 320px; }
  .about-img-placeholder img { width: min(68%, 240px); }
  .about-badge-float {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 20px 24px;
  }

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

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    padding: 32px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-right: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 28px; }

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

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .page-hero {
    padding: 124px 0 68px;
  }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 16px; }

  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
  }

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

@media (max-width: 640px) {
  .service-full-card,
  .why-card,
  .contact-info-item {
    align-items: flex-start;
  }

  .service-full-card {
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius);
  }

  .process-num {
    width: 54px;
    height: 54px;
    min-width: 54px;
    margin-bottom: 0;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .section-label {
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .section-title { font-size: 26px; }
  .section-title br {
    display: none;
  }
  .hero {
    padding: 116px 0 76px;
  }
  .hero h1 {
    font-size: 30px;
    max-width: 13ch;
  }
  .hero-sub { font-size: 15px; }
  .page-hero {
    padding: 112px 0 56px;
  }
  .page-hero h1 { font-size: 30px; }
  .page-hero-breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
  }
  .about-img-placeholder { height: 260px; }
  .about-img-placeholder img { width: min(76%, 210px); }
  .about-point,
  .why-card,
  .contact-info-item,
  .footer-contact-item {
    gap: 14px;
  }
  .about-point-icon,
  .why-card-icon,
  .contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  .service-card,
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .sfc-icon,
  .service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3) { border-right: none; }
  .cta-strip { padding: 48px 0; }
  .cta-text h2 { font-size: 24px; }
  .footer {
    padding-top: 52px;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .nav-logo-text span { display: none; }
  .hero h1 { font-size: 28px; }
  .btn { padding-left: 18px; padding-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
