/* ============================================
   ORGANIC FARM WEBSITE - GLOBAL STYLES
   style.css
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary-green:     #2d6a4f;
  --light-green:       #52b788;
  --pale-green:        #d8f3dc;
  --dark-green:        #1b4332;
  --brown:             #6b4226;
  --light-brown:       #a0522d;
  --cream:             #f9f5f0;
  --warm-white:        #fefefe;
  --text-dark:         #2c2c2c;
  --text-muted:        #6c757d;
  --border-color:      #dee2e6;
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 40px rgba(0,0,0,0.15);
  --transition:        all 0.3s ease;
  --border-radius:     12px;
  --border-radius-lg:  20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin:     0;
  padding:    0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:      'Poppins', sans-serif;
  background-color: var(--cream);
  color:            var(--text-dark);
  line-height:      1.7;
  overflow-x:       hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color:       var(--dark-green);
}

p {
  color:       var(--text-dark);
  font-weight: 400;
}

a {
  text-decoration: none;
  transition:      var(--transition);
}

img {
  max-width: 100%;
  height:    auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background:    var(--primary-green);
  border-radius: 10px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background-color: var(--warm-white) !important;
  box-shadow:       var(--shadow-sm);
  padding:          14px 0;
  transition:       var(--transition);
  position:         sticky;
  top:              0;
  z-index:          1000;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding:    10px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size:   1.6rem;
  font-weight: 700;
  color:       var(--primary-green) !important;
  display:     flex;
  align-items: center;
  gap:         8px;
}

.navbar-brand span {
  color: var(--brown);
}

.navbar-brand .brand-icon {
  font-size: 1.8rem;
}

.nav-link {
  font-weight:   500;
  font-size:     0.95rem;
  color:         var(--text-dark) !important;
  padding:       8px 16px !important;
  border-radius: 8px;
  transition:    var(--transition);
  position:      relative;
}

.nav-link::after {
  content:          '';
  position:         absolute;
  bottom:           4px;
  left:             50%;
  transform:        translateX(-50%);
  width:            0;
  height:           2px;
  background-color: var(--primary-green);
  transition:       var(--transition);
  border-radius:    2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.navbar-toggler {
  border:  none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-cta-btn {
  background-color: var(--primary-green);
  color:            var(--warm-white) !important;
  border-radius:    25px !important;
  padding:          8px 22px !important;
  font-weight:      600 !important;
  transition:       var(--transition) !important;
  border:           2px solid var(--primary-green);
}

.nav-cta-btn:hover {
  background-color: var(--dark-green) !important;
  border-color:     var(--dark-green) !important;
  transform:        translateY(-1px);
  box-shadow:       var(--shadow-sm);
}

.nav-cta-btn::after {
  display: none !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  background-color: var(--primary-green);
  color:            var(--warm-white);
  border:           2px solid var(--primary-green);
  border-radius:    30px;
  padding:          12px 32px;
  font-weight:      600;
  font-size:        0.95rem;
  transition:       var(--transition);
  display:          inline-flex;
  align-items:      center;
  gap:              8px;
  cursor:           pointer;
}

.btn-primary-custom:hover {
  background-color: var(--dark-green);
  border-color:     var(--dark-green);
  color:            var(--warm-white);
  transform:        translateY(-2px);
  box-shadow:       var(--shadow-md);
}

.btn-outline-custom {
  background-color: transparent;
  color:            var(--primary-green);
  border:           2px solid var(--primary-green);
  border-radius:    30px;
  padding:          12px 32px;
  font-weight:      600;
  font-size:        0.95rem;
  transition:       var(--transition);
  display:          inline-flex;
  align-items:      center;
  gap:              8px;
  cursor:           pointer;
}

.btn-outline-custom:hover {
  background-color: var(--primary-green);
  color:            var(--warm-white);
  transform:        translateY(-2px);
  box-shadow:       var(--shadow-md);
}

.btn-brown-custom {
  background-color: var(--brown);
  color:            var(--warm-white);
  border:           2px solid var(--brown);
  border-radius:    30px;
  padding:          12px 32px;
  font-weight:      600;
  font-size:        0.95rem;
  transition:       var(--transition);
  display:          inline-flex;
  align-items:      center;
  gap:              8px;
  cursor:           pointer;
}

.btn-brown-custom:hover {
  background-color: #5a3520;
  border-color:     #5a3520;
  color:            var(--warm-white);
  transform:        translateY(-2px);
  box-shadow:       var(--shadow-md);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  font-size:     2.4rem;
  margin-bottom: 12px;
  position:      relative;
}

.section-subtitle {
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 50px;
  font-weight:   400;
}

.section-badge {
  display:          inline-block;
  background-color: var(--pale-green);
  color:            var(--primary-green);
  font-size:        0.8rem;
  font-weight:      600;
  padding:          5px 16px;
  border-radius:    20px;
  margin-bottom:    14px;
  letter-spacing:   1px;
  text-transform:   uppercase;
}

.title-underline {
  width:            60px;
  height:           4px;
  background-color: var(--primary-green);
  border-radius:    2px;
  margin:           0 auto 20px auto;
}

.title-underline-left {
  margin-left: 0;
}

/* ============================================
   ORGANIC BADGE
   ============================================ */
.organic-badge {
  display:          inline-flex;
  align-items:      center;
  gap:              6px;
  background-color: var(--pale-green);
  color:            var(--primary-green);
  border:           1.5px solid var(--light-green);
  border-radius:    20px;
  padding:          5px 14px;
  font-size:        0.78rem;
  font-weight:      600;
  letter-spacing:   0.5px;
}

/* ============================================
   CARDS
   ============================================ */
.custom-card {
  background-color: var(--warm-white);
  border-radius:    var(--border-radius);
  border:           1px solid var(--border-color);
  box-shadow:       var(--shadow-sm);
  transition:       var(--transition);
  overflow:         hidden;
}

.custom-card:hover {
  box-shadow: var(--shadow-md);
  transform:  translateY(-5px);
}

.crop-card {
  background-color: var(--warm-white);
  border-radius:    var(--border-radius);
  border:           1px solid var(--border-color);
  box-shadow:       var(--shadow-sm);
  transition:       var(--transition);
  overflow:         hidden;
}

.crop-card:hover {
  box-shadow: var(--shadow-md);
  transform:  translateY(-6px);
}

.crop-card .crop-img-wrapper {
  overflow: hidden;
  height:   220px;
}

.crop-card .crop-img-wrapper img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.crop-card:hover .crop-img-wrapper img {
  transform: scale(1.07);
}

.crop-card .card-body {
  padding: 20px;
}

.crop-card .crop-tag {
  display:          inline-block;
  background-color: var(--pale-green);
  color:            var(--primary-green);
  font-size:        0.75rem;
  font-weight:      600;
  padding:          3px 10px;
  border-radius:    12px;
  margin-bottom:    8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background-color: var(--pale-green);
  min-height:       92vh;
  display:          flex;
  align-items:      center;
  position:         relative;
  overflow:         hidden;
  padding:          80px 0;
}

.hero-section::before {
  content:          '';
  position:         absolute;
  top:              -100px;
  right:            -100px;
  width:            500px;
  height:           500px;
  background-color: rgba(82, 183, 136, 0.12);
  border-radius:    50%;
  z-index:          0;
}

.hero-section::after {
  content:          '';
  position:         absolute;
  bottom:           -80px;
  left:             -80px;
  width:            350px;
  height:           350px;
  background-color: rgba(107, 66, 38, 0.06);
  border-radius:    50%;
  z-index:          0;
}

.hero-content {
  position: relative;
  z-index:  1;
}

.hero-title {
  font-size:     3.2rem;
  line-height:   1.25;
  margin-bottom: 20px;
  color:         var(--dark-green);
}

.hero-title .highlight {
  color: var(--primary-green);
}

.hero-title .highlight-brown {
  color: var(--brown);
}

.hero-description {
  font-size:     1.05rem;
  color:         var(--text-muted);
  margin-bottom: 35px;
  max-width:     520px;
  line-height:   1.8;
}

.hero-buttons {
  display:   flex;
  flex-wrap: wrap;
  gap:       14px;
}

.hero-image-wrapper {
  position:      relative;
  z-index:       1;
  border-radius: var(--border-radius-lg);
  overflow:      hidden;
  box-shadow:    var(--shadow-lg);
}

.hero-image-wrapper img {
  width:      100%;
  height:     520px;
  object-fit: cover;
  display:    block;
}

.hero-floating-badge {
  position:         absolute;
  bottom:           30px;
  left:             -20px;
  background-color: var(--warm-white);
  border-radius:    var(--border-radius);
  padding:          16px 20px;
  box-shadow:       var(--shadow-md);
  display:          flex;
  align-items:      center;
  gap:              12px;
  animation:        floatBadge 3s ease-in-out infinite;
  z-index:          2;
}

.hero-floating-badge .badge-icon {
  font-size:        2rem;
  background-color: var(--pale-green);
  width:            50px;
  height:           50px;
  border-radius:    50%;
  display:          flex;
  align-items:      center;
  justify-content:  center;
}

.hero-floating-badge .badge-text strong {
  display:     block;
  font-size:   1rem;
  color:       var(--dark-green);
  font-weight: 700;
}

.hero-floating-badge .badge-text span {
  font-size:  0.78rem;
  color:      var(--text-muted);
  font-weight: 400;
}

.hero-stats {
  display:   flex;
  gap:       30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size:   1.8rem;
  font-weight: 700;
  color:       var(--primary-green);
  display:     block;
}

.hero-stat-item .stat-label {
  font-size:  0.8rem;
  color:      var(--text-muted);
  font-weight: 500;
}

.hero-divider {
  width:            1px;
  height:           50px;
  background-color: var(--border-color);
  align-self:       center;
}

/* ---------- Float Animation ---------- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ============================================
   ORGANIC STRIP (Marquee Bar)
   ============================================ */
.organic-strip {
  background-color: var(--primary-green);
  color:            var(--warm-white);
  padding:          12px 0;
  overflow:         hidden;
}

.organic-strip-inner {
  display:   flex;
  gap:       50px;
  animation: scrollStrip 25s linear infinite;
  width:     max-content;
}

.strip-item {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.strip-dot {
  width:            6px;
  height:           6px;
  background-color: var(--light-green);
  border-radius:    50%;
  flex-shrink:      0;
}

@keyframes scrollStrip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background-color: var(--warm-white);
}

.feature-card {
  background-color: var(--cream);
  border-radius:    var(--border-radius);
  padding:          35px 28px;
  text-align:       center;
  border:           1px solid var(--border-color);
  transition:       var(--transition);
  height:           100%;
}

.feature-card:hover {
  background-color: var(--pale-green);
  border-color:     var(--light-green);
  transform:        translateY(-5px);
  box-shadow:       var(--shadow-md);
}

.feature-icon {
  font-size:        2.5rem;
  background-color: var(--pale-green);
  width:            80px;
  height:           80px;
  border-radius:    50%;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  margin:           0 auto 20px auto;
  transition:       var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--warm-white);
  transform:        rotate(5deg) scale(1.05);
}

.feature-card h5 {
  font-size:     1.1rem;
  margin-bottom: 10px;
  color:         var(--dark-green);
}

.feature-card p {
  font-size:  0.9rem;
  color:      var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
  background-color: var(--cream);
}

.about-img-wrapper {
  position:      relative;
  border-radius: var(--border-radius-lg);
  overflow:      visible;
}

.about-img-main {
  width:         100%;
  height:        480px;
  object-fit:    cover;
  border-radius: var(--border-radius-lg);
  box-shadow:    var(--shadow-md);
}

.about-img-badge {
  position:         absolute;
  top:              -20px;
  right:            -20px;
  background-color: var(--brown);
  color:            var(--warm-white);
  border-radius:    var(--border-radius);
  padding:          20px;
  text-align:       center;
  box-shadow:       var(--shadow-md);
  width:            110px;
}

.about-img-badge strong {
  font-family: 'Playfair Display', serif;
  font-size:   1.8rem;
  display:     block;
  line-height: 1;
}

.about-img-badge span {
  font-size:  0.72rem;
  opacity:    0.9;
  font-weight: 500;
}

.about-check-list {
  list-style: none;
  padding:    0;
  margin:     20px 0 30px;
}

.about-check-list li {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  margin-bottom: 12px;
  font-size:   0.95rem;
  color:       var(--text-dark);
}

.about-check-list li .check-icon {
  color:       var(--primary-green);
  font-size:   1.1rem;
  flex-shrink: 0;
  margin-top:  2px;
}

/* ============================================
   FEATURED CROPS SECTION
   ============================================ */
.featured-crops {
  background-color: var(--warm-white);
}

/* ============================================
   TESTIMONIAL / PROMISE SECTION
   ============================================ */
.promise-section {
  background-color: var(--dark-green);
  color:            var(--warm-white);
}

.promise-section h2 {
  color: var(--warm-white);
}

.promise-section p {
  color: rgba(255,255,255,0.8);
}

.promise-card {
  background-color: rgba(255,255,255,0.08);
  border:           1px solid rgba(255,255,255,0.15);
  border-radius:    var(--border-radius);
  padding:          30px 24px;
  text-align:       center;
  transition:       var(--transition);
}

.promise-card:hover {
  background-color: rgba(255,255,255,0.14);
  transform:        translateY(-4px);
}

.promise-card .promise-icon {
  font-size:     2.2rem;
  margin-bottom: 14px;
  display:       block;
}

.promise-card h5 {
  color:         var(--warm-white);
  margin-bottom: 8px;
  font-size:     1rem;
}

.promise-card p {
  font-size: 0.85rem;
  color:     rgba(255,255,255,0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--pale-green);
  text-align:       center;
}

.cta-section h2 {
  font-size:     2.2rem;
  margin-bottom: 14px;
}

.cta-section p {
  font-size:     1rem;
  color:         var(--text-muted);
  margin-bottom: 30px;
  max-width:     550px;
  margin-left:   auto;
  margin-right:  auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--dark-green);
  color:            var(--warm-white);
  padding:          70px 0 0;
}

.footer-brand {
  font-family:   'Playfair Display', serif;
  font-size:     1.6rem;
  font-weight:   700;
  color:         var(--warm-white);
  margin-bottom: 14px;
  display:       flex;
  align-items:   center;
  gap:           8px;
}

.footer-brand span {
  color: var(--light-green);
}

.footer p {
  color:         rgba(255,255,255,0.7);
  font-size:     0.9rem;
  line-height:   1.8;
  margin-bottom: 20px;
}

.footer h6 {
  color:         var(--warm-white);
  font-family:   'Playfair Display', serif;
  font-size:     1.05rem;
  margin-bottom: 20px;
  position:      relative;
  padding-bottom: 10px;
}

.footer h6::after {
  content:          '';
  position:         absolute;
  bottom:           0;
  left:             0;
  width:            35px;
  height:           2px;
  background-color: var(--light-green);
  border-radius:    2px;
}

.footer-links {
  list-style: none;
  padding:    0;
  margin:     0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color:       rgba(255,255,255,0.7);
  font-size:   0.9rem;
  transition:  var(--transition);
  display:     flex;
  align-items: center;
  gap:         6px;
}

.footer-links a:hover {
  color:         var(--light-green);
  padding-left:  4px;
}

.footer-contact-item {
  display:       flex;
  align-items:   flex-start;
  gap:           10px;
  margin-bottom: 14px;
  color:         rgba(255,255,255,0.7);
  font-size:     0.88rem;
}

.footer-contact-item .contact-icon {
  color:      var(--light-green);
  font-size:  1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap:     10px;
  margin-top: 20px;
}

.social-btn {
  width:            38px;
  height:           38px;
  border-radius:    50%;
  background-color: rgba(255,255,255,0.1);
  color:            var(--warm-white);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  font-size:        0.9rem;
  transition:       var(--transition);
  border:           1px solid rgba(255,255,255,0.15);
}

.social-btn:hover {
  background-color: var(--light-green);
  color:            var(--dark-green);
  transform:        translateY(-2px);
}

.footer-bottom {
  background-color: rgba(0,0,0,0.2);
  margin-top:       50px;
  padding:          18px 0;
  text-align:       center;
}

.footer-bottom p {
  color:     rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin:    0;
}

.footer-bottom a {
  color:      var(--light-green);
  font-weight: 500;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade In Up */
.fade-in-up {
  opacity:           0;
  transform:         translateY(30px);
  transition:        opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity:   1;
  transform: translateY(0);
}

/* Fade In Left */
.fade-in-left {
  opacity:    0;
  transform:  translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity:   1;
  transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
  opacity:    0;
  transform:  translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity:   1;
  transform: translateX(0);
}

/* Delay Classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  background-color: var(--pale-green);
  padding:          80px 0 60px;
  text-align:       center;
  position:         relative;
  overflow:         hidden;
}

.page-hero::before {
  content:          '';
  position:         absolute;
  top:              -60px;
  right:            -60px;
  width:            250px;
  height:           250px;
  background-color: rgba(82,183,136,0.1);
  border-radius:    50%;
}

.page-hero h1 {
  font-size:     2.8rem;
  margin-bottom: 10px;
}

.page-hero p {
  font-size:  1rem;
  color:      var(--text-muted);
  max-width:  500px;
  margin:     0 auto;
}

.breadcrumb {
  background:     transparent;
  justify-content: center;
  margin-top:     12px;
}

.breadcrumb-item a {
  color:      var(--primary-green);
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
  border:        1px solid var(--border-color);
  border-radius: 10px;
  padding:       12px 16px;
  font-size:     0.93rem;
  color:         var(--text-dark);
  background:    var(--warm-white);
  transition:    var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-green);
  box-shadow:   0 0 0 3px rgba(45,106,79,0.12);
  outline:      none;
}

.form-label {
  font-weight:   500;
  font-size:     0.9rem;
  color:         var(--text-dark);
  margin-bottom: 6px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-green { color: var(--primary-green) !important; }
.text-brown         { color: var(--brown)         !important; }
.text-dark-green    { color: var(--dark-green)    !important; }
.bg-pale-green      { background-color: var(--pale-green) !important; }
.bg-cream           { background-color: var(--cream)      !important; }
.bg-primary-green   { background-color: var(--primary-green) !important; }

.rounded-custom     { border-radius: var(--border-radius) !important; }
.rounded-custom-lg  { border-radius: var(--border-radius-lg) !important; }

.shadow-custom-sm   { box-shadow: var(--shadow-sm) !important; }
.shadow-custom-md   { box-shadow: var(--shadow-md) !important; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 991.98px) {
  .hero-title       { font-size: 2.4rem; }
  .section-title    { font-size: 2rem; }
  .hero-image-wrapper img { height: 400px; }
  .hero-floating-badge    { left: 10px; bottom: 15px; }
  .about-img-main         { height: 380px; }
  .about-img-badge        { top: -15px; right: -10px; }
}

@media (max-width: 767.98px) {
  .hero-section     { padding: 60px 0; min-height: auto; }
  .hero-title       { font-size: 2rem; }
  .hero-description { font-size: 0.95rem; }
  .section-padding  { padding: 60px 0; }
  .section-title    { font-size: 1.8rem; }
  .hero-image-wrapper { margin-top: 40px; }
  .hero-image-wrapper img { height: 300px; }
  .hero-floating-badge    { left: 10px; bottom: 10px; padding: 12px 14px; }
  .hero-stats       { gap: 16px; }
  .about-img-main   { height: 280px; }
  .page-hero h1     { font-size: 2rem; }
}

@media (max-width: 575.98px) {
  .hero-title       { font-size: 1.75rem; }
  .hero-buttons     { flex-direction: column; }
  .btn-primary-custom,
  .btn-outline-custom { width: 100%; justify-content: center; }
  .hero-floating-badge { display: none; }
  .about-img-badge  { display: none; }
}

/* ============================================
   FLOATING BUTTONS — Global (All Pages)
   Add to bottom of style.css
============================================ */
.floating-buttons {
  position:   fixed;
  bottom:     30px;
  right:      28px;
  z-index:    9999;
  display:    flex;
  flex-direction: column;
  align-items: flex-end;
  gap:        12px;
}

.float-btn-wrap {
  display:     flex;
  align-items: center;
  gap:         10px;
  position:    relative;
}

.float-tooltip {
  background-color: var(--dark-green);
  color:            var(--warm-white);
  font-size:        0.78rem;
  font-weight:      600;
  padding:          5px 12px;
  border-radius:    20px;
  white-space:      nowrap;
  opacity:          0;
  transform:        translateX(10px);
  transition:       all 0.3s ease;
  pointer-events:   none;
  font-family:      'Poppins', sans-serif;
}

.float-btn-wrap:hover .float-tooltip {
  opacity:   1;
  transform: translateX(0);
}

.float-btn {
  width:            56px;
  height:           56px;
  border-radius:    50%;
  border:           none;
  cursor:           pointer;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  font-size:        1.5rem;
  box-shadow:       0 4px 18px rgba(0,0,0,0.22);
  transition:       all 0.3s ease;
  text-decoration:  none;
  color:            var(--warm-white);
  position:         relative;
}

.float-btn:hover {
  transform:  translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color:      var(--warm-white);
}

.float-call-btn {
  background-color: var(--primary-green);
}

.float-call-btn:hover {
  background-color: var(--dark-green);
}

.float-wa-btn {
  background-color: #25d366;
}

.float-wa-btn:hover {
  background-color: #1da851;
}

/* Pulse ring */
.float-btn::before {
  content:       '';
  position:      absolute;
  top:  0; left: 0;
  width:  100%;
  height: 100%;
  border-radius: 50%;
  background:    inherit;
  opacity:       0.4;
  animation:     pulseRing 2.2s ease-out infinite;
  z-index:       -1;
}

@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: 0.4; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}

@media (max-width: 767.98px) {
  .floating-buttons { bottom: 20px; right: 16px; }
  .float-btn        { width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 575.98px) {
  .float-tooltip { display: none; }
}