:root {
  --sky: #eaf4ff;
  --blue: #0b4ed3;
  --blue-deep: #0d2e6c;
  --teal: #7fd6d1;
  --teal-soft: #d9f1ef;
  --navy: #0d1834;
  --text: #1f2836;
  --muted: #607088;
  --light: #f7f9fb;
  --white: #ffffff;
  --red: #ea3e50;
  --shadow: 0 18px 35px rgba(20, 34, 64, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: #fff;
  color: var(--text);
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  background: var(--sky);
  border-bottom: 1px solid rgba(13, 46, 108, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.brand-text {
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a,
.nav .services-link {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav a.active { color: var(--blue); }
.services-menu { position: relative; }
.services-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid rgba(13, 46, 108, 0.1);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.services-menu.open .services-dropdown,
.services-menu:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.services-dropdown a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: 8px;
}
.services-dropdown a:hover { background: var(--teal-soft); }
.menu-toggle { display: none; }

.landing-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px 30px;
}
.hero-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: linear-gradient(180deg, #f3f8ff 0%, #ebf5f5 100%);
  border: 1px solid rgba(13, 46, 108, 0.08);
  overflow: hidden;
  margin-top: 26px;
}
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.hero-dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--white);
}
.hero-copy-panel {
  background: linear-gradient(135deg, rgba(154, 229, 227, 0.3), rgba(255,255,255,0.92));
  padding: 60px 46px 50px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mini-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-line span:first-child {
  color: var(--red);
  font-size: 1.4rem;
}
.hero-copy-panel h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--blue-deep);
}
.hero-copy-panel h1 span {
  font-weight: 700;
}
.hero-copy-panel p {
  margin: 0 0 28px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 160px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(11, 78, 211, 0.28);
}

.welcome-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  background: #fff;
  padding: 42px 18px 20px;
  align-items: center;
}
.welcome-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--teal-soft);
  box-shadow: var(--shadow);
  margin-left: 12px;
}
.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.welcome-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.welcome-header h2 {
  width: 100%;
  margin: 0 0 4px;
  font-size: clamp(1.8rem, 2vw, 3rem);
  line-height: 1.2;
  color: var(--blue-deep);
  font-weight: 700;
}
.welcome-header h2 span { color: var(--blue); }
.small-btn {
  display: inline-flex;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
}
.welcome-text p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.services-section {
  padding: 42px 0 18px;
}
.section-title-center {
  text-align: center;
  margin-bottom: 18px;
}
.section-title-center h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 2.5vw, 2.7rem);
  font-family: "Playfair Display", Georgia, serif;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(13, 46, 108, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.service-card p {
  margin: 0;
  padding: 14px 12px 18px;
  text-align: center;
  font-weight: 600;
  color: var(--blue-deep);
}

.why-us-section {
  max-width: 1280px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, #0e72d3 0%, #0d5ec5 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 60px rgba(11, 78, 211, 0.18);
}
.why-us-left {
  padding: 52px 48px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-us-left h3 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.02em;
}
.why-us-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.94);
  font-size: 1rem;
}
.why-us-left li {
  position: relative;
  padding-left: 32px;
}
.why-us-left li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #dff9ff;
  font-size: 0.8rem;
  font-weight: 700;
}
.why-us-right {
  min-height: 420px;
  position: relative;
  background: rgba(255,255,255,0.08);
}
.why-us-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  transform: scale(1.01);
}

.video-banner {
  max-width: 1060px;
  margin: 40px auto 0;
  padding: 18px 28px 26px;
  border-top: 1px solid rgba(13, 46, 108, 0.08);
  border-bottom: 1px solid rgba(13, 46, 108, 0.08);
  text-align: center;
}
.video-tag {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: #0f1724;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.video-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.video-banner h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.6rem);
  color: var(--blue-deep);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}
.play-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #0f1724, #243b69);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(13, 24, 52, 0.12);
}

.contact-showcase {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 28px;
  padding: 46px 0 18px;
  align-items: center;
}
.contact-info-box {
  background: #f8fafc;
  border: 1px solid rgba(13, 46, 108, 0.08);
  padding: 26px 26px 18px;
  box-shadow: var(--shadow);
}
.contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.info-stacks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stack-item {
  min-width: 110px;
}
.stack-item span {
  display: block;
  font-size: 1.8rem;
  color: var(--blue-deep);
  font-weight: 700;
}
.stack-item label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-tags {
  align-self: center;
}
.info-tags span {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
}
.info-column p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}
.phone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--blue-deep);
  font-weight: 600;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-weight: 600;
  color: var(--blue-deep);
}
.form-row input {
  width: 100%;
  border: 1px solid rgba(13, 46, 108, 0.2);
  background: var(--white);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}
.lead-form button {
  width: fit-content;
  margin-top: 8px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  padding: 11px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-side-image {
  overflow: hidden;
  background: var(--light);
  min-height: 440px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.contact-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-section {
  margin-top: 24px;
  padding: 18px 16px 28px;
  text-align: center;
}
.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
}
.city-grid span {
  background: #f3f7ff;
  border: 1px solid rgba(13, 46, 108, 0.08);
  padding: 12px 8px;
  font-size: 0.84rem;
  color: var(--blue-deep);
  font-weight: 600;
}
.see-more {
  margin-top: 18px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}

.gallery-section {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 12px 18px 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.gallery-item {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(13, 46, 108, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: #f8fbff;
}
.gallery-logo img {
  object-fit: contain;
  background: #f1f7ff;
  padding: 20px;
}

.site-footer {
  background: #0d1834;
  color: rgba(255,255,255,0.92);
  padding: 34px 18px 18px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand h4 {
  margin: 0;
  font-size: 1.1rem;
}
.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-links {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}
.footer-links h5 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-bottom {
  max-width: 1280px;
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
}

.about-page {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  color: var(--text);
}

.about-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 22px 90px;
}

.about-intro {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-intro h1 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.about-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.about-detail {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 46, 108, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 14px 28px rgba(13, 46, 108, 0.06);
}

.about-detail h2 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 1.3rem;
  line-height: 1.35;
}

.about-detail p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.about-summary {
  max-width: 1040px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-page {
  background: linear-gradient(180deg, #f6f9ff 0%, #eef8f7 100%);
  color: var(--text);
}

.service-page .site-header {
  background: var(--sky);
}

.service-page .service-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 22px 100px;
}

.service-page .section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-page .service-main h1 {
  margin: 0 0 30px;
  color: var(--blue-deep);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-family: "Playfair Display", Georgia, serif;
}

.service-page .service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 46, 108, 0.08);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(16, 45, 94, 0.06);
}

.service-page .service-form {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  background: #fff;
  border: 1px solid rgba(13, 46, 108, 0.08);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 28px rgba(16,45,94,0.05);
}

.service-page .form-kicker {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: var(--blue-deep);
}

.service-page .form-note {
  margin: 0 0 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

.service-page .service-form label {
  margin: 14px 0 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.service-page .service-form input,
.service-page .service-form textarea {
  width: 100%;
  border: 1px solid #dce7f5;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  resize: vertical;
}

.service-page .service-form input:focus,
.service-page .service-form textarea:focus {
  outline: none;
  border-color: #5dc3c7;
  box-shadow: 0 0 0 3px rgba(93, 195, 199, 0.18);
}

.service-page .service-form button {
  align-self: flex-start;
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d2e6c, #0f57d6);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.service-page .service-panels {
  display: grid;
  gap: 18px;
}

.service-page .service-panel {
  min-height: 200px;
  border-radius: 20px;
  padding: 26px 22px;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(16, 45, 94, 0.12);
}

.service-page .service-panel h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--white);
}

.service-page .service-panel p,
.service-page .service-panel li {
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-page .service-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.service-page .panel-blue {
  background: linear-gradient(135deg, #2b5fe0, #1d7fe3);
}

.service-page .panel-green {
  background: linear-gradient(135deg, #59b68b, #7ccf8f);
}

.service-page .benefits {
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(13, 46, 108, 0.08);
  border-radius: 24px;
  padding: 26px 18px 12px;
  box-shadow: 0 14px 28px rgba(16,45,94,0.05);
}

.service-page .benefits > p {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 1.8rem;
  font-family: "Playfair Display", Georgia, serif;
}

.service-page .benefits > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-page .benefits article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #f5f9ff;
  border: 1px solid rgba(13, 46, 108, 0.06);
  border-radius: 18px;
  padding: 18px 12px;
  color: var(--blue-deep);
}

.service-page .benefits article span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfebff, #edf6ff);
  color: var(--blue-deep);
  font-weight: 700;
}

.service-page .benefits article strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.service-page .site-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .nav-wrap { position: relative; }
  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(13,46,108,0.14);
    background: rgba(255,255,255,0.7);
    color: var(--blue-deep);
    font-size: 1.4rem;
    border-radius: 8px;
    cursor: pointer;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    background: var(--white);
    padding: 20px;
    border: 1px solid rgba(13,46,108,0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .services-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 12px;
    box-shadow: none;
    border: 0;
    background: #f5f9ff;
  }
  .services-menu.open .services-dropdown { display: block; }

  .hero-panel,
  .welcome-panel,
  .why-us-section,
  .contact-showcase,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy-panel { padding: 38px 22px 32px; }
  .welcome-photo { margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .city-grid { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
}

@media (max-width: 560px) {
  .landing-page { padding: 0 12px 30px; }
  .brand img { width: 64px; height: 64px; }
  .nav-wrap { padding: 12px 14px; }
  .brand-text { font-size: 0.8rem; }
  .hero-main-image { min-height: 280px; }
  .hero-copy-panel h1 { font-size: 2.2rem; }
  .welcome-panel { padding-top: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-left { padding: 34px 22px; }
  .video-banner { padding: 12px 16px 18px; }
  .video-title-wrap { gap: 14px; }
  .play-btn { width: 64px; height: 64px; }
  .contact-info-box { padding: 20px 18px; }
  .contact-header { flex-direction: column; }
  .city-grid { grid-template-columns: repeat(2, minmax(110px, 1fr)); }
  .footer-brand, .footer-links { width: 100%; }
  .footer-links { gap: 20px; }
}
