/* Footer contact row for icon and text side by side */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-contact-row i {
  color: var(--gold);
  font-size: 16px;
  min-width: 18px;
}
.footer-contact-row a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}
.footer-contact-row a:hover {
  color: var(--gold-lt);
}
/* ═══════════════════════════════════════════
   Jyoti Kitchen Studio — Main Stylesheet
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c8922a;
  --gold-lt: #e8b84b;
  --dark: #1a1208;
  --brown: #3d2b1f;
  --cream: #fdf6ed;
  --white: #ffffff;
  --gray: #6b6b6b;
  --light: #f5ede0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ───────── NAVBAR ───────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.25);
  transition:
    background 0.3s,
    height 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.45);
}
.logo-text span:first-child {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span:last-child {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-lt);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-lt);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold-lt);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 25px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(200, 146, 42, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(200, 146, 42, 0.5) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ───────── HERO ───────── */
#home {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(26, 18, 8, 0.85) 0%,
      rgba(61, 43, 31, 0.7) 100%
    ),
    url("../images/banner-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}
#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(200, 146, 42, 0.12) 0%,
    transparent 70%
  );
}

.hero-content {
  max-width: 650px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, 0.18);
  border: 1px solid rgba(200, 146, 42, 0.4);
  color: var(--gold-lt);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge i {
  font-size: 11px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 38px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(200, 146, 42, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 146, 42, 0.55);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  backdrop-filter: blur(4px);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold-lt);
  background: rgba(200, 146, 42, 0.12);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 18px;
}

/* ───────── SECTION SHARED ───────── */
section {
  padding: 100px 5%;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: 18px 0 0;
}

/* ───────── ABOUT ───────── */
#about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 520px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  padding: 22px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(200, 146, 42, 0.4);
}
.about-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.about-badge span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text .section-sub {
  max-width: 100%;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(200, 146, 42, 0.15);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}
.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.feature-item p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* ───────── SERVICES ───────── */
#services {
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.services-header .divider {
  margin: 18px auto 0;
}
.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--light);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(200, 146, 42, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(200, 146, 42, 0.35);
  transition: transform 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.service-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 146, 42, 0.08);
  line-height: 1;
  user-select: none;
}

/* ───────── GALLERY ───────── */
#gallery {
  background: var(--dark);
}
#gallery .section-tag {
  color: var(--gold-lt);
}
#gallery .section-title {
  color: var(--white);
}
#gallery .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
#gallery .divider {
  margin: 18px auto 0;
}

.gallery-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 55px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 8, 0.75) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-overlay i {
  color: var(--gold-lt);
}

/* ───────── WHY US ───────── */
#why {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(200, 146, 42, 0.15) 0%,
    transparent 60%
  );
}
#why .section-tag {
  color: var(--gold-lt);
}
#why .section-title {
  color: var(--white);
}
#why .divider {
  margin: 18px auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
  position: relative;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 20px;
  padding: 36px 28px;
  transition:
    background 0.3s,
    transform 0.3s;
  text-align: center;
}
.why-card:hover {
  background: rgba(200, 146, 42, 0.1);
  transform: translateY(-5px);
}
.why-card i {
  font-size: 2rem;
  color: var(--gold-lt);
  margin-bottom: 18px;
  display: block;
}
.why-card h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

/* ───────── CONTACT ───────── */
#contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(200, 146, 42, 0.35);
}
.contact-card-text h5 {
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-card-text span {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  display: block;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 17px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 146, 42, 0.1);
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e0d5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: var(--cream);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.12);
  background: #fff;
}
.form-group textarea {
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(200, 146, 42, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  letter-spacing: 0.5px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 146, 42, 0.5);
}

/* ───────── FOOTER ───────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 56px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 18px 0 28px;
  max-width: 300px;
}
.footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: block;
}
.footer-col ul li a:hover {
  color: var(--gold-lt);
  padding-left: 5px;
}
.footer-col ul li span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.65;
  display: block;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
}
.footer-bottom a {
  color: var(--gold-lt);
  text-decoration: none;
}

/* ───────── MAP ───────── */
.map-wrap {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 146, 42, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ───────── SCROLL-TO-TOP ───────── */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 146, 42, 0.45);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 999;
  display: grid;
  place-items: center;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── ANIMATIONS ───────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 18, 8, 0.97);
    padding: 24px 5%;
    gap: 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap img {
    height: 340px;
  }
  .about-badge {
    bottom: -16px;
    right: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form {
    padding: 30px 24px;
  }
}
