:root {
  --primary: #7bcc38;
  --primary-700: #5ea927;
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --font-title: "Pacifico", cursive, "Playfair Display", ui-serif, Georgia, "Times New Roman", Times, serif;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --border: #e6eaf2;
  --shadow: 0 12px 28px rgba(2, 6, 23, .10);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1160px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 70%, #ffffff 100%);
}

h1,
h2,
h3,
.section-title h2,
.card-title,
.page-hero h1 {
  font-family: var(--font-title);
  letter-spacing: -.3px;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .3);
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  /* border-bottom: 1px solid rgba(230, 234, 242, .8); */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
}

.brand img {
  width: 140px;
  height: 40px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .2px
}

.brand-mark {
  color: var(--primary);
  font-size: 20px
}

.brand-rest {
  color: var(--text);
  font-size: 20px
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-link {
  padding: 10px 10px;
  color: var(--muted);
  border-radius: 12px;
  font-weight: 600;
}

.nav-link:hover {
  background: rgba(123, 204, 56, .12);
  color: var(--text)
}

.nav-link.active {
  /* background: rgba(15, 23, 42, .06); */
  color: var(--primary)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  cursor: pointer;
  user-select: none;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(123, 204, 56, .28);
}

.btn-primary:hover {
  background: var(--primary-700);
  box-shadow: 0 14px 32px rgba(123, 204, 56, .33);
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  border-color: rgba(15, 23, 42, .12);
  border-color: var(--primary);
  color: var(--text);
  color: var(--primary);
}

.btn-outline:hover {
  border-color: rgba(123, 204, 56, .55);
  background: rgba(123, 204, 56, .10)
}

.site-main {
  min-height: 90vh
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(230, 234, 242, .9);
  height: 100vh;
  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 10% 20%, rgba(123, 204, 56, .28), transparent 55%),
    radial-gradient(900px 450px at 95% 25%, rgba(14, 165, 233, .18), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, .14), rgba(15, 23, 42, 0));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: -30px;
  background-image: url('../img/1035.jpg');
  background-size: cover;
  background-position: center;
  /* filter: saturate(1.08) contrast(1.02); */
  filter: brightness(.9);
  transform: scaleX(-1);

}

.hero-inner {
  position: relative;
  padding: 64px 0 50px 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 60px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.6px
}

.hero p {
  margin: 0 0 18px 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  max-width: 52ch;
  margin-bottom: 30px;
}

.hero .tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(230, 234, 242, .9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card .mini-title {
  margin: 0 0 12px 0;
  font-weight: 800
}

.hero-card .mini {
  color: var(--muted);
  margin: 0 0 12px 0
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(123, 204, 56, .08), rgba(14, 165, 233, .05));
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 48px;
}

.section-title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
}

.section-title p {
  margin: 0;
  color: var(--muted)
}

.muted {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-features .card-body {
  padding: 24px;
  text-align: center;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 204, 56, .14);
  border: 1px solid rgba(123, 204, 56, .35);
  color: rgba(15, 23, 42, .88);
  margin-bottom: 16px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}


.dest {
  position: relative;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: var(--radius);
  /* padding: 18px; */
  background:
    radial-gradient(700px 220px at 10% 10%, rgba(123, 204, 56, .22), transparent 55%),
    radial-gradient(700px 220px at 90% 10%, rgba(14, 165, 233, .14), transparent 55%),
    #ffffff;
  box-shadow: 0 10px 18px rgba(2, 6, 23, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dest-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.dest-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 200px;
  padding: 36px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  border-radius: var(--radius);
  color: #fff;
}

.dest-bg .dest-title,
.dest-bg .dest-sub,
.dest-bg .chip {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.dest-bg .chip {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.dest:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .10);
  border-color: rgba(123, 204, 56, .35)
}

.dest-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px 0;
}

.dest-sub {
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.dest-bottom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .05);
  border: 1px solid rgba(15, 23, 42, .08);
  color: rgba(15, 23, 42, .86);
  font-weight: 700;
  font-size: 12px;
}

.grid-testimonials .card.card-soft {

  background-color: #fff;
}

.grid-testimonials .card-body {
  padding: 24px;
  background-color: #fff;
}

.quote {
  margin: 0 0 20px 0;
  color: rgba(15, 23, 42, .92);
  font-weight: 650;
  line-height: 1.65;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(123, 204, 56, .18);
  border: 1px solid rgba(123, 204, 56, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(15, 23, 42, .88);
  flex: 0 0 auto;
}

.quote-name {
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  padding: 20px;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 2px;
}

.card-soft {
  box-shadow: none;
}

.card {
  transition: .2s all ease-in-out;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 6, 23, .10);
  border-color: rgba(123, 204, 56, .35)
}

.card-img {
  height: 180px;
  background: var(--surface-2);
  display: block;
  object-fit: cover;
  width: 100%
}

.card-body {
  padding: 20px;
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 12px 0
}

.price {
  font-weight: 600;
  color: var(--text);
  font-size: 18px
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px
}

.enquire-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color .18s ease;
}

.enquire-link:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.strip {
  background: linear-gradient(90deg, rgba(123, 204, 56, .18), rgba(14, 165, 233, .14));
  border-top: 1px solid rgba(230, 234, 242, .9);
  border-bottom: 1px solid rgba(230, 234, 242, .9);
  padding: 0 15px;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 0
}

.strip strong {
  font-size: 16px
}

.strip span {
  color: var(--muted);
  font-weight: 600
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.label {
  font-weight: 700;
  color: var(--text);
  font-size: 13px
}

.input,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.input::placeholder,
.textarea::placeholder {
  color: #aaa;
}

.input:focus,
.textarea:focus {
  border-color: rgba(123, 204, 56, .7);
  box-shadow: 0 0 0 4px rgba(123, 204, 56, .18)
}

.textarea {
  min-height: 120px;
  resize: vertical
}

.notice {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(15, 23, 42, .04);
  color: var(--text);
  font-weight: 650;
  margin: 0 0 16px 0;
}

.notice.success {
  border-color: rgba(123, 204, 56, .45);
  background: rgba(123, 204, 56, .12)
}

.notice.error {
  border-color: rgba(239, 68, 68, .40);
  background: rgba(239, 68, 68, .10)
}

.page-hero {
  margin-top: 70px;
  padding: 60px 0 60px;
  border-bottom: 1px solid rgba(230, 234, 242, .9);
  background: radial-gradient(800px 260px at 20% 10%, rgba(123, 204, 56, .18), transparent 60%),
    radial-gradient(600px 240px at 80% 0%, rgba(14, 165, 233, .12), transparent 60%);
}

.page-hero h1 {
  margin: 0 0 8px 0;
  font-weight: 500;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch
}

.about-widgets .card {
  border: 1px solid rgba(15, 23, 42, .08);
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(123, 204, 56, .16);
  border: 1px solid rgba(123, 204, 56, .38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(15, 23, 42, .88);
  flex: 0 0 auto;
}

.profile-avatar-large {
  width: 88px;
  height: 88px;
  font-size: 28px;
  border-radius: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.team-details {
  padding: 24px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  flex: 1;
}

.profile-img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin: -18px -18px 14px -18px;
}

.profile-role {
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  margin: 0 0 12px 0;
}

.profile-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-tile {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  color: rgba(15, 23, 42, .75);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.partner-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 204, 56, .45);
  box-shadow: 0 12px 22px rgba(2, 6, 23, .06);
  color: rgba(15, 23, 42, .92);
}

.site-footer {
  background: #f2f9ef;
  background: #3A606E;

}

.site-footer .footer-tagline,
.site-footer .footer-copy {
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 15px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  gap: 20px;
}

.footer-heading {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-size: 14px;
  color: var(--muted);
  color: #fff;
  font-weight: 600;
}

.footer-links a {
  color: var(--muted);
  color: #fff;
  text-decoration: none;
  transition: color .18s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 10px
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, .70);
  transition: background-color .18s ease, transform .18s ease, border-color .18s ease
}

.social:hover {
  background: rgba(123, 204, 56, .12);
  border-color: rgba(123, 204, 56, .55);
  transform: translateY(-1px);
  color: rgba(15, 23, 42, .92)
}

.social svg {
  width: 20px;
  height: 20px
}

/* .social svg path {
  fill: #fff;
} */

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(15, 23, 42, .75);
  margin: 4px 0
}

.popular-dest-row {
  padding: 15px 5px;
  border-radius: 16px;
  /* background-color: #f2fafe; */
  background: linear-gradient(180deg, rgba(123, 204, 56, .08), rgba(14, 165, 233, .05));
  background: #ebf1fe;
  background: #EFF6E0;
  margin-bottom: 24px;
}

.popular-dest-row figure {

  object-fit: cover;
}

.popular-dest-row figure {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width:990px) {

  .popular-dest-row-content {
    padding-left: 50px;
  }
}

@media (max-width:990px) {

  .popular-dest-row-content {
    padding-top: 15px;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 54px 0 42px 0
  }

  .grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-testimonials {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-destinations {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid rgba(230, 234, 242, .9);
    padding: 12px 18px
  }

  .site-nav.open {
    display: flex
  }

  .nav-cta {
    width: 100%
  }

  .grid {
    grid-template-columns: 1fr
  }

  .grid-testimonials {
    grid-template-columns: 1fr
  }

  .grid-destinations {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}


.grid-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
}

/* ===== DESKTOP ===== */
.grid-destinations .dest:nth-child(1),
.grid-destinations .dest:nth-child(2) {
  grid-column: span 2;
}

.grid-destinations .dest:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .grid-destinations {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 🔴 RESET desktop rules */
  .grid-destinations .dest {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .grid-destinations {
    grid-template-columns: 1fr;
    grid-auto-rows: unset
  }
    .hero h1{
      font-size: 45px;
    }
}

.text-center {
  text-align: center !important;
}

.btn:hover {
  border-color: var(--primary-700);
}

/* Google reCAPTCHA styling */
.g-recaptcha {
  margin: 16px 0;
  transform: scale(0.95);
  transform-origin: 0 0;
}

/* Floating WhatsApp Button */
#whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  /* background-color: #25D366; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.3); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}

#whatsapp-btn img {
  width: 45px;
  height: 45px;
}

/* WhatsApp Popup */
#whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-width: 90%;
  height: 500px;
  max-height: 80%;
  background: #e5ddd5 url("https://officeshark.ae/wp-content/uploads/2025/12/whatsapp.jpg") repeat;
  background-size: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  flex-direction: column;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
  z-index: 1000;
  transform-origin: bottom right;
  background-color: #e5ddd5;
  /* background-image: url(./whatsapp.jpg); */
}

/* Header */
#whatsapp-popup header {
  background-color: #075e54;
  color: white;
  padding: 10px 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#whatsapp-popup header span {
  font-size: 16px;
  font-weight: 400;
}

#whatsapp-popup header button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  padding: 3px;
  line-height: 1;
  cursor: pointer;
}

/* Chat Messages Area */
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Input Area */
.chat-input {
  display: flex;
  padding: 10px;
  background-color: #f0f0f0;
  border-top: 1px solid #ccc;
  gap: 5px;
}

.chat-input input[type="text"] {
  flex: 1;
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.chat-input button {
  background-color: #075e54;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chat-input button img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

#whatsapp-popup.open {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}