/* ============================================
   AMAZING GALLERY EXPEDITIONS
   Global Style Sheet
   Premium Tanzania Travel Brand
   Earthy Luxury Palette | Cinematic Atmosphere
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Colors - Earthy Luxury Palette */
  --color-ivory: #faf6f0;
  --color-sand: #f0ebe3;
  --color-charcoal: #2e2a28;
  --color-charcoal-light: #4a4542;
  --color-terracotta: #bc6f3c;
  --color-terracotta-dark: #944f26;
  --color-gold-muted: #c4a77d;
  --color-gold-dark: #a88b63;
  --color-olive: #6b705c;
  --color-white: #ffffff;
  --color-black: #1a1817;
  
  /* Typography */
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, 'Noto Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;
  
  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-calm: all 0.5s ease;
  
  /* Container Widths */
  --container-max: 1280px;
  --container-narrow: 900px;
  
  /* Z-Index Layers */
  --z-negative: -1;
  --z-low: 10;
  --z-medium: 100;
  --z-high: 1000;
  --z-highest: 10000;
}

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-xs);
  color: var(--color-charcoal);
}

h4 {
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-charcoal-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Pre-heading styling (e.g., "DISCOVER TANZANIA") */
.pre-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

/* Section spacing */
.section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-full {
  padding: var(--spacing-xl) var(--spacing-md);
  width: 100%;
}

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
}

.section-dark p {
  color: #d4cfca;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

/* ---------- CONTAINERS & GRIDS ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-low);
}

.hero h1 {
  margin-bottom: var(--spacing-sm);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

/* Hero overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
    justify-content: flex-start;
  }
  .hero-content {
    margin: 0;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* ---------- CARDS ---------- */
.card {
  background: transparent;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
  transition: transform 0.5s ease;
}

.card:hover .card-image {
  transform: scale(1.03);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.card-link {
  color: var(--color-terracotta);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link:hover {
  color: var(--color-terracotta-dark);
  gap: 0.5rem;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background-color: var(--color-sand);
  padding: var(--spacing-md) var(--spacing-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--spacing-md);
  text-align: center;
}

.trust-item {
  padding: var(--spacing-sm);
}

.trust-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--spacing-sm);
  color: var(--color-terracotta);
}

.trust-item h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.75rem;
  color: var(--color-charcoal-light);
  margin-bottom: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  quotes: none;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--color-gold-muted);
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-family: var(--font-serif);
  margin-bottom: var(--spacing-sm);
  color: var(--color-ivory);
}

.footer-column p {
  color: #b8b2ab;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #b8b2ab;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-terracotta);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #8a847d;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-high);
  background-color: transparent;
  transition: var(--transition-calm);
  padding: var(--spacing-sm) var(--spacing-md);
}

.header-scrolled {
  background-color: var(--color-ivory);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem var(--spacing-md);
}

.header-scrolled .nav-link {
  color: var(--color-charcoal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
}

.header-scrolled .logo {
  color: var(--color-charcoal);
}

.nav-links {
  display: none;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--color-terracotta);
}

.header-scrolled .nav-link {
  color: var(--color-charcoal);
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: var(--z-high);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.header-scrolled .mobile-menu-btn span {
  background-color: var(--color-charcoal);
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-ivory);
  z-index: var(--z-high);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  margin-top: var(--spacing-xl);
}

.mobile-menu-links li {
  margin-bottom: var(--spacing-md);
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-charcoal);
}

.close-menu {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-charcoal);
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }

/* ---------- RESPONSIVE IMAGES ---------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .header, .footer, .hero-buttons, .btn, .mobile-menu-btn {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}
.popup-container {
    background: #faf6f0;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
}
.popup-progress {
    display: flex;
    margin-bottom: 30px;
    gap: 5px;
}
.progress-step {
    flex: 1;
    text-align: center;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 2px solid #ddd;
    color: #666;
}
.progress-step.active {
    border-bottom-color: #bc6f3c;
    color: #bc6f3c;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.step-heading {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.option-card {
    background: white;
    border: 1px solid #e0dbd4;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.option-card.selected {
    border-color: #bc6f3c;
    background: rgba(188,111,60,0.05);
}
.option-icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    stroke: #2e2a28;
}
.option-label {
    font-weight: 500;
    display: block;
}
.option-desc {
    font-size: 11px;
    color: #888;
}
.form-group {
    margin-bottom: 16px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.btn-prev, .btn-next, .btn-submit {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.btn-prev {
    background: #eee;
}
.btn-next, .btn-submit {
    background: #bc6f3c;
    color: white;
}
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.success-message.active {
    display: block;
}
.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.checkbox-group {
    display: flex;
    align-items: center;
}
.checkbox-group input {
    width: auto;
    margin-right: 10px;
}
/* ============================================
   MINIMALIST POPUP FORM - ASILIA STYLE
   No Icons | No Emojis | Premium & Calm
   ============================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.popup-container {
    background-color: #faf6f0;
    width: 90%;
    max-width: 620px;
    max-height: 85vh;
    border-radius: 4px;
    overflow-y: auto;
    position: relative;
    padding: 40px 32px;
}

@media (max-width: 768px) {
    .popup-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 24px 20px;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2e2a28;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.popup-close:hover {
    opacity: 1;
}

.popup-progress {
    margin-bottom: 32px;
}

.progress-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #bc6f3c;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.progress-line {
    height: 1px;
    background-color: #e0dbd4;
    border-radius: 1px;
}

.progress-line-fill {
    width: 0%;
    height: 100%;
    background-color: #bc6f3c;
    transition: width 0.3s ease;
}

.popup-heading {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 26px;
    font-weight: 400;
    color: #2e2a28;
    margin-bottom: 12px;
    line-height: 1.3;
}

.popup-subheading {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #4a4542;
    line-height: 1.5;
    margin-bottom: 32px;
}

.step-heading {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 400;
    color: #2e2a28;
    margin-bottom: 24px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.options-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.pill-btn {
    background: transparent;
    border: 1px solid #e0dbd4;
    padding: 10px 20px;
    border-radius: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #2e2a28;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-btn:hover {
    border-color: #bc6f3c;
}

.pill-btn.active {
    background-color: #bc6f3c;
    border-color: #bc6f3c;
    color: white;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

.form-group {
    flex: 1;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2e2a28;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0dbd4;
    background: transparent;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #2e2a28;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #bc6f3c;
}

.checkbox-group {
    margin: 16px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #4a4542;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
}

.btn-prev {
    background: transparent;
    border: 1px solid #e0dbd4;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2e2a28;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-prev:hover {
    border-color: #bc6f3c;
}

.btn-next,
.btn-submit {
    background-color: #bc6f3c;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    background-color: #944f26;
}

.step-error {
    margin-top: 8px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: #bc6f3c;
}

.error-message {
    color: #bc6f3c;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 32px;
    color: #bc6f3c;
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: 400;
    color: #2e2a28;
    margin-bottom: 16px;
}

.success-message p {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #4a4542;
    line-height: 1.6;
    margin-bottom: 16px;
}

.whatsapp-note {
    margin-top: 24px;
    font-size: 13px;
}

.whatsapp-note a {
    color: #bc6f3c;
    text-decoration: none;
}

.whatsapp-note a:hover {
    text-decoration: underline;
}

.btn-close-success {
    background-color: #2e2a28;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.2s;
}

.btn-close-success:hover {
    background-color: #bc6f3c;
}
/* ============================================
   SINGLE WHATSAPP BUTTON (Bottom-Right)
   Premium | Subtle | No Green
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #6b705c;  /* Muted olive */
    color: #faf6f0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 48px;
    text-decoration: none;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover {
    background-color: #4a5238;
    transform: translateY(-2px);
}

.whatsapp-float svg {
    stroke: #faf6f0;
    stroke-width: 1.8;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
    }
    
    .whatsapp-float span {
        display: inline;  /* Show text on mobile too */
    }
}

/* Remove old floating buttons if any */
.mobile-floating-buttons {
    display: none;
}