/* ═══════════════════════════════════════════
   GURGAON GAS STOVE REPAIR — STYLE.CSS
═══════════════════════════════════════════ */

:root {
  --orange: #f05a22;
  --orange-dark: #d44d18;
  --orange-light: #fff4f0;
  --navy: #0d1f3c;
  --navy-2: #1a3255;
  --white: #ffffff;
  --gray: #f7f8fb;
  --gray-2: #eef0f5;
  --text: #1a1a2e;
  --text-2: #4a4a6a;
  --text-3: #7a7a9a;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --f: "Nunito", sans-serif;
  --f-body: "Lato", sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}



/* Logo container */
.nav-logo {
  display: flex;
  align-items: center;
  height: 70px;            /* navbar height ke equal rakho */
  text-decoration: none;
}

/* Logo image */
.logo-img {
  height: 55px;            /* 🔥 main control */
  width: auto;
  max-width: 180px;        /* long logo cut hone se bachane ke liye */
  object-fit: contain;
  display: block;
}

/* Hover (optional clean effect) */
.nav-logo:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.03);
  transition: 0.3s ease;
}




*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--transition),
    transform 0.75s var(--transition);
}
.reveal.delay-1 {
  transition-delay: 0.1s;
}
.reveal.delay-2 {
  transition-delay: 0.2s;
}
.reveal.delay-3 {
  transition-delay: 0.3s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 980px;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--transition);
  
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 90, 34, 0.35);
}
.btn-primary svg {
  fill: white;
}
.btn-outline {
  background: transparent;
  /* color: var(--navy); */
  color: white;
  /* border-color: var(--navy); */
  border-color: white;
}
.btn-outline:hover {
  /* background: var(--navy); */
  background: var(--orange-dark);
  color: white;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── FLOATING BUTTONS ── */
.float-call,
.float-whatsapp {
  position: fixed;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 980px;
  padding: 15px 18px;
  font-family: var(--f);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.float-call {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg) translateX(-40%);
  background: var(--orange);
  color: white;
}
.float-call:hover {
  transform: translateY(-50%) rotate(-90deg) translateX(-35%);
}
.float-call svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.float-whatsapp {
  bottom: 24px;
  right: 20px;
  background: #25d366;
  color: white;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  text-align: center;
  font-size: 10px;
}
.float-whatsapp:hover {
  transform: scale(1.06);
}
.float-whatsapp svg {
  fill: white;
  width: 28px;
  height: 28px;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
} */
.logo-icon {
  font-size: 28px;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-top {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
}
.logo-bottom {
  font-family: var(--f);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
  background: var(--orange-light);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--transition);
  z-index: 100;
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 0;
  display: block;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--f);
  font-size: 11px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}
.nav-cta svg {
  fill: white;
  flex-shrink: 0;
}
.nav-cta strong {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SECTION HEADS ── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.section-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-label {
  font-family: var(--f);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3255 60%, #0d1f3c 100%);
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 70% 50%,
    rgba(240, 90, 34, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 90, 34, 0.15);
  border: 1px solid rgba(240, 90, 34, 0.4);
  color: #ffb393;
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 980px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--f);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-content h1 .accent {
  color: var(--orange);
}
.hero-content p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f);
  line-height: 1.3;
}
.feat-icon {
  font-size: 22px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--f);
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.badge-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  font-family: var(--f);
  line-height: 1.3;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 50px;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.svc-img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--gray);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc-card:hover .svc-img img {
  transform: scale(1.1);
}
.svc-card h3 {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  background: var(--gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gal-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.gal-item:hover img {
  transform: scale(1.08);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 60px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.cta-left h2 {
  font-family: var(--f);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}
.accent-orange {
  color: var(--orange);
}
.cta-left p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 24px;
}
.cta-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
}
.cta-feat span {
  font-size: 20px;
}

/* ── WHY US ── */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-family: var(--f);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--gray);
}
.testi-slider {
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--transition);
}
.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-user strong {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.testi-user span {
  font-size: 12px;
  color: var(--text-3);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-2);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.testi-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  gap: 12px;
}
.faq-q:hover {
  background: var(--orange-light);
}
.faq-item.open .faq-q {
  background: var(--orange-light);
  color: var(--orange-dark);
}
.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--transition),
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact {
  background: var(--gray);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-wrap,
.contact-info {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3,
.contact-info h3 {
  font-family: var(--f);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text);
  background: var(--gray);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
}
.form-group textarea {
  resize: none;
}
.form-success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-family: var(--f);
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: 8px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-2);
}
.info-item:last-of-type {
  border-bottom: none;
}
.info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong {
  font-family: var(--f);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 3px;
}
.info-item a,
.info-item span {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  font-family: var(--f);
}
.info-item a:hover {
  color: var(--orange);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-top: 4px;
}
.footer-col h4 {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--orange);
}
.footer-col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 32px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-mid {
    display: none;
  }
  .cta-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .testi-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  nav {
    height: 60px;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav-links a {
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-2);
  }
  .has-drop:hover .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .testi-card {
    min-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .float-call {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-inner {
    padding: 40px 16px;
  }
  .container {
    padding: 0 16px;
  }
}
