/* =========================================================
   Sun Chaser Travels — Stylesheet
   Minimal luxury, Maldives guesthouse travel agency
   ========================================================= */

:root {
  /* Brand colors */
  --navy: #10293b;
  --navy-dark: #0a1c29;
  --teal: #4aa79c;
  --teal-light: #cfe8e3;
  --sun: #dc9a4c;
  --sun-dark: #bd7f36;
  --cream: #faf5ec;
  --sand: #f2e9da;
  --ice: #f2f8f8;
  --ink: #23303a;
  --ink-light: #647079;
  --white: #ffffff;
  --border: #e4ddd0;

  /* Type */
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 { font-size: 58px; }
h2 { font-size: 40px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--ink-light); }

a { color: inherit; text-decoration: none; }

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

ul { margin: 0; padding: 0; list-style: none; }

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

section { position: relative; }

.section-pad { padding: 96px 0; }

/* Alternating section backgrounds */
.bg-cream { background: var(--cream); }
.bg-ice { background: var(--ice); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }
.bg-white { background: var(--white); }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-head {
  max-width: 720px;
  margin: 0 0 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p { font-size: 17px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-sun {
  background: var(--sun);
  color: var(--white);
  border-color: var(--sun);
}
.btn-sun:hover { background: var(--sun-dark); border-color: var(--sun-dark); }

.btn-outline {
  background: rgba(6,17,26,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn svg { width: 14px; height: 14px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  /* soft scrim so the logo/nav stay legible over any hero photo,
     regardless of how bright that photo is */
  background: linear-gradient(180deg, rgba(6,17,26,0.55) 0%, rgba(6,17,26,0.28) 65%, rgba(6,17,26,0) 100%);
}
.site-header.solid {
  position: sticky;
  background: var(--navy);
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.logo .logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--teal-light);
  margin-top: 2px;
}
.logo-img {
  display: block;
  height: 42px;
  width: auto;
}
.logo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-light);
  border-bottom-color: var(--teal-light);
}

.header-actions { display: flex; align-items: center; gap: 24px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-page {
  min-height: 48vh;
  align-items: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,17,26,0.5) 0%, rgba(6,17,26,0.4) 35%, rgba(6,17,26,0.88) 100%);
}
.hero-page .hero-bg::after {
  background: linear-gradient(180deg, rgba(6,17,26,0.62) 0%, rgba(6,17,26,0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 90px;
  max-width: 760px;
}
.hero-page .hero-content { padding: 0; max-width: 100%; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-style: italic;
  color: var(--teal-light);
  margin-bottom: 18px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 14px rgba(0,0,0,0.4);
}

.hero h1 {
  color: var(--white);
  font-size: 68px;
  margin-bottom: 22px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 8px 30px rgba(0,0,0,0.35);
}
.hero-page h1 { font-size: 52px; margin-bottom: 0; text-transform: capitalize; }

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 4px 18px rgba(0,0,0,0.35);
}
.hero-page p { margin: 18px auto 0; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Breadcrumb on page hero */
.breadcrumb {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.breadcrumb a { color: var(--teal-light); }

/* =========================================================
   Placeholder image blocks
   ========================================================= */
.ph-img {
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c4a56 0%, #2f7d78 45%, #6cc3b4 100%);
  overflow: hidden;
  border-radius: var(--radius);
}
.ph-img.tone-2 { background: linear-gradient(135deg, #0e2a3d 0%, #1f5f66 55%, #4aa79c 100%); }
.ph-img.tone-3 { background: linear-gradient(135deg, #2b4a3e 0%, #5c8f6d 55%, #cfe0a9 100%); }
.ph-img.tone-4 { background: linear-gradient(135deg, #3a2f22 0%, #a97a4a 55%, #dc9a4c 100%); }
.ph-img.tone-5 { background: linear-gradient(135deg, #0a1c29 0%, #10293b 60%, #4aa79c 100%); }

.ph-img .ph-label {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 0 16px;
}
.ph-img .ph-label em {
  display: inline-block;
  margin-top: 6px;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-family: "Courier New", monospace;
  color: #ffe9c7;
  background: rgba(0,0,0,0.25);
  padding: 3px 8px;
  border-radius: 3px;
}
.ph-img .ph-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  opacity: 0.85;
}
.ph-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px);
}

/* Real photo layer: drop a file at the given path and it covers the
   placeholder automatically. If the file is missing, onerror removes
   the <img>, so the gradient + label placeholder shows through. */
.ph-img .real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  display: block;
}

.hero-bg .ph-img { border-radius: 0; min-height: 100%; height: 100%; }

/* Card image overlay style (like Lily reference dark-gradient photo cards) */
.card-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.card-media .ph-img { border-radius: var(--radius); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.card-media .card-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
}
.card-media .card-label h4 { color: var(--white); margin-bottom: 4px; }
.card-media .card-label span { font-size: 13px; color: rgba(255,255,255,0.8); }

/* =========================================================
   Grids
   ========================================================= */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* =========================================================
   Feature / value cards
   ========================================================= */
.value-card {
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.value-card:hover { box-shadow: 0 18px 40px rgba(16,41,59,0.1); transform: translateY(-4px); }
.value-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--teal);
}
.value-card h4 { margin-bottom: 10px; }
.value-card p { margin: 0; font-size: 15px; }

/* =========================================================
   Offer / package cards
   ========================================================= */
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.offer-card .card-media { aspect-ratio: 16/10; }
.offer-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.offer-tag {
  align-self: flex-start;
  background: var(--teal-light);
  color: var(--navy);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 500;
}
.offer-body h3 { font-size: 22px; margin-bottom: 8px; }
.offer-body p { font-size: 14.5px; flex: 1; }
.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.offer-price { font-family: var(--font-serif); font-size: 22px; color: var(--navy); font-weight: 600; }
.offer-price span { font-family: var(--font-sans); font-size: 12px; color: var(--ink-light); font-weight: 400; text-transform: uppercase; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: var(--sun); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; font-style: italic; color: var(--ink); }
.testimonial-name { font-family: var(--font-serif); font-weight: 600; color: var(--navy); font-size: 16px; margin-top: 12px; }
.testimonial-loc { font-size: 13px; color: var(--ink-light); }

.rating-highlight {
  text-align: center;
}
.rating-highlight .big-rating {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--navy);
}

/* =========================================================
   Gallery (masonry-ish)
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
}
.gallery-grid .g-item { border-radius: var(--radius); overflow: hidden; }
.gallery-grid .g-item .ph-img { border-radius: var(--radius); }
.gallery-grid .g-tall { grid-row: span 2; }

/* =========================================================
   Steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-icon {
  width: 24px; height: 24px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 17px; }
.contact-info-item p { margin: 0; font-size: 14.5px; }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.map-placeholder {
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #dfeee9 0%, #cfe8e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--border);
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 32px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

/* =========================================================
   Properties placeholder page
   ========================================================= */
.coming-soon-badge {
  display: inline-block;
  background: var(--sun);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.property-card { position: relative; }
.property-card .card-media::before {
  content: "Coming Soon";
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: rgba(16,41,59,0.85);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
}
.notify-box {
  background: var(--cream);
  border: 1px dashed var(--sun);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.footer-top {
  position: relative;
  z-index: 2;
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.footer-col .contact-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--teal-light); }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* =========================================================
   Misc utility
   ========================================================= */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.divider-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.5px;
  padding: 14px 0;
  background: var(--sand);
}
.divider-note strong { color: var(--navy); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  .hero h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn span.btn-text { display: none; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 36px; }
  .hero-page h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 60px 0 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
}
/* Modifier: add class="hero-light-bg" to a .hero section when the photo
   behind it is bright/white, so text switches from white-with-shadow
   to dark grey/black instead of washing out. */
.hero.hero-light-bg .hero-bg::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.12) 35%, rgba(255,255,255,0.55) 100%);
}
.hero.hero-light-bg .hero-eyebrow {
  color: #8a929c;
  text-shadow: none;
}
.hero.hero-light-bg h1 {
  color: #182028;
  text-shadow: none;
}
.hero.hero-light-bg p {
  color: #55606b;
  text-shadow: none;
}
.hero.hero-light-bg .breadcrumb {
  color: #6b7280;
  text-shadow: none;
}
.hero.hero-light-bg .breadcrumb a {
  color: var(--navy);
}
.hero.hero-light-bg .btn-outline {
  background: rgba(255,255,255,0.55);
  border-color: rgba(16,41,59,0.35);
  color: var(--navy);
  text-shadow: none;
}
.hero.hero-light-bg .btn-outline:hover {
  background: rgba(255,255,255,0.85);
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

#whatsappBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

#whatsappBtn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

#whatsappBtn svg {
  width: 26px;
  height: 26px;
  display: block;
}
