:root {
  --green-dark: #1b5e20;
  --green-main: #2e7d32;
  --green-mid: #388e3c;
  --green-light: #4caf50;
  --orange-dark: #e65100;
  --orange-main: #f57c00;
  --orange-light: #ff9800;
  --white: #ffffff;
  --off-white: #f5f9f5;
  --dark: #111111;
  --gray: #555555;
  --light-gray: #e8f5e9;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.announcement-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  margin-right: 60px;
}

.marquee-inner span i {
  color: var(--orange-light);
  margin-right: 6px;
}

.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 62px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark) !important;
  padding: 6px 14px !important;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-main) !important;
}

.nav-cta {
  background: var(--orange-main);
  color: var(--white) !important;
  border-radius: 999px;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: scale(1.04);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.menu-icon {
  color: var(--green-main);
  font-size: 1.3rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/Green Natural Pumo.png") center center / cover no-repeat;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(27, 94, 32, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 60%,
      rgba(230, 81, 0, 0.35) 100%);
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge,
.section-tag,
.deal-tag,
.inline-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
}

.hero-badge,
.deal-tag {
  background: var(--orange-main);
  color: var(--white);
}

.section-tag {
  background: var(--light-gray);
  color: var(--green-main);
  margin-bottom: 14px;
}

.inline-badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin: 18px 0;
}

.hero-title .accent,
.section-title .highlight-o,
.deal-title span {
  color: var(--orange-light);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--green-main);
}

.section-copy {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.75;
}

.copy-center {
  max-width: 640px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--orange-main);
  border-radius: 4px;
  margin: 18px 0 22px;
}

.divider.center {
  margin: 18px auto 22px;
}

.hero-sub,
.page-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.85);
}

.btn-hero-primary,
.btn-hero-outline,
.btn-deal,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn-hero-primary,
.btn-deal {
  background: var(--orange-main);
  color: var(--white);
  border: none;
}

.btn-hero-primary {
  font-size: 1rem;
  padding: 14px 36px;
  margin-right: 14px;
  margin-bottom: 12px;
}

.btn-deal {
  font-size: 1rem;
  padding: 14px 38px;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 34px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.btn-hero-primary:hover,
.btn-deal:hover,
.btn-submit:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--green-main);
}

.btn-compact {
  padding: 12px 28px;
  font-size: 0.9rem;
}

.btn-outline-green {
  padding: 10px 26px;
  font-size: 0.9rem;
  color: var(--green-main);
  border-color: var(--green-main);
}

.btn-outline-green:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

.btn-no-margin {
  margin-right: 0;
}

.hero-card-row {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 130px;
  text-align: center;
  color: var(--white);
}

.hero-stat .stat-num,
.stat-item .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.hero-stat .stat-num {
  color: var(--orange-light);
  font-size: 2rem;
}

.hero-stat .stat-label {
  font-size: 0.76rem;
  opacity: 0.88;
  font-weight: 500;
  line-height: 1.35;
}

.stats-strip {
  background: var(--green-main);
  padding: 40px 0;
}

.stats-strip-row {
  row-gap: 24px;
}

.stat-col {
  position: relative;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 10px 0;
}

.stat-item .num {
  font-size: 2.6rem;
  color: var(--orange-light);
}

.stat-item .lbl {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  height: 70px;
  margin: auto;
}

@media (min-width: 768px) {
  .stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
  }
}

#about,
#products,
#why,
#dealership,
#how,
#gallery,
#contact,
.home-cta {
  padding: 90px 0;
}

#about,
#why,
#gallery {
  background: var(--off-white);
}

#products,
#how,
#contact,
.home-cta {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-float .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-badge-float .txt strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.about-badge-float .txt span {
  font-size: 0.78rem;
  color: var(--gray);
}

.check-list,
.deal-points,
.footer-links {
  list-style: none;
  padding: 0;
}

.check-list li,
.deal-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li {
  color: var(--gray);
}

.check-list li i {
  color: var(--green-main);
  margin-top: 4px;
}

.deal-points li {
  color: rgba(255, 255, 255, 0.92);
}

.deal-points li i {
  color: var(--orange-light);
  margin-top: 4px;
}

.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover,
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 28px;
}

.product-card .prod-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.theme-green-soft {
  background: #e8f5e9;
  color: var(--green-main);
}

.theme-orange-soft {
  background: #fff3e0;
  color: var(--orange-main);
}

.theme-green-deep {
  background: #e8f5e9;
  color: var(--green-dark);
}

.theme-orange-deep {
  background: #fff3e0;
  color: var(--orange-dark);
}

.product-card .card-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card .card-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-card .prod-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 16px;
}

.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.benefit-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

#dealership {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

#dealership::before,
#dealership::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

#dealership::before {
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(255, 152, 0, 0.12);
}

#dealership::after {
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(76, 175, 80, 0.15);
}

.deal-content {
  position: relative;
  z-index: 2;
}

/* .deal-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
} */

.deal-img img {
  width: 100%;
  /* height: 380px;
  object-fit: cover; */
}

.deal-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 16px 0;
}

.deal-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.step-card {
  text-align: center;
  padding: 20px 16px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--green-main);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Montserrat", sans-serif;
  border: 3px solid var(--green-light);
  position: relative;
}

.step-num::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: var(--light-gray);
}

.step-last .step-num::after {
  display: none;
}

.step-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 32, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item.big img {
  height: 476px;
}

.contact-info-card {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-form-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-info-card p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.contact-form-card p {
  color: var(--gray);
  margin-bottom: 28px;
}

.contact-item,
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item .c-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange-light);
  flex-shrink: 0;
}

.contact-item .c-text strong {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item .c-text span {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.contact-form-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
}

.form-control,
.form-select {
  border: 1.5px solid #dddddd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.form-label-strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  background: var(--green-main);
  font-size: 0.95rem;
  padding: 13px 36px;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--green-dark);
}

.footer-gst {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.page-hero {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(13, 31, 14, 0.88) 0%,
      rgba(27, 94, 32, 0.72) 45%,
      rgba(230, 81, 0, 0.35) 100%);
}

.page-hero-about {
  background-image: url("../images/Green Natural Pumo.png");
}

.page-hero-products {
  background-image: url("../images/new-delhi-may-newly-inaugurated-torrent-cng-station-fastest-growing-private-fuel-station-network-india-torrent-cng-248700804-transformed (1).jpeg");
}

.page-hero-dealership {
  background-image: url("../images/Ads\ 2.png");
}

.page-hero-gallery,
.page-hero-contact {
  background-image: url("../images/Green Natural Pumo.png");
}

.breadcrumb-lite {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.breadcrumb-lite a {
  color: var(--orange-light);
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-panel {
  background: linear-gradient(135deg,
      rgba(27, 94, 32, 0.98) 0%,
      rgba(46, 125, 50, 0.95) 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.cta-panel .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-panel .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.cta-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-outline {
  border-color: rgba(255, 255, 255, 0.78);
}

footer {
  background: #0d1f0e;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-logo img {
  height: 58px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  margin-right: 8px;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--orange-main);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links li a:hover {
  color: var(--orange-light);
}

.footer-links li a i {
  margin-right: 8px;
  color: var(--green-light);
  font-size: 0.75rem;
}

.footer-contact-item {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-contact-item i {
  margin-top: 5px;
  color: var(--orange-light);
}

.footer-bottom {
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  font-size: 1.7rem;
  z-index: 1001;
}

#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--orange-main);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(245, 124, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.floating-logo {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1199px) {
  .step-num::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 90px 0;
  }

  .page-hero {
    padding: 90px 0;
  }

  .navbar-brand img {
    height: 54px;
  }

  .hero-card-row {
    margin-top: 36px;
  }

  .deal-img img,
  .about-img-wrap img {
    height: 340px;
  }

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

  .gallery-item.big {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {

  #about,
  #products,
  #why,
  #dealership,
  #how,
  #gallery,
  #contact,
  .home-cta {
    padding: 70px 0;
  }

  .announcement-bar {
    font-size: 0.76rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .page-hero-title {
    font-size: 2.1rem;
  }

  .hero-sub,
  .page-hero-sub {
    font-size: 0.96rem;
  }

  .hero-stat {
    min-width: calc(50% - 8px);
    flex: 1 1 calc(50% - 8px);
  }

  .about-badge-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

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

  .gallery-item.big {
    grid-column: auto;
  }

  .gallery-item.big img {
    height: 250px;
  }

  .cta-panel,
  .contact-form-card,
  .contact-info-card {
    padding: 30px 24px;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 72px 0;
  }

  .hero-card-row {
    gap: 10px;
  }

  .hero-stat {
    min-width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-outline,
  .btn-deal {
    width: 100%;
  }

  .whatsapp-fab {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 82px;
  }

  #backToTop {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}