/* ══════════════════════════════════════════════════
   GOBI AIRCON SERVICES — Stylesheet
   Palette:
     Deep steel blue  : #0D2C4E
     Mid navy         : #163A5F
     Ice white        : #F5F9FF
     Cool grey        : #8A9BB0
     Cyan accent      : #00B4D8
     Amber CTA        : #FF8C00
     Off-white        : #EDF2F7
     Dark surface     : #091E35
══════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Inter', sans-serif;
  background: #F5F9FF;
  color: #0D2C4E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00B4D8;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0D2C4E;
  margin-bottom: 1.2rem;
}

.section-intro {
  font-size: 1.05rem;
  color: #4A6480;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.body-text {
  font-size: 1rem;
  color: #4A6480;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: linear-gradient(135deg, #d0dde8 0%, #b8cbd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.15) 20px,
    rgba(255,255,255,0.15) 22px
  );
}

.ph-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b8ba8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.55);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px dashed #8ab0c8;
}

.ph-label small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #7a9ab8;
  margin-top: 0.2rem;
  text-transform: none;
}

/* ── CUSTOM IMAGES ── */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.gallery-item.large .gallery-img {
  min-height: 430px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-primary {
  background: #FF8C00;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,140,0,0.3);
}

.btn-primary:hover {
  background: #e67d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,140,0,0.38);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.inline-link {
  color: #00B4D8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: #0D2C4E;
  padding: 0.8rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.logo-text span {
  color: #00B4D8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .nav-cta {
  background: #FF8C00;
  color: #fff;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: #e67d00;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3a5c 0%, #0a2040 100%);
}

.hero-bg-placeholder .ph-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,30,53,0.88) 0%,
    rgba(9,30,53,0.65) 55%,
    rgba(9,30,53,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00B4D8;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-headline .accent-cyan {
  color: #00B4D8;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}

.stat span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}

/* Diagonal slash accent */
.hero-slash {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #F5F9FF;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  background: #F5F9FF;
}

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

.about-img-col {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 6px;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #0D2C4E;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(13,44,78,0.25);
}

.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #2a4a6a;
  font-weight: 500;
}

.list-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background: #EDF2F7;
}

.slash-bg-top,
.slash-bg-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  background: #F5F9FF;
  z-index: 1;
}

.slash-bg-top {
  top: -2px;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.slash-bg-bottom {
  bottom: -2px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.slash-bg-top.dark,
.slash-bg-bottom.dark {
  background: #F5F9FF;
}

.services .container {
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,44,78,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,44,78,0.15);
}

.service-img-wrap {
  position: relative;
}

.service-img-placeholder {
  width: 100%;
  height: 200px;
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0D2C4E;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.service-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #EDF6FB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid #d0e8f2;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0D2C4E;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 0.9rem;
  color: #4A6480;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-list li {
  font-size: 0.85rem;
  color: #2a4a6a;
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #00B4D8;
  font-weight: 700;
}

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-us {
  background: #F5F9FF;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  border-radius: 7px;
  padding: 2rem 1.75rem;
  border: 1px solid #dce8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: #00B4D8;
  box-shadow: 0 4px 20px rgba(0,180,216,0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e6f7fb 0%, #cef0f7 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0D2C4E;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 0.88rem;
  color: #4A6480;
  line-height: 1.65;
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery {
  background: #0D2C4E;
}

.gallery .section-eyebrow {
  color: #00B4D8;
}

.gallery .section-title {
  color: #fff;
}

.gallery .section-intro {
  color: rgba(255,255,255,0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-row: 1 / 3;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #163A5F 0%, #0D2C4E 100%);
}

.gallery-item.large .gallery-placeholder {
  min-height: 430px;
}

.gallery-placeholder .ph-label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.15);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(9,30,53,0.85));
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.75rem;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact {
  background: #091E35;
  padding: 100px 0;
  position: relative;
}

.contact .slash-bg-top {
  background: #0D2C4E;
}

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

.section-eyebrow.light {
  color: #00B4D8;
}

.section-title.light {
  color: #fff;
}

.body-text.light {
  color: rgba(255,255,255,0.6);
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  transition: color 0.2s;
}

a.contact-value:hover {
  color: #00B4D8;
}

/* ── FORM ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2a4a6a;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #0D2C4E;
  background: #F5F9FF;
  border: 1.5px solid #d0dde8;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0b4c5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00B4D8;
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: #8A9BB0;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 1rem;
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0D2C4E;
}

.form-success p {
  font-size: 0.95rem;
  color: #4A6480;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: #050F1A;
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00B4D8;
}

.footer-services li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-address {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0D2C4E;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    border-radius: 0;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero */
  .hero-content {
    padding: 100px 1.5rem 60px;
  }

  .hero-actions {
    flex-direction: column;
    width: fit-content;
  }

  .hero-stats {
    gap: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge {
    right: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
    display: inline-flex;
  }
}

/* ══════════════════════════════════
   REDUCED MOTION
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
