* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.menu a.active,
.menu a:hover {
  color: #E63946;
}

.btn-book {
  background: #E63946;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-book:hover {
  background: #c42e3a;
}

/* BANNER */
.banner {
  background: url('hero.jpeg') no-repeat center center/cover;
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center top;
  text-align: center;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
}

.btn-contact {
  background: #4CAF50;
  color: #fff;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.btn-contact:hover {
  background: #43a047;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  text-align: center;
}

.bg-gray {
  background: #f8f8f8;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
}

.contact-form button {
  background: #E63946;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}


/* ===== ABOUT US SECTION ===== */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  flex: 1;
}

.about-title {
  color: #E63946;
  /* red heading */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* RIGHT MSME BOX */
.about-msme {
  flex: 1;
  background: #E63946;
  /* red background */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.about-msme h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-msme img {
  width: 100%;
  background: #fffbe6;
  padding: 10px;
  border-radius: 5px;
}

/* ===========================
        SERVICES
=========================== */

.services-section {
  background: #f5f7fa;
  padding: 80px 0;
}

.services-header {
  background: #E63946;
  padding: 25px 0;
  text-align: center;
}

.services-header h2 {
  color: #FFD700;
  font-size: 34px;
  font-weight: 700;
}

.services-wrapper {

  display: grid;

  grid-template-columns: 320px 500px 320px;

  justify-content: center;

  align-items: center;

  column-gap: 60px;

}

.services-list {

  display: flex;

  flex-direction: column;

  gap: 35px;

}

.service-item {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}

.services-list.right .service-item {

  flex-direction: row-reverse;

}

.service-item span {

  font-size: 18px;

  font-weight: 600;

  color: #203354;

  line-height: 1.4;

}

.service-item img {

  width: 48px;

  height: 48px;

  object-fit: contain;

}

.services-center {

  display: flex;

  justify-content: center;

  align-items: center;

}

.services-center img {
  width: 450px;
  height: 480px;
  object-fit: fit;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #f8f9fa;
  padding-bottom: 60px;
}

/* BLACK BOX */
.cta-video {
  width: 100%;
  height: 400px;
  background: #000;
  margin-bottom: 50px;
}

.cta-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.cta-services {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-box {
  text-align: center;
}

.cta-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

/* WHATSAPP BUTTON */
.whatsapp-btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.whatsapp-btn-cta:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.whatsapp-btn-cta img {
  width: 20px;
  height: 20px;
}

/* ==========================================
        WHY CHOOSE US
========================================== */

.why-cta-section {
  padding: 100px 0;
  background: url("bg1.png") center/cover no-repeat;
  position: relative;
}

.why-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.why-cta-wrapper {

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 55% 45%;

  max-width: 1200px;
  margin: auto;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}

.why-box-white {

  background: #fff;

  padding: 60px;

}

.cta-box-red {

  background: #F63C4C;

  padding: 60px;

  color: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.section-tag {

  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background: #ffe7ea;

  color: #F63C4C;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 20px;

  letter-spacing: 1px;

}

.section-tag.white {

  background: rgba(255, 255, 255, .15);

  color: #fff;

}

.why-box-white h2 {

  font-size: 50px;

  color: #203354;

  margin-bottom: 35px;

}

.why-box-white ul {

  list-style: none;

}

.why-box-white li {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 22px;

  font-size: 20px;

  color: #333;

}

.why-box-white i {

  color: #22c55e;

  font-size: 22px;

}

.cta-box-red h2 {

  font-size: 54px;

  line-height: 1.2;

  margin-bottom: 25px;

}

.cta-box-red p {

  font-size: 18px;

  line-height: 1.8;

  opacity: .95;

  margin-bottom: 35px;

}

.cta-buttons {

  display: flex;

  gap: 18px;

}

.cta-buttons a {

  text-decoration: none;

  padding: 16px 34px;

  border-radius: 50px;

  font-weight: 600;

}

.cta-buttons .book-btn {

  background: #fff;

  color: #F63C4C;

}

.cta-buttons .whatsapp-btn-red {

  background: #25D366;

  color: #fff;

}

/* ===== WHY CHOOSE US WITH CTA SECTION ===== */
.why-cta-section {
  padding: 100px 0;
  background: url('bg1.png') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}

/* dark overlay */
.why-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.why-cta-wrapper {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

/* LEFT WHITE BOX */
.why-box-white {
  flex: 1;
  background: #fff;
  padding: 50px 40px;
}

.why-box-white h2 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-box-white ul {
  list-style: none;
  padding: 0;
}

.why-box-white li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 500;
}

.why-box-white li svg {
  width: 22px;
  height: 22px;
  color: #E63946;
  flex-shrink: 0;
}

/* RIGHT RED BOX */
.cta-box-red {
  flex: 1;
  background: #E63946;
  padding: 50px 40px;
  display: flex;
  align-items: center;
}

.cta-box-red h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
}

/* ==========================
        FOOTER
========================== */

.footer {
  background: #0F172A;
  color: #fff;
  padding: 70px 0 25px;
  border-top: 5px solid #EF4444;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #EF4444;
  border-radius: 50px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.footer-map {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
}

/* Tablet */

@media (max-width:992px) {

  .footer-map iframe {
    height: 220px;
  }

}

/* Mobile */

@media (max-width:768px) {

  .footer-map {
    margin-top: 15px;
  }

  .footer-map iframe {
    height: 200px;
  }

}

/* IMPORTANT */

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #CBD5E1;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #EF4444;
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  color: #EF4444;
  width: 18px;
}

.footer-contact a {
  color: #CBD5E1;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1E293B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social a:hover {
  background: #EF4444;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.footer-bottom p {
  color: #94A3B8;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 65px;
  height: 65px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  font-size: 34px;

  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);

  z-index: 9999;

  transition: .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

.saral-link {
  color: #ddcfcf;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.saral-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/*=========================================
        HAMBURGER
=========================================*/

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #E63946;
  cursor: pointer;
  z-index: 1001;
}

/*==============================
        TABLET
===============================*/

@media (max-width:992px) {

  .container {
    width: 92%;
  }

  .header {
    padding: 14px 0;
  }

  .navbar {
    position: relative;
    height: 75px;
  }

  .logo img {
    height: 46px;
  }

  .btn-book {
    padding: 10px 18px;
    font-size: 14px;
  }

  .menu {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: #fff;

    flex-direction: column;

    gap: 0;

    display: none;

    padding: 15px 0;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {

    display: block;

    padding: 15px 25px;

    border-bottom: 1px solid #eee;

  }

  .menu-toggle {
    display: block;
  }

}


/*==============================
        MOBILE
===============================*/

@media (max-width:768px) {

  .container {
    width: 94%;
  }

  .header {
    padding: 10px 0;
  }

  .navbar {
    height: 70px;
  }

  .logo img {
    height: 42px;
  }

  .btn-book {

    display: none;

  }

  .menu {

    top: 100%;

  }

  .menu li a {

    padding: 18px 20px;

    font-size: 16px;

  }

  .menu-toggle {

    font-size: 30px;

  }

}

/*=========================================
        HERO + ABOUT RESPONSIVE
=========================================*/


/*==============================
        TABLET
===============================*/

@media (max-width:992px) {

  /* HERO */

  .banner {
    height: 70vh;
    background-position: center;
    padding: 0 25px;
  }

  .banner-content h1 {
    font-size: 38px;
    line-height: 1.3;
  }

  .banner-content h2 {
    font-size: 22px;
    margin-top: 12px;
  }

  .btn-contact {
    padding: 14px 30px;
    font-size: 15px;
  }

  /* ABOUT */

  .about-section {
    padding: 70px 0;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 45px;
    text-align: center;
  }

  .about-content {
    width: 100%;
  }

  .about-title {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.9;
  }

  .about-msme {
    width: 100%;
    max-width: 650px;
  }

  .about-msme img {
    width: 100%;
  }

}


/*==============================
        MOBILE
===============================*/

@media (max-width:768px) {

  /* HERO */

  .banner {
    height: 90vh;
    padding: 0 18px;
  }

  .banner-content {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .banner-content h2 {
    font-size: 18px;
    margin: 15px 0 25px;
  }

  .btn-contact {
    width: 100%;
    max-width: 260px;
    margin: auto;
    display: inline-block;
    padding: 15px 20px;
    font-size: 15px;
  }

  .whatsapp-btn img {
    width: 55px;
    height: 55px;
  }

  /* ABOUT */

  .about-section {
    padding: 60px 0;
  }

  .about-wrapper {
    gap: 35px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-msme {
    padding: 22px;
  }

  .about-msme h3 {
    font-size: 22px;
  }

  .about-msme img {
    width: 100%;
  }

}


/*==============================
      SMALL MOBILE
===============================*/

@media (max-width:576px) {

  .banner {
    height: 85vh;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content h2 {
    font-size: 16px;
  }

  .btn-contact {
    width: 100%;
    max-width: 220px;
    font-size: 14px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-msme {
    padding: 18px;
  }

  .about-msme h3 {
    font-size: 20px;
  }

}

/*=========================================
        SERVICES RESPONSIVE
=========================================*/

/*==============================
          TABLET
===============================*/

@media (max-width:992px) {

  .services-section {
    padding: 70px 0;
  }

  .services-header {
    padding: 22px 15px;
  }

  .services-header h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .services-wrapper {

    grid-template-columns: 1fr;
    row-gap: 45px;

  }

  .services-center {
    order: -1;
  }

  .services-center img {

    width: 100%;
    max-width: 550px;
    height: auto;

  }

  .services-list {

    width: 100%;
    gap: 25px;

  }

  .service-item {

    background: #fff;
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

  }

  .services-list.right .service-item {

    flex-direction: row;

  }

  .service-item span {

    font-size: 18px;

  }

  .service-item img {

    width: 45px;
    height: 45px;

  }

}


/*==============================
            MOBILE
=====/*==============================
        MOBILE
===============================*/

@media (max-width:768px) {

  .services-section {
    padding: 60px 0;
  }

  .services-header {
    padding: 20px 15px;
  }

  .services-header h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .services-wrapper {
    row-gap: 35px;
  }

  .services-center {
    order: -1;
  }

  .services-center img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
  }

  .services-list {
    gap: 18px;
  }

  .service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 80px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  }

  /* Right side cards */
  .services-list.right .service-item {
    flex-direction: row;
  }

  .service-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .service-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

  .services-list.left .service-item span {
    text-align: left;
  }

  .services-list.right .service-item span {
    text-align: right;
  }

}

/*==============================
        SMALL MOBILE
===============================*/

@media (max-width:576px) {

  .services-section {
    padding: 50px 0;
  }

  .services-header h2 {

    font-size: 20px;

  }

  .services-list {

    gap: 15px;

  }

  .service-item {

    padding: 15px;

  }

  .service-item span {

    font-size: 14px;

  }

  .service-item img {

    width: 36px;
    height: 36px;

  }

  .services-center img {

    border-radius: 15px;

  }

}

/*=========================================
      GALLERY + CTA RESPONSIVE
=========================================*/


/*==============================
          TABLET
===============================*/

@media (max-width:992px) {

  /* GALLERY */

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .gallery-grid {

    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

  }

  .gallery-grid img {

    width: 100%;
    border-radius: 12px;

  }


  /* CTA */

  .cta-section {
    padding: 70px 0;
  }

  .cta-title {

    font-size: 30px;
    margin-bottom: 35px;

  }

  .cta-services {

    gap: 35px;

  }

  .cta-box {

    width: 220px;

  }

  .cta-box img {

    width: 55px;
    height: 55px;

  }

  .cta-box p {

    font-size: 16px;

  }

  .whatsapp-btn-cta {

    padding: 14px 28px;
    font-size: 15px;

  }

}


/*==============================
            MOBILE
===============================*/

@media (max-width:768px) {

  /* GALLERY */

  .section {
    padding: 60px 0;
  }

  .section-title {

    font-size: 26px;

  }

  .gallery-grid {

    grid-template-columns: 1fr;
    gap: 18px;

  }

  .gallery-grid img {

    border-radius: 10px;

  }


  /* CTA */

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {

    font-size: 24px;
    line-height: 1.5;

  }

  .cta-services {

    flex-direction: column;
    align-items: center;
    gap: 28px;

  }

  .cta-box {

    width: 100%;
    max-width: 260px;

  }

  .cta-box img {

    width: 50px;
    height: 50px;

  }

  .cta-box p {

    font-size: 15px;

  }

  .whatsapp-btn-cta {

    width: 100%;
    max-width: 260px;

    justify-content: center;

    padding: 15px;

    font-size: 15px;

  }

}


/*==============================
        SMALL MOBILE
===============================*/

@media (max-width:576px) {

  .section-title {

    font-size: 24px;

  }

  .gallery-grid {

    gap: 15px;

  }

  .cta-title {

    font-size: 22px;

  }

  .cta-box img {

    width: 45px;
    height: 45px;

  }

  .cta-box p {

    font-size: 14px;

  }

  .whatsapp-btn-cta {

    max-width: 220px;
    font-size: 14px;

  }

}

/*=========================================
 WHY CHOOSE US + FOOTER RESPONSIVE
=========================================*/


/*==============================
          TABLET
===============================*/

@media (max-width:992px) {

  /* WHY CHOOSE US */

  .why-cta-section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .why-cta-wrapper {
    display: flex;
    flex-direction: column;
  }

  .why-box-white,
  .cta-box-red {
    width: 100%;
    padding: 45px 35px;
  }

  .why-box-white h2 {
    font-size: 34px;
  }

  .why-box-white li {
    font-size: 17px;
  }

  .cta-box-red h2 {
    font-size: 34px;
  }

  .cta-box-red p {
    font-size: 16px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .whatsapp-btn-red {
    width: 230px;
    text-align: center;
  }

  /* FOOTER */

  .footer {
    padding: 60px 0 20px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-logo {
    width: 180px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-bottom {
    margin-top: 35px;
  }

}



/*==============================
            MOBILE
===============================*/

@media (max-width:768px) {

  /* WHY */

  .why-cta-section {
    padding: 55px 0;
  }

  .why-box-white,
  .cta-box-red {
    padding: 30px 22px;
    text-align: center;
  }

  .why-box-white h2 {
    font-size: 28px;
  }

  .why-box-white li {
    font-size: 15px;
    align-items: flex-start;
    text-align: left;
  }

  .cta-box-red h2 {
    font-size: 28px;
  }

  .cta-box-red p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-btn-red {
    width: 100%;
    max-width: 250px;
  }


  /* FOOTER */

  .footer {
    padding: 50px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-logo {
    margin: auto;
    display: block;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .footer-bottom p {
    font-size: 14px;
  }


  /* FLOATING WHATSAPP */

  .whatsapp-btn {
    left: 15px;
    bottom: 15px;
  }

  .whatsapp-btn img {
    width: 52px;
    height: 52px;
  }

}



/*==============================
        SMALL MOBILE
===============================*/

@media (max-width:576px) {

  .why-box-white h2 {
    font-size: 24px;
  }

  .why-box-white li {
    font-size: 14px;
  }

  .cta-box-red h2 {
    font-size: 24px;
  }

  .cta-box-red p {
    font-size: 14px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .whatsapp-btn img {
    width: 48px;
    height: 48px;
  }

}