:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: #141414;
  --text: #ffffff;
  --muted: #c9c9c9;
  --accent: #f4f4f4;
  --accent-2: #9c9c9c;
  --silver-1: #f8f8f8;
  --silver-2: #d9d9d9;
  --silver-3: #adadad;
  --ok: #30d158;
  --warn: #ff9f0a;
  --danger: #ff453a;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #14162a 0%, var(--bg) 45%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
}

.modern-nav {
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  background:
    linear-gradient(125deg, rgba(44, 53, 99, 0.58), rgba(14, 14, 18, 0.74)),
    rgba(8, 8, 12, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

.modern-nav .container {
  width: 100%;
  max-width: none;
  padding: 0 1.25rem;
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: 0.8px;
  margin-left: 0.35rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.brand-line-main {
  display: block;
  white-space: nowrap;
}

.brand-line-sub {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.82em;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  margin-left: auto;
  gap: 0.05rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.menu a {
  padding: 0.5rem 0.62rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: all .25s ease;
}

.menu .phone-link {
  margin-left: 0.45rem;
}

.menu a:hover, .menu a.active {
  color: var(--text);
  background: linear-gradient(120deg, rgba(248, 248, 248, 0.24), rgba(156, 156, 156, 0.26));
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.hamburger-icon {
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 2px;
  transition: background .22s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}

.hamburger-icon::before {
  top: -7px;
}

.hamburger-icon::after {
  top: 7px;
}

.modern-nav.menu-open .hamburger-icon {
  background: transparent;
}

.modern-nav.menu-open .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.modern-nav.menu-open .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.phone-link::before {
  content: "📞";
  color: #fff;
  font-size: 0.98em;
  line-height: 1;
}

.hero {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}

.hero-showcase {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #090a12;
  border: 0;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/hero-banner.webp") center center / cover no-repeat;
  transform: scale(1);
  transition: filter 1.2s ease;
  filter: saturate(1.05) contrast(1.03) brightness(0.9);
  animation: heroZoomInOut 14s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 75% 78%, rgba(120, 140, 255, 0.13), transparent 42%),
    linear-gradient(rgba(10, 9, 20, 0.56), rgba(10, 9, 20, 0.62));
  z-index: -1;
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  padding: 6rem 1rem 2rem;
}

.hero-overlay-card {
  max-width: 860px;
  position: absolute;
  top: 44%;
  left: 62%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-overlay-card h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(1.8rem, 5vw, 4rem);
  letter-spacing: 0.5px;
}

.hero-title-top {
  white-space: nowrap;
}

.hero-overlay-card p {
  margin: 0.8rem 0 1.3rem;
  font-size: clamp(0.95rem, 1.45vw, 1.5rem);
  letter-spacing: 3px;
  color: #ececec;
}

.hero-btn {
  background: linear-gradient(120deg, var(--silver-1), var(--silver-2), var(--silver-3));
  color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(180, 180, 180, 0.25);
  border-radius: 6px;
  padding: 0.75rem 1.8rem;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

.hero-card {
  width: min(900px, 100%);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.92), rgba(8, 8, 8, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.3rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  animation: floatIn .8s ease both;
}

.hero-badges {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
}

.glow {
  background: linear-gradient(90deg, var(--silver-1), var(--silver-2), var(--silver-3));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: wave 4s linear infinite;
}

.lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  padding: 0.72rem 1.2rem;
  color: #111;
  font-weight: 700;
  background: linear-gradient(120deg, var(--silver-1), var(--silver-2), var(--silver-3));
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 26px rgba(180, 180, 180, 0.35);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.5) 50%, transparent 78%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(180, 180, 180, 0.44);
}

.btn:hover::after {
  transform: translateX(130%);
}

.grid {
  display: grid;
  gap: 1rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.5);
}

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

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
}

.stat-label {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-card {
  overflow: hidden;
  padding: 0;
  transform: translateY(0);
  transition: transform .25s ease, border-color .25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 220, 220, 0.5);
}

.project-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #111;
  display: block;
}

.project-body {
  padding: 1rem;
}

.status {
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.status.devam-ediyor {
  background: rgba(255, 159, 10, 0.2);
  color: var(--warn);
}

.status.tamamlandi {
  background: rgba(48, 209, 88, 0.2);
  color: var(--ok);
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery img, .gallery video, .gallery iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.gallery img {
  cursor: zoom-in;
}

.detail-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.project-map {
  width: 100%;
  min-height: 360px;
  height: 360px;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: .9rem;
  color: var(--muted);
}

input, textarea, select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.muted {
  color: var(--muted);
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 57, 120, 0.25), transparent 34%),
    radial-gradient(circle at 85% 90%, rgba(85, 85, 85, 0.2), transparent 38%),
    #06070d;
}

.admin-login-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 57, 120, 0.22), transparent 34%),
    radial-gradient(circle at 85% 90%, rgba(85, 85, 85, 0.18), transparent 38%),
    #06070d;
}

.admin-login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("/assets/logo.png") center center / min(56vw, 620px) no-repeat,
    url("/assets/logo.svg") center center / min(56vw, 620px) no-repeat;
  filter: grayscale(1) brightness(1.6);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.admin-login-main {
  position: relative;
  z-index: 1;
}

.admin-login-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.42);
}

.admin-shell {
  display: grid;
  gap: 1rem;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.admin-top h2 {
  margin: 0.35rem 0 0.35rem;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #161616;
  background: linear-gradient(120deg, var(--silver-1), var(--silver-2), var(--silver-3));
}

.admin-logout-btn {
  min-width: 120px;
}

.admin-create-card {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.admin-card-head h3 {
  margin: 0;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  background: rgba(8, 8, 8, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(220, 220, 220, 0.7);
  box-shadow: 0 0 0 3px rgba(220, 220, 220, 0.12);
}

.admin-message {
  margin-top: 0.7rem;
  min-height: 1.1rem;
}

.admin-list-section {
  padding-top: 0.8rem;
}

.admin-list .list-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-color: rgba(255, 255, 255, 0.16);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border-left: 2px solid rgba(220, 220, 220, 0.6);
  padding: 0.2rem 0 0.2rem 1rem;
}

.timeline-item h3 {
  margin: 0 0 0.35rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.split.reverse .split-media {
  order: 2;
}

.split.reverse .split-content {
  order: 1;
}

.split-media {
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: #0c0c0c;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease, filter .8s ease;
}

.split:hover .split-media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.split-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h3 {
  margin: 0 0 .6rem;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.split-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-item h3 {
  margin: 0 0 0.4rem;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  margin: 0;
}

.table-like {
  display: grid;
  gap: 0.6rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.8rem;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.cta {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.2rem;
}

.cta h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 0.8rem;
}

.list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.admin-project-meta {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.admin-project-cover {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0c;
}

.edit-box {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .6, .2, 1);
}

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

.footer {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(79, 104, 214, 0.16), transparent 36%),
    radial-gradient(circle at 84% 84%, rgba(180, 180, 180, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(18, 19, 30, 0.96), rgba(20, 20, 20, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}

.footer:hover::before {
  transform: translateX(120%);
  transition: transform 1.4s ease;
}

.footer-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.6rem 0 1.2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.05rem;
}

.footer-top section {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1rem 1rem 0.95rem;
  backdrop-filter: blur(8px);
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-text {
  margin: 0;
  color: #dbdbdb;
  line-height: 1.75;
}

.footer-subtitle {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.footer-links {
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  color: #d7d7d7;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.footer-links a:hover {
  color: #fff;
  opacity: 1;
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 0.42rem;
}

.footer-contact a,
.footer-contact span {
  color: #d7d7d7;
  line-height: 1.6;
}

.footer-contact a {
  transition: color .2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  color: #b8b8b8;
  font-size: 0.92rem;
}

.footer-bottom span:last-child {
  text-align: right;
}

.footer-credit {
  color: #e0e0e0;
  text-align: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: color .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
}

.footer-credit:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes wave {
  to {
    background-position: 200% 0;
  }
}

@keyframes heroZoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0;
  }
  .nav-toggle {
    display: inline-flex;
    align-self: flex-end;
  }
  .menu {
    display: none;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-top: 0.4rem;
    flex-wrap: nowrap;
  }
  .modern-nav.menu-open .menu {
    display: flex;
  }
  .modern-nav.menu-open .menu a {
    width: 100%;
    text-align: left;
  }
  .phone-link {
    font-size: 0.95rem;
  }
  .hero-showcase {
    min-height: 560px;
  }
  .hero-showcase::before {
    animation: none;
  }
  .hero-overlay-content {
    padding-top: 7rem;
  }
  .hero-overlay-card {
    position: static;
    transform: none;
    margin: 0 auto;
    text-align: center;
    max-width: 92%;
    padding-top: 5.5rem;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media,
  .split.reverse .split-content {
    order: initial;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .admin-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top section {
    padding: 0.95rem;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom span:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase::before,
  .btn::after,
  .fade-up,
  .card,
  .split-media img {
    animation: none !important;
    transition: none !important;
  }
}
