/* SkyLine Global — layout & theme (multi-page) */
:root {
  /* Brand palette — SkyLine Global logo (royal blue, sky blue, gold) */
  --brand-royal: #1a4a8c;
  --brand-sky: #4eb8f0;
  --bg: #050a14;
  --bg-elevated: #0c1628;
  --surface: #122038;
  --surface-2: #182a48;
  --text: #eef2f9;
  --text-muted: #8fa3be;
  --accent: #e9b82d;
  --accent-2: var(--brand-sky);
  --accent-soft: rgba(233, 184, 45, 0.14);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --max: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-animate,
  .rich-card,
  .stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 28, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(78, 184, 240, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

/* Official wordmark + globe mark */
.logo.logo-img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo.logo-img:hover {
  opacity: 0.92;
  text-decoration: none;
}

.logo.logo-img img {
  height: 48px;
  width: auto;
  max-width: min(58vw, 240px);
  object-fit: contain;
  display: block;
}

.logo.logo-img.footer-logo img {
  height: 40px;
  max-width: 200px;
}

@media (max-width: 480px) {
  .logo.logo-img img {
    height: 40px;
    max-width: min(62vw, 200px);
  }

  .logo.logo-img.footer-logo img {
    height: 34px;
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-cta {
  padding: 0.45rem 1rem !important;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border: 1px solid rgba(232, 184, 74, 0.38) !important;
  border-bottom: 1px solid rgba(232, 184, 74, 0.38) !important;
}

.nav-cta:hover {
  background: rgba(232, 184, 74, 0.2);
}

.site-nav a.nav-cta.is-active {
  background: rgba(232, 184, 74, 0.22);
  border-color: rgba(232, 184, 74, 0.55) !important;
  color: #ffe6a8 !important;
}

.cta-row {
  margin-top: 1.25rem;
}

.cta-row-center {
  text-align: center;
  margin-top: 2rem;
}

.nav-cta.is-active {
  border-bottom-color: rgba(232, 184, 74, 0.6) !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -0.625rem;
}

.nav-toggle-bar::before {
  transform: translateY(-7px);
}

.nav-toggle-bar::after {
  transform: translateY(7px);
}

.nav-toggle.is-open .nav-toggle-bar {
  background: transparent;
}

.nav-toggle.is-open .nav-toggle-bar::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar::after {
  transform: translateY(0) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 4.25rem 1rem auto 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.35rem;
    border-bottom-width: 0;
  }

  .site-nav a.is-active {
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}

/* —— Home hero —— */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(4rem, 12vw, 7rem);
  overflow: hidden;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(5, 10, 20, 0.93) 0%, rgba(18, 32, 56, 0.58) 45%, rgba(5, 10, 20, 0.4) 100%),
    url("https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1920&q=80") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 15% 30%, rgba(78, 184, 240, 0.08), transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(233, 184, 45, 0.1), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero-animate {
  animation: fadeUp 0.9s var(--ease-out) both;
}

.hero-animate:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-animate:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-animate:nth-child(4) {
  animation-delay: 0.22s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero .accent {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(238, 242, 249, 0.82);
  margin: 0 0 1.85rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-badge {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(22, 34, 54, 0.65);
  backdrop-filter: blur(8px);
}

/* —— Inner page hero —— */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 7.5rem 0 3rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.2) 0%, rgba(8, 13, 24, 0.88) 75%, var(--bg) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  max-width: 20ch;
}

.page-hero-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-hero-flights .page-hero-bg {
  background-image: url("../assets/flightbanner.jpg");
}

.page-hero-hotels .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80");
}

.page-hero-visa .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80");
}

.page-hero-packages .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920&q=80");
}

.page-hero-contact .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1423666144342-433219939e58?w=1920&q=80");
}

.page-hero-about .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?w=1920&q=80");
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: -1px;
  background: linear-gradient(180deg, transparent, rgba(22, 34, 54, 0.35));
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.45rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #f0c65c 0%, var(--accent) 100%);
  color: #1a1408;
  box-shadow: 0 8px 28px rgba(232, 184, 74, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: rgba(232, 184, 74, 0.45);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.25rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Rich cards (image + content) */
.rich-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.rich-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.rich-card-img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--surface-2);
}

.rich-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rich-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
}

.rich-card-body p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.rich-card-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}

.rich-card-link:hover {
  text-decoration: underline;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.feature-row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 880px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), #c99a2e);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* CTA strip */
.cta-strip {
  position: relative;
  padding: clamp(2.75rem, 6vw, 3.75rem) 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 100% 50%, rgba(110, 200, 255, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(232, 184, 74, 0.1), transparent 45%),
    var(--bg-elevated);
  z-index: 0;
}

.cta-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 0 0 0.35rem;
}

.cta-strip p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Visa */
.visa-panel {
  max-width: 44rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem 1.85rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.visa-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.visa-list li {
  margin-bottom: 0.65rem;
}

.visa-list strong {
  color: var(--text);
}

.visa-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Packages */
.packages .package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.packages .package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card-featured {
  border-color: rgba(232, 184, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 184, 74, 0.1), var(--shadow-soft);
}

.package-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 0 0 0.35rem;
}

.package-meta {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.package-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.package-price {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.package-price strong {
  font-size: 1.5rem;
  color: var(--text);
}

.package-price .per {
  font-size: 0.85rem;
}

.package-price .currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.packages-india {
  border: 1px solid rgba(232, 184, 74, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(145deg, rgba(232, 184, 74, 0.06), transparent 40%);
}

.packages-india .section-head {
  margin-bottom: 2rem;
}

.grid.six {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 900px) {
  .grid.six {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact */
.contact-section {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow-soft);
}

.form-row.two {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.68rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(232, 184, 74, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field .error {
  display: block;
  min-height: 1.25rem;
  font-size: 0.8rem;
  color: #f0a0a0;
  margin-top: 0.25rem;
}

.contact-form button[type="submit"] {
  margin-top: 0.25rem;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  min-height: 1.5rem;
}

.form-status.success {
  color: #7dcea0;
}

.form-status.error {
  color: #f0a0a0;
}

.contact-aside {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
}

.contact-aside h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.contact-aside p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-aside strong {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aside-note {
  font-size: 0.85rem !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem !important;
}

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #060a12 100%);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand-block .logo.logo-img {
  margin-bottom: 0.65rem;
}

.footer-brand-block p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(238, 242, 249, 0.85);
  font-size: 0.93rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top {
  font-size: 0.9rem;
  font-weight: 600;
}
