/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/*==================== VARIABLES ====================*/
:root {
  --primary-color: #160f77;
  --text-dark: #1d293d;
  --text-light: #62748e;
  --extra-light: #fafafa;
  --white: #ffffff;


  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}




/*==================== CARD CONTENT & FOOTER ====================*/


.card__icons {
  display: flex;
  gap: 8px;
}

.card__icons i {
  font-size: 2rem;
 
  background: rgba(1, 187, 191, 0.08);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.card__icons i:hover {
  background: var(--primary-color);
  color: var(--white);
}



/*==================== RESPONSIVE BREAKPOINTS ====================*/
@media (min-width: 768px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/*Fearure*/

.feature__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.feature__grid li {
  display: flex;
  gap: 1rem;
}

.feature__grid span {
  display: inline-flex;
  justify-content: flex-end;
  width: 8rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 4rem;
  color: #a4a3a3;
}

.feature__grid h4 {
  /*font-size: 1.25rem;*/
  font-weight: 600;
  color: var(--text-dark);
}

.feature__grid p {
  /*color: var(--text-light);*/
  line-height: 1.75rem;
}

@media (width > 768px) {

  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .feature__grid li:nth-child(2),
  .feature__grid li:nth-child(4) {
    margin-top: 3rem;
  }
}

@media (width > 1024px) {
  .header__content h1 {
    font-size: 4.75rem;
    line-height: 5.5rem;
  }

  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4rem;
  }
}




        /* WhatsApp floating chat button */
        .whatsapp-chat {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            /* WhatsApp green */
            color: #fff;
            padding: 10px 14px;
            border-radius: 999px;
            /* pill shape */
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
            text-decoration: none;
            font-weight: 600;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            z-index: 9999;
            transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
            opacity: 0.98;
            -webkit-tap-highlight-color: transparent;
        }

        /* Icon inside the button */
        .whatsapp-chat__icon {
            height: 30px;
            width: 30px;
            display: block;
            object-fit: contain;
            flex-shrink: 0;
            margin-left: 2px;
            /* small visual offset */
        }

        /* Text label */
        .whatsapp-chat__text {
            font-size: 14px;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }

        /* Hover / focus effects */
        .whatsapp-chat:hover,
        .whatsapp-chat:focus {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
            opacity: 1;
            outline: none;
        }

        /* Keyboard focus visible */
        .whatsapp-chat:focus-visible {
            box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18), 0 12px 30px rgba(37, 211, 102, 0.28);
        }

        /* Make button slightly smaller on very small viewports and hide text */
        @media (max-width: 480px) {
            .whatsapp-chat {
                right: 12px;
                bottom: 12px;
                padding: 8px;
            }

            .whatsapp-chat__text {
                display: none;
                /* show only icon on small screens */
            }

            .whatsapp-chat__icon {
                height: 34px;
                width: 34px;
            }
        }











