@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Ensures text is visible while the font is loading */
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap; /* Ensures text is visible while the font is loading */
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* CSS Variables */
  :root {
    --primary-color: #0a385c;
    --secondary-color: #2ecc71;
    --dark-color: #2d3436;
    --light-color: #ebebeb;
    --light-color-hover: #f0f0f0; /* Added missing hover variable */
    --accent-color: #e74c3c;
    --font-family: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
  }
  
  /* Global Styles */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--light-color);
    color: var(--dark-color);
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  header {
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2); /* Safari support */
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  header.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    transition: padding 0.3s ease;
  gap: 0.75rem;
  flex-wrap: nowrap;
  }
  
  .logo h1 a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
  }
  
  /* Navigation */
  .nav-links ul {
    list-style: none;
    display: flex;
  }
  
  .nav-links ul li {
    margin-left: 2rem;
  }
  
  .nav-links ul li a {
    font-size: 1rem;
    position: relative;
    padding: 0.25rem 0;
  }
  
  .nav-links ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-speed);
  }
  
  .nav-links ul li a:hover::after {
    width: 100%;
  }

  /* Header Socials - desktop */
  .header-socials {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 1rem;
  flex-shrink: 0;
  }
  .header-socials .social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 56, 92, 0.85);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    transition: transform var(--transition-speed), background var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed);
  }
  .header-socials .social-link:hover {
    transform: translateY(-1px) scale(1.04);
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  }
  .header-socials .social-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  .header-socials svg { width: 18px; height: 18px; display: block; }

  /* Hide drawer socials by default (desktop) */
  .nav-socials { display: none; }

  /* Desktop layout balancing */
  @media (min-width: 769px) {
    .nav-links { flex: 1; min-width: 0; }
    .nav-links ul { justify-content: center; }
  }

  /* Tighter spacing on medium screens to avoid wrapping */
  @media (max-width: 1024px) and (min-width: 769px) {
    .nav-links ul li { margin-left: 1rem; }
    .header-socials .social-link { width: 32px; height: 32px; }
    .header-socials svg { width: 16px; height: 16px; }
  .header-socials { display: none; }
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    position: relative; /* Ensures z-index takes effect */
    z-index: 1002;      /* Places burger above other elements */
  }
  
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
  }
  
  /* Hero Section */
  .hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
    margin-top: 70px; /* Offset for fixed header */
  position: relative; /* allow absolute-positioned socials inside */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url('images/hero.webp') center/cover no-repeat;
  }
  
  .hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  /* Hero Social Links */
  .hero-socials {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.18));
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }

  .hero-socials .social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(10, 56, 92, 0.85);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    transition: transform var(--transition-speed), background var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed);
  }

  .hero-socials .social-link:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  }

  .hero-socials .social-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.35), 0 8px 22px rgba(0,0,0,0.25);
  }

  .hero-socials svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: background var(--transition-speed), transform var(--transition-speed);
    font-size: 1rem;
  }
  
  .btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
  }
  
  .btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  
  /* Main Content */
  main {
    padding-top: 80px; /* Offset for fixed header */
    padding-bottom: 2rem;
  }
  
  /* Section Headings */
  section h2 {
    text-align: center;
    margin: 2rem;
    font-size: 2rem;
    color: var(--dark-color);
  }
  
  /* Card Grid */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  /* Cards */
  .card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  
  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed);
  }
  
  .card:hover img {
    transform: scale(1.02);
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  
  .card-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  
  /* Tour Details Sections */
  .tour-details,
  .tour-overview,
  .tour-outline,
  .tour-info,
  .tour-booking {
    margin-bottom: 2rem;
  }
  
  .tour-outline ul,
  .inclusions ul,
  .exclusions ul {
    list-style: disc inside;
    margin-left: 1rem;
  }
  
  .tour-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .tour-info > div {
    flex: 1;
    min-width: 250px;
  }
  
  /* Blog Post Readability */
  .blog-post {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1rem;
    color: #333;
  }
  
  .blog-post p {
    margin-bottom: 1.5rem;
  }
  
  /* Related Tour Section in Blogs */
  .related-tour {
    margin-top: 2rem;
    padding: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
  }
  
  .related-tour h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  .related-tour p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  /* Contact Section */
  .contact-container {
    max-width: 600px;
    margin: auto;
  }
  
  .contact-info {
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  
  .contact-info li {
    margin-bottom: 0.5rem;
  }
  
  /* Footer */
  footer {
    background: var(--light-color);
    padding: 1.5rem 0;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .footer-nav ul li a {
    font-size: 1.1rem;
  }

  /* Responsive Styles for Footer */
  @media (max-width: 768px) {
  /* Show drawer socials on mobile */
  .nav-socials { display: flex; }
  /* Hide desktop socials on mobile */
  .header-socials { display: none; }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-nav ul li {
      margin: 0.5rem 0;
    }
  }
  
  /* Reveal Animation */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Carousel Styles */
  .carousel {
    position: relative;
    margin: 2rem auto;
    max-width: 800px;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.7s ease-out;
  }
  
  .carousel-item {
    flex: 0 0 100%;
  }
  
  .carousel img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7); /* Darker background for better visibility */
    border: none;
    color: #fff;
    padding: 1rem; /* Increased padding for larger buttons */
    cursor: pointer;
    border-radius: 50%; /* Circular buttons */
    font-size: 1.5rem; /* Larger font size for arrows */
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .carousel-control:hover {
    background: rgba(0, 0, 0, 0.9); /* Darker background on hover */
    transform: translateY(-50%) scale(1.1); /* Slightly larger on hover */
  }
  
  .carousel-control.prev {
    left: 10px;
  }
  
  .carousel-control.next {
    right: 10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero {
      padding: 0 1rem 110px; /* ensure space for social bar under CTA */
    }
    .nav-links {
      position: fixed;
      top: 70px;
      right: 0;
      width: 200px;
      height: calc(100% - 70px);
  
      /* Glass effect */
      background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
      backdrop-filter: blur(15px) saturate(1.2);
      -webkit-backdrop-filter: blur(15px) saturate(1.2); /* Safari support */
      border-left: 1px solid rgba(255,255,255,0.3);
  
      box-shadow: -4px 0 8px rgba(0,0,0,0.1);
      transform: translateX(100%);
      transition: transform var(--transition-speed);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 2rem;
      z-index: 1001; 
    }
    
    .nav-links ul {
      flex-direction: column;
      background: var(--light-color);
    }
    
    .nav-links ul li {
      margin: 1.5rem 0;
    }

    /* Mobile drawer socials */
    .nav-socials {
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
      margin: 1rem 0 2rem;
    }
    .nav-socials .social-link {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: rgba(10, 56, 92, 0.9);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 50%;
      transition: transform var(--transition-speed), background var(--transition-speed), color var(--transition-speed), box-shadow var(--transition-speed);
    }
    .nav-socials .social-link:hover {
      transform: translateY(-1px) scale(1.04);
      background: var(--secondary-color);
      color: #000;
      box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    }
    .nav-socials svg { width: 20px; height: 20px; display: block; }
    
    .burger {
      display: flex;
    }
    
    .nav-active {
      transform: translateX(0);
    }

    .carousel {
      max-width: 100%;
      margin: 1rem auto;
    }
  
    .carousel img {
      max-height: 300px;
    }

    .hero-socials {
      bottom: 16px;
      gap: 10px;
      padding: 6px 8px;
    }
    .hero-socials .social-link {
      width: 36px;
      height: 36px;
    }
    .hero-socials svg {
      width: 18px;
      height: 18px;
    }
  }
  
  /* Burger Menu Animation */
  .burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger.toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Fade In Animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Mobile Blog Readability */
  @media (max-width: 480px) {
    .blog-post {
      max-width: 100%;
      padding: 0.1rem;
      font-size: 1rem;
      line-height: 1.6;
    }
  }

  #reviews .widget-container {
    text-align: center;
  }
  #reviews .widget-container .TA_selfserveprop {
    display: inline-block;
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--light-color); /* Using your accent color */
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-btn:hover {
    background-color: var(--light-color-hover);
    transform: scale(1.1);
  }
  
  .whatsapp-btn img {
    width: 64px; /* Explicit width */
    height: 64px; /* Explicit height */
    display: block;
  }


  /* Additional Photo Section */
#additional-photo {
  padding: 2rem 0;
  text-align: center;
}

#additional-photo .photo-container {
  max-width: 800px;
  margin: 0 auto;
}

#additional-photo img {
  width: 100%;
  height: auto;
}

.faq-section details {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  background: #fff;
}
.faq-section summary {
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem;
  list-style: none;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section details[open] summary {
  color: var(--primary-color);
}
.faq-section p {
  padding: 0 0.5rem 0.5rem;
}
.faq-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--dark-color);
}

/* Blog Image */
.blog-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0; /* Add some margin for spacing */
}

.blog-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px; /* Set a maximum height */
  object-fit: cover; /* Ensure the image covers the container without distortion */
  border-radius: 8px; /* Optional: Add rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
      url('images/hero_mobile.webp') center/cover no-repeat;
  }
}

#random-tour .container {
  text-align: center;
}

#random-tour .btn {
  padding: 1rem 2rem; /* Increase padding to make the button bigger */
  font-size: 1.2rem; /* Increase font size */
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 120px; /* Increased right offset to leave space for the WhatsApp button */
  background-color: rgba(45, 52, 54, 0.95); /* dark tone with slight transparency */
  color: var(--light-color);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1003;
  font-size: 0.95rem;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color var(--transition-speed);
}

.cookie-banner a:hover {
  color: var(--primary-color);
}

.cookie-banner .buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  background-color: var(--secondary-color);
  border: none;
  color: #000000;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.cookie-banner button:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

/* For larger screens, display the banner content in a row */
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Mobile adjustments: slightly reduce right offset if needed */
@media (max-width: 480px) {
  .cookie-banner {
    right: 100px; /* Adjusted to ensure both elements are visible */
  }
  .hero {
    padding-bottom: 128px; /* extra space for tiny screens */
  }
  .hero-socials {
    bottom: 12px;
  }
}

.cookie-consent-hidden #cookie-banner {
  display: none !important;
}

/* Ensure the card container is relatively positioned */
.card {
  position: relative;
}

/* Enhanced SALE badge styling */
.sale-badge-extreme {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-color); /* Uses your accent color */
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 10;
  overflow: hidden;
  /* Combined entrance and continuous animations */
  animation: popUpExtreme 0.8s ease-out, pulse 2s infinite;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.6), 0 0 20px rgba(231, 76, 60, 0.5);
}

/* Shine effect pseudo-element */
.sale-badge-extreme::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

/* Keyframes for pop-up entrance animation */
@keyframes popUpExtreme {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Keyframes for continuous pulse (glow) effect */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.6), 0 0 20px rgba(231, 76, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 0 0 30px rgba(231, 76, 60, 0.7);
  }
}

/* Keyframes for the moving shine effect */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Modal Overlay */
.offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Show when active */
.offer-modal.active {
  display: flex;
  animation: fadeIn 0.5s ease-out;
}

/* Modal Box */
.offer-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  width: 400px;
  position: relative;
  font-family: var(--font-family);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Close Button */
.offer-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

/* Title & Text */
.offer-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 700;
}

.offer-text {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--dark-color);
}

/* CONTACT LIST */
.offer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-contacts li {
  display: flex;
  align-items: center;
}

/* little emoji or icon on the left */
.contact-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  line-height: 1;
}

/* link styling */
.offer-contacts a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.offer-contacts a:hover {
  color: var(--secondary-color);
}

/* CHAT ICONS row */
.chat-icons {
  gap: 0.5rem;
}

.chat-icons .chat-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-right: 0.5rem;
  transition: transform var(--transition-speed);
}

.chat-icons .chat-icon:hover {
  transform: scale(1.1);
}