:root{
  --ink:#20241b;
  --forest:#2c4a3b;
  --forest-dark:#1c3128;
  --khaki:#e7e1cc;
  --khaki-light:#f2eede;
  --ochre:#c9852f;
  --ochre-dark:#a5691f;
  --rust:#9c4630;
  --paper:#faf8f1;
  --line:rgba(32,36,27,0.14);
  --max:1180px;
}


/* =========================================================
   ===== GLOBAL =====
   ========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,
h2,
h3{
  font-family:'Fraunces',serif;
  font-weight:600;
  line-height:1.08;
  margin:0 0 0.4em;
  letter-spacing:-0.01em;
}

.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ochre-dark);
  display:flex;
  align-items:center;
  gap:0.6em;
  margin-bottom:0.9em;
}

.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--ochre-dark);
  display:inline-block;
}

a{
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

:focus-visible{
  outline:2px solid var(--ochre);
  outline-offset:3px;
}


/* =========================================================
   ===== HEADER =====
   ========================================================= */

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(32,36,27,0.96);
  backdrop-filter:blur(6px);
  color:var(--khaki-light);
}

.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:1.15rem;
  text-decoration:none;
  color:var(--khaki-light);
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand span{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.62rem;
  letter-spacing:0.12em;
  color:var(--ochre);
  text-transform:uppercase;
  margin-top:3px;
}

nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}

nav ul a{
  text-decoration:none;
  font-size:0.9rem;
  color:var(--khaki-light);
  opacity:0.88;
  transition:opacity .2s;
}

nav ul a:hover{
  opacity:1;
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:14px;
}

.phone-link{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.82rem;
  color:var(--khaki-light);
  text-decoration:none;
  opacity:0.85;
  display:none;
}

.btn{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.78rem;
  letter-spacing:0.04em;
  text-decoration:none;
  padding:10px 18px;
  border-radius:2px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  transition:transform .15s ease,background .2s ease;
}

.btn-primary{
  background:var(--ochre);
  color:var(--ink);
  font-weight:500;
}

.btn-primary:hover{
  background:var(--ochre-dark);
  transform:translateY(-1px);
}

.btn-ghost{
  border:1px solid rgba(247,243,222,0.4);
  color:var(--khaki-light);
}

.btn-ghost:hover{
  border-color:var(--khaki-light);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:var(--khaki-light);
  font-size:1.4rem;
  cursor:pointer;
}


/* =========================================================
   ===== MOBILE NAV =====
   ========================================================= */

@media (max-width:880px){

  nav ul{
    position:fixed;
    top:64px;
    left:0;
    right:0;
    background:var(--forest-dark);
    flex-direction:column;
    padding:20px 24px;
    gap:16px;
    transform:translateY(-130%);
    transition:transform .25s ease;
  }

  nav ul.open{
    transform:translateY(0);
  }

  .menu-toggle{
    display:block;
  }

  .nav-cta .btn-ghost{
    display:none;
  }

}

@media (min-width:881px){

  .phone-link{
    display:inline;
  }

}


/* =========================================================
   ===== HERO =====
   ========================================================= */

.hero{
  position:relative;
  color:var(--khaki-light);
  min-height:86vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#20241b;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    180deg,
    rgba(28,49,40,0.30) 0%,
    rgba(20,24,17,0.85) 88%
  );
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px 64px;
  width:100%;
}

.hero-zone{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ochre);
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2.3rem,5.4vw,4.2rem);
  max-width:14ch;
  color:#fff;
}

.hero p{
  max-width:46ch;
  font-size:1.05rem;
  color:rgba(247,243,222,0.88);
  margin:16px 0 28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}


/* =========================================================
   ===== FACT STRIP =====
   ========================================================= */

.facts{
  background:var(--forest);
  color:var(--khaki-light);
}

.facts .wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.fact{
  padding:22px 20px;
  border-left:1px solid rgba(247,243,222,0.15);
}

.fact:first-child{
  border-left:none;
}

.fact b{
  display:block;
  font-family:'Fraunces',serif;
  font-size:1.7rem;
  font-weight:600;
}

.fact span{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.06em;
  opacity:0.75;
  text-transform:uppercase;
}

@media (max-width:700px){

  .facts .wrap{
    grid-template-columns:repeat(2,1fr);
  }

  .fact{
    border-left:none;
    border-top:1px solid rgba(247,243,222,0.15);
  }

  .fact:nth-child(1),
  .fact:nth-child(2){
    border-top:none;
  }

}


/* =========================================================
   ===== GENERIC SECTIONS =====
   ========================================================= */

section{
  padding:88px 0;
}

.section-head{
  max-width:640px;
  margin-bottom:48px;
}

.section-head p{
  color:rgba(32,36,27,0.72);
  font-size:1.02rem;
}


/* =========================================================
   ===== ACTIVITIES GRID =====
   ========================================================= */

.grid-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--line);
}

.card{
  background:var(--paper);
  overflow:hidden;
  position:relative;
}

.card img{
  height:260px;
  width:100%;
  object-fit:cover;
  filter:grayscale(15%);
  transition:filter .3s ease,transform .4s ease;
}

.card:hover img{
  filter:grayscale(0%);
  transform:scale(1.04);
}

.card-label{
  padding:18px 20px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.card-label h3{
  font-size:1.05rem;
  margin:0;
}

.card-label span{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.7rem;
  color:var(--ochre-dark);
}

@media (max-width:880px){

  .grid-cards{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:560px){

  .grid-cards{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   ===== SPLIT =====
   ========================================================= */

.split{
  background:var(--khaki);
}

.split .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.split img{
  border-radius:2px;
}

.split.reverse .wrap{
  grid-template-columns:1fr 1fr;
}

.split.reverse figure{
  order:2;
}

@media (max-width:880px){

  .split .wrap{
    grid-template-columns:1fr;
    gap:32px;
  }

  .split.reverse figure{
    order:0;
  }

}


/* =========================================================
   ===== SAFARI ZONE LOG =====
   ========================================================= */

.zonelog{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.82rem;
  border:1px solid rgba(32,36,27,0.2);
  background:var(--khaki-light);
}

.zonelog-row{
  display:grid;
  grid-template-columns:56px 1fr auto;
  gap:14px;
  padding:11px 16px;
  border-top:1px solid rgba(32,36,27,0.12);
  align-items:center;
}

.zonelog-row:first-child{
  border-top:none;
  background:var(--ink);
  color:var(--khaki-light);
  font-weight:500;
}

.zonelog-row .zn{
  color:var(--ochre-dark);
  font-weight:500;
}

.zonelog-row:first-child .zn{
  color:var(--ochre);
}

.tag{
  font-size:0.68rem;
  letter-spacing:0.06em;
  padding:2px 8px;
  border:1px solid currentColor;
  border-radius:20px;
}

.safari-photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:32px;
}

.safari-photos img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:2px;
}

@media (max-width:600px){

  .safari-photos{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   ===== ACTIVITY LIST =====
   ========================================================= */

.todo{
  background:var(--ink);
  color:var(--khaki-light);
}

.todo .section-head p{
  color:rgba(247,243,222,0.7);
}

.todo-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(247,243,222,0.14);
}

.todo-item{
  background:var(--forest-dark);
  padding:28px 22px;
}

.todo-thumb{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:2px;
  margin-bottom:18px;
  filter:grayscale(10%);
}

.todo-item .eyebrow{
  color:var(--ochre);
}

.todo-item .eyebrow::before{
  background:var(--ochre);
}

.todo-item h3{
  font-size:1.05rem;
  color:#fff;
}

.todo-item p{
  font-size:0.9rem;
  color:rgba(247,243,222,0.72);
  margin:0;
}

@media (max-width:880px){

  .todo-list{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:560px){

  .todo-list{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   ===== FAQ =====
   ========================================================= */

.faq-item{
  border-top:1px solid var(--line);
}

.faq-item:last-child{
  border-bottom:1px solid var(--line);
}

.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:0;
  cursor:pointer;
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-family:'Fraunces',serif;
  font-size:1.08rem;
  color:var(--ink);
}

.faq-q .plus{
  font-family:'IBM Plex Mono',monospace;
  font-size:1.1rem;
  color:var(--ochre-dark);
  transition:transform .25s ease;
}

.faq-item.open .plus{
  transform:rotate(45deg);
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-a p{
  padding:0 0 22px;
  margin:0;
  max-width:60ch;
  color:rgba(32,36,27,0.75);
}


/* =========================================================
   ===== CONTACT =====
   ========================================================= */

.contact{
  background:var(--forest);
  color:var(--khaki-light);
}

.contact .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact .section-head p{
  color:rgba(247,243,222,0.75);
}

.contact-line{
  display:flex;
  gap:14px;
  padding:14px 0;
  border-top:1px solid rgba(247,243,222,0.16);
  font-size:0.95rem;
}

.contact-line:last-child{
  border-bottom:1px solid rgba(247,243,222,0.16);
}

.contact-line b{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ochre);
  min-width:90px;
}

.map-frame{
  width:100%;
  height:340px;
  border:0;
  border-radius:2px;
  filter:sepia(8%) saturate(85%);
}

@media (max-width:880px){

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

}


/* =========================================================
   ===== FOOTER =====
   ========================================================= */

footer{
  background:var(--forest-dark);
  color:rgba(247,243,222,0.6);
  padding:30px 0;
  font-size:0.82rem;
}

footer .wrap{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

footer a{
  color:rgba(247,243,222,0.75);
  text-decoration:none;
}


/* =========================================================
   ===== SCROLL REVEAL =====
   ========================================================= */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease,transform .6s ease;
}

.reveal.in{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion:reduce){

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  html{
    scroll-behavior:auto;
  }

}


/* =========================================================
   ===== ACTIVE NAV LINK =====
   ========================================================= */

.active-link{
  opacity:1 !important;
  position:relative;
}

.active-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:var(--ochre);
}


/* =========================================================
   ===== PAGE HERO =====
   ========================================================= */

.page-hero{
  background:var(--forest);
  color:var(--khaki-light);
  padding:64px 0 54px;
}

.page-hero .eyebrow{
  color:var(--ochre);
}

.page-hero .eyebrow::before{
  background:var(--ochre);
}

.page-hero h1{
  color:#fff;
  font-size:clamp(2rem,4.2vw,3rem);
  max-width:18ch;
}

.page-hero p{
  max-width:56ch;
  color:rgba(247,243,222,0.82);
  font-size:1.02rem;
  margin-top:12px;
}


/* =========================================================
   ===== ROOM CARDS =====
   ========================================================= */

.room-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  background:var(--line);
}

.room-card{
  background:var(--paper);
}

.room-card img{
  height:280px;
  width:100%;
  object-fit:cover;
}

.room-card-body{
  padding:26px;
}

.room-card-body h3{
  font-size:1.25rem;
}

.room-feats{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.room-feats li{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.03em;
  padding:5px 10px;
  border:1px solid var(--line);
  border-radius:20px;
  color:rgba(32,36,27,0.72);
}

@media (max-width:800px){

  .room-grid{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   ===== TARIFF TABLE =====
   ========================================================= */

.tariff-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.95rem;
  margin-top:10px;
}

.tariff-table th,
.tariff-table td{
  padding:16px 18px;
  text-align:left;
  border-bottom:1px solid var(--line);
}

.tariff-table thead th{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ochre-dark);
  border-bottom:2px solid var(--ink);
}

.tariff-table tbody tr:hover{
  background:var(--khaki-light);
}

.tariff-note{
  background:var(--khaki-light);
  border:1px solid var(--line);
  padding:18px 22px;
  font-size:0.9rem;
  color:rgba(32,36,27,0.75);
  margin-top:24px;
  border-radius:2px;
}

.tariff-wrap{
  overflow-x:auto;
}

.policy-list{
  list-style:none;
  margin:0;
  padding:0;
}

.policy-list li{
  padding:14px 0;
  border-top:1px solid var(--line);
  display:flex;
  gap:14px;
  font-size:0.94rem;
}

.policy-list li:first-child{
  border-top:none;
}

.policy-list b{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ochre-dark);
  min-width:120px;
}


/* =========================================================
   ===== GALLERY WITH WILDLIFE / RESORT FILTER =====
   ========================================================= */

.gallery-section{
  padding:40px 0 88px;
}


/* ===== GALLERY TABS ===== */

.gallery-tabs{
  display:flex;
  justify-content:center;
  align-items:stretch;
  margin:0 auto 44px;
  width:max-content;
  background:#f1f1f1;
  border-radius:2px;
  overflow:hidden;
}

.gallery-tab{
  border:0;
  background:#f1f1f1;
  color:#444;
  font-family:'Work Sans',sans-serif;
  font-size:0.95rem;
  font-weight:500;
  letter-spacing:0.02em;
  padding:16px 38px;
  min-width:145px;
  cursor:pointer;
  transition:
    background .25s ease,
    color .25s ease,
    transform .15s ease;
}

.gallery-tab:hover{
  background:rgba(201,133,47,0.15);
}

.gallery-tab.active{
  background:var(--ochre);
  color:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}


/* ===== GALLERY GRID ===== */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:start;
}


/* ===== GALLERY ITEMS ===== */

.gallery-item{
  display:block;
  overflow:hidden;
  background:#e8e5dc;
  text-decoration:none;
  position:relative;
  border-radius:2px;
}

.gallery-item.hidden{
  display:none;
}

.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  cursor:pointer;
  display:block;
  filter:grayscale(8%);
  transition:
    transform .5s ease,
    filter .3s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
  filter:grayscale(0%);
}


/* ===== WILDLIFE PHOTO PRESENTATION ===== */

.gallery-item.wildlife img{
  height:330px;
}


/* ===== RESORT PHOTO PRESENTATION ===== */

.gallery-item.resort img{
  height:300px;
}


/* ===== GALLERY RESPONSIVE ===== */

@media (max-width:880px){

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .gallery-item.wildlife img,
  .gallery-item.resort img{
    height:280px;
  }

}

@media (max-width:560px){

  .gallery-section{
    padding:30px 0 60px;
  }

  .gallery-tabs{
    width:100%;
    margin-bottom:28px;
  }

  .gallery-tab{
    flex:1;
    min-width:0;
    padding:14px 10px;
    font-size:0.82rem;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .gallery-item.wildlife img,
  .gallery-item.resort img{
    height:280px;
  }

}


/* =========================================================
   ===== LIGHTBOX =====
   ========================================================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(20,24,17,0.94);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:24px;
}

.lightbox.open{
  display:flex;
}

.lightbox img{
  max-width:100%;
  max-height:88vh;
  width:auto;
  height:auto;
  border-radius:2px;
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:28px;
  color:#fff;
  font-size:2rem;
  background:none;
  border:0;
  cursor:pointer;
  line-height:1;
}


/* =========================================================
   ===== ABOUT =====
   ========================================================= */

.timeline{
  border-left:2px solid var(--line);
  padding-left:28px;
  margin-top:10px;
}

.timeline-item{
  padding-bottom:32px;
  position:relative;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-33px;
  top:4px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--ochre);
}

.timeline-item b{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ochre-dark);
  display:block;
  margin-bottom:6px;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--line);
  margin-top:20px;
}

.value-card{
  background:var(--paper);
  padding:26px;
}

.value-card h3{
  font-size:1.05rem;
}

@media (max-width:800px){

  .value-grid{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   ===== CONTACT FORM =====
   ========================================================= */

.contact-form{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.contact-form label{
  font-family:'IBM Plex Mono',monospace;
  font-size:0.72rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--khaki-light);
  opacity:0.8;
  display:block;
  margin-bottom:6px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  font-family:'Work Sans',sans-serif;
  font-size:0.95rem;
  background:rgba(247,243,222,0.08);
  border:1px solid rgba(247,243,222,0.3);
  color:var(--khaki-light);
  border-radius:2px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(247,243,222,0.4);
}

.contact-form button{
  justify-self:start;
  cursor:pointer;
  border:none;
}

.form-note{
  font-size:0.82rem;
  color:rgba(247,243,222,0.6);
  margin-top:4px;
}


/* =========================================================
   ===== FLOATING SOCIAL / CONTACT BAR =====
   ========================================================= */

.floating-social{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:9px;
  z-index:9999;
}


/* Individual social button */

.floating-social a{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  font-size:21px;
  box-shadow:0 4px 14px rgba(0,0,0,0.20);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

.floating-social a:hover{
  transform:scale(1.12) translateX(-3px);
  box-shadow:0 7px 20px rgba(0,0,0,0.30);
  opacity:0.95;
}


/* WhatsApp */

.floating-social .social-whatsapp{
  background:#25D366;
}


/* Instagram */

.floating-social .social-instagram{
  background:linear-gradient(
    135deg,
    #833AB4 0%,
    #E1306C 50%,
    #FCAF45 100%
  );
}


/* Facebook */

.floating-social .social-facebook{
  background:#1877F2;
}


/* Email */

.floating-social .social-email{
  background:var(--forest);
}


/* Tooltip */

.floating-social a::after{
  position:absolute;
  right:62px;
  background:var(--ink);
  color:#fff;
  padding:6px 10px;
  border-radius:3px;
  font-family:'Work Sans',sans-serif;
  font-size:12px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transform:translateX(5px);
  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease;
  pointer-events:none;
}


/* Tooltip text */

.floating-social .social-whatsapp::after{
  content:"WhatsApp";
}

.floating-social .social-instagram::after{
  content:"Instagram";
}

.floating-social .social-facebook::after{
  content:"Facebook";
}

.floating-social .social-email::after{
  content:"Email";
}


/* Show tooltip */

.floating-social a:hover::after{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}


/* Mobile */

@media (max-width:600px){

  .floating-social{
    right:12px;
    top:auto;
    bottom:18px;
    transform:none;
    flex-direction:row;
    gap:7px;
  }

  .floating-social a{
    width:44px;
    height:44px;
    font-size:18px;
  }

  .floating-social a::after{
    display:none;
  }

}


/* =========================================================
   ===== ACCESSIBILITY =====
   ========================================================= */

@media (prefers-reduced-motion:reduce){

  .floating-social a{
    transition:none;
  }

}


/* =========================================================
   ===== FLOATING WHATSAPP OLD BUTTON SUPPORT =====
   ========================================================= */

/*
   If you still have the old .floating-whatsapp HTML
   somewhere on your pages, this keeps it working.
*/

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index:9998;
  box-shadow:0 5px 18px rgba(0,0,0,0.25);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.floating-whatsapp:hover{
  transform:scale(1.1);
  box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

.whatsapp-icon{
  font-size:28px;
  font-weight:bold;
}

@media (max-width:600px){

  .floating-whatsapp{
    width:52px;
    height:52px;
    right:16px;
    bottom:16px;
  }

  .whatsapp-icon{
    font-size:25px;
  }

}