.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: transparent;
}

.hero-slider__track {
  position: relative;
  height: min(52vw, 680px);
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hero-slider__btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.hero-slider__btn--prev {
  left: 14px;
}

.hero-slider__btn--next {
  right: 14px;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.hero-slider__dot.is-active {
  background: #fff;
}

@media (max-width: 768px) {
  .hero-slider__track {
    height: 70vw;
    min-height: 300px;
  }
}

.about-zirk {
  background-color: #f5f5f5;
  background-image: radial-gradient(#d9d9d9 1px, transparent 1px);
  background-size: 12px 12px;
  padding: 56px 20px 64px;
}

.about-zirk__container {
  max-width: 1180px;
  margin: 0 auto;
}

.about-zirk__header {
  text-align: center;
  margin-bottom: 30px;
}

.about-zirk__header h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-zirk__pill {
  margin-top: 12px;
  display: inline-block;
  padding: 9px 34px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #f2b137 0%, #f5473c 100%);
}

.about-zirk__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-zirk__video-wrap {
  border: 8px solid #ff3138;
  background: #000;
  line-height: 0;
}

.about-zirk__video-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.about-zirk__text p {
  margin: 0;
  color: #2f3f54;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .about-zirk {
    padding: 40px 16px 48px;
  }

  .about-zirk__header h2 {
    font-size: 32px;
  }

  .about-zirk__pill {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 8px 24px;
  }

  .about-zirk__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-zirk__video-wrap {
    border-width: 6px;
  }

  .about-zirk__video-wrap iframe {
    height: 240px;
  }

  .about-zirk__text p {
    font-size: 18px;
    line-height: 1.75;
  }
}

.smart-amenities {
  background: linear-gradient(90deg, #147ca4 0%, #7ac70b 100%);
  padding: 40px 20px 56px;
}

.smart-amenities__container {
  max-width: 1180px;
  margin: 0 auto;
}

.smart-amenities__header {
  text-align: center;
  color: #fff;
}

.smart-amenities__header h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 800;
}

.smart-amenities__pill {
  margin-top: 12px;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f2b137 0%, #f5473c 100%);
}

.smart-amenities__header p {
  margin: 14px 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.smart-amenities__down {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: #66a90f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.smart-amenities__grid {
  margin: 34px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 34px;
}

.smart-amenities__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.smart-amenities__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #ef3737;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.smart-amenities__text {
  display: inline-block;
}

.smart-amenities__item--center {
  grid-column: 2;
}

@media (max-width: 980px) {
  .smart-amenities__header h2 {
    font-size: 30px;
  }

  .smart-amenities__grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .smart-amenities__item {
    font-size: 18px;
  }

  .smart-amenities__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 20px;
  }

  .smart-amenities__item--center {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .smart-amenities {
    padding: 30px 14px 40px;
  }

  .smart-amenities__header h2 {
    font-size: 24px;
  }

  .smart-amenities__grid {
    grid-template-columns: 1fr;
  }
}

.floor-plans-section {
  background: #efefef;
  padding: 30px 16px 40px;
}

.floor-plans-section__container {
  max-width: 1040px;
  margin: 0 auto;
}

.floor-plans-section__header {
  text-align: center;
  margin-bottom: 24px;
}

.floor-plans-section__header h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.floor-plans-section__pill {
  margin-top: 10px;
  display: inline-block;
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f2b137 0%, #f5473c 100%);
}

.floor-plans-section__down {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: #000;
}

.floor-plans-grid {
  display: grid;
  gap: 12px;
}

.floor-plans-grid--top {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 12px;
}

.floor-plans-grid--bottom {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  background: #fff;
  border: 1px solid #ff3138;
  border-radius: 12px;
  padding: 14px 14px 10px;
  text-align: center;
}

.plan-card__img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}

.plan-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
  font-weight: 800;
}

.plan-card p {
  margin: 8px 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #2f3f54;
}

.plan-card__btn {
  display: inline-block;
  text-decoration: none;
  background: #df0000;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
}

.floor-plans-section__view-all {
  text-align: center;
  margin-top: 22px;
}

.floor-plans-section__view-btn {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .floor-plans-section__header h2 {
    font-size: 30px;
  }

  .floor-plans-grid--top,
  .floor-plans-grid--bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .floor-plans-section {
    padding: 26px 12px 34px;
  }

  .floor-plans-section__header h2 {
    font-size: 24px;
  }

  .floor-plans-grid--top,
  .floor-plans-grid--bottom {
    grid-template-columns: 1fr;
  }
}

.master-plan-section {
  background-color: #f5f5f5;
  background-image: radial-gradient(#d9d9d9 1px, transparent 1px);
  background-size: 12px 12px;
  padding: 32px 20px 44px;
}

.master-plan-section__container {
  max-width: 1120px;
  margin: 0 auto;
}

.master-plan-section__header {
  text-align: center;
  margin-bottom: 24px;
}

.master-plan-section__header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
}

.master-plan-section__pill {
  margin-top: 10px;
  display: inline-block;
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f2b137 0%, #f5473c 100%);
}

.master-plan-section__down {
  display: block;
  margin-top: 8px;
  color: #000;
  font-size: 16px;
}

.master-plan-section__content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: center;
}

.master-plan-section__text p {
  margin: 0;
  color: #1f2a36;
  font-size: 16px;
  line-height: 1.8;
}

.master-plan-section__image-wrap {
  border: 6px solid #d80000;
  background: #fff;
  line-height: 0;
}

.master-plan-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.master-plan-section__actions {
  text-align: center;
  margin-top: 20px;
}

.master-plan-section__btn {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .master-plan-section {
    padding: 30px 16px 38px;
  }

  .master-plan-section__header h2 {
    font-size: 30px;
  }

  .master-plan-section__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .master-plan-section__text p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .master-plan-section__header h2 {
    font-size: 24px;
  }

  .master-plan-section__btn {
    width: 100%;
    max-width: 220px;
  }
}

.why-zirakpur {
  background: #e9e9ec;
  padding: 26px 18px 34px;
}

.why-zirakpur__container {
  max-width: 1040px;
  margin: 0 auto;
}

.why-zirakpur__header {
  text-align: center;
  margin-bottom: 20px;
}

.why-zirakpur__header h2 {
  margin: 0;
  color: #000;
  font-size: 44px;
  letter-spacing: 1px;
  font-weight: 800;
}

.why-zirakpur__down {
  display: inline-block;
  margin-top: 8px;
  color: #000;
  font-size: 16px;
}

.why-zirakpur__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.why-zirakpur-card {
  background: #fff;
}

.why-zirakpur-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.why-zirakpur-card__body {
  padding: 10px 10px 12px;
}

.why-zirakpur-card h3 {
  margin: 0 0 8px;
  text-align: center;
  color: #172133;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.why-zirakpur-card p {
  margin: 0;
  color: #1f2a36;
  font-size: 11px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 980px) {
  .why-zirakpur__header h2 {
    font-size: 30px;
  }

  .why-zirakpur__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-zirakpur-card img {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .why-zirakpur {
    padding: 22px 12px 28px;
  }

  .why-zirakpur__header h2 {
    font-size: 24px;
  }

  .why-zirakpur__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.location-section {
  background: linear-gradient(180deg, #efb01e 0%, #f93d3d 100%);
  padding: 30px 18px 42px;
}

.location-section__container {
  max-width: 960px;
  margin: 0 auto;
}

.location-section__header {
  text-align: center;
  margin-bottom: 22px;
}

.location-section__header h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  letter-spacing: 1px;
  font-weight: 800;
}

.location-section__down {
  display: inline-block;
  margin-top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #e48714;
  line-height: 20px;
  font-size: 10px;
  text-align: center;
}

.location-section__content {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 18px;
  align-items: center;
}

.location-section__map-wrap {
  border: 6px solid #535353;
  background: #ece9dc;
  line-height: 0;
}

.location-section__map {
  width: 100%;
  height: auto;
  display: block;
}

.location-section__details h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.location-section__details p {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
}

.location-section__details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-section__details li {
  margin: 8px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.location-section__details li::before {
  content: "\203A";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  color: #e48714;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  font-weight: 700;
}

.location-section__actions {
  text-align: center;
  margin-top: 20px;
}

.location-section__btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .location-section__header h2 {
    font-size: 30px;
  }

  .location-section__content {
    grid-template-columns: 1fr;
  }

  .location-section__details h3 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 24px 12px 30px;
  }

  .location-section__header h2 {
    font-size: 24px;
  }

  .location-section__details h3 {
    font-size: 22px;
  }

  .location-section__details li {
    font-size: 13px;
  }
}

.contact-section {
  background: #f0f1f4;
  padding: 34px 16px 42px;
}

.contact-section__container {
  max-width: 980px;
  margin: 0 auto;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section__header h2 {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-section__pill {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f2b137 0%, #f5473c 100%);
}

.contact-section__header p {
  margin: 12px 0 0;
  color: #2f3f54;
  font-size: 15px;
}

.contact-section__card {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 18px;
  background: #fff;
  border: 1px solid #e4e6ec;
  border-radius: 14px;
  padding: 18px;
}

.contact-section__info {
  background: linear-gradient(180deg, #ef2e35 0%, #d6181e 100%);
  color: #fff;
  border-radius: 12px;
  padding: 18px;
}

.contact-section__info h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}

.contact-section__info p {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-section__info a {
  color: #fff;
  text-decoration: none;
}

.contact-alert {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-alert--success {
  background: #e7f8ec;
  color: #186236;
  border: 1px solid #bce8ca;
}

.contact-alert--error {
  background: #fdeaea;
  color: #8a1f1f;
  border: 1px solid #f4c7c7;
}

.contact-alert--error ul {
  margin: 0;
  padding-left: 18px;
}

.contact-form__row,
.contact-form__row-grid {
  margin-bottom: 12px;
}

.contact-form__row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  color: #2f3f54;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d4d9e4;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1f2a36;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ef2e35;
  box-shadow: 0 0 0 3px rgba(239, 46, 53, 0.14);
}

.contact-form__submit {
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  cursor: pointer;
}

.contact-form__submit:hover {
  background: #181818;
}

@media (max-width: 980px) {
  .contact-section__header h2 {
    font-size: 30px;
  }

  .contact-section__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 26px 12px 34px;
  }

  .contact-section__header h2 {
    font-size: 24px;
  }

  .contact-form__row-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

main {
  width: 100%;
  overflow-x: clip;
}

.plan-card__btn,
.floor-plans-section__view-btn,
.master-plan-section__btn,
.location-section__btn {
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}

.why-zirakpur-card p,
.plan-card p,
.master-plan-section__text p,
.contact-section__header p,
.contact-section__info p {
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .hero-slider__track {
    height: min(56vw, 620px);
    min-height: 360px;
  }

  .about-zirk__header h2,
  .smart-amenities__header h2,
  .floor-plans-section__header h2,
  .master-plan-section__header h2,
  .why-zirakpur__header h2,
  .location-section__header h2,
  .contact-section__header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .hero-slider__track {
    height: 72vw;
    min-height: 250px;
  }

  .hero-slider__btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .about-zirk,
  .smart-amenities,
  .floor-plans-section,
  .master-plan-section,
  .why-zirakpur,
  .location-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .smart-amenities__item {
    font-size: 16px;
    align-items: flex-start;
  }

  .plan-card {
    padding: 12px 12px 10px;
  }

  .plan-card h3 {
    font-size: 14px;
  }

  .why-zirakpur-card img {
    height: 170px;
  }

  .location-section__content,
  .master-plan-section__content,
  .about-zirk__content {
    gap: 14px;
  }

  .contact-section__card {
    padding: 14px;
  }

  .contact-form__submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-slider__track {
    height: 74vw;
    min-height: 210px;
  }

  .hero-slider__btn {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero-slider__btn--prev {
    left: 8px;
  }

  .hero-slider__btn--next {
    right: 8px;
  }

  .about-zirk__header h2,
  .smart-amenities__header h2,
  .floor-plans-section__header h2,
  .master-plan-section__header h2,
  .why-zirakpur__header h2,
  .location-section__header h2,
  .contact-section__header h2 {
    font-size: 26px;
  }

  .about-zirk__text p,
  .master-plan-section__text p,
  .contact-section__header p {
    font-size: 14px;
    line-height: 1.65;
  }

  .smart-amenities__item {
    font-size: 15px;
  }

  .smart-amenities__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 18px;
  }

  .location-section__details h3 {
    font-size: 20px;
  }

  .location-section__details li {
    font-size: 12px;
  }

  .why-zirakpur-card__body {
    padding: 10px;
  }

  .why-zirakpur-card p {
    font-size: 12px;
    line-height: 1.65;
  }
}
