/* =============================================
   ELYON ORGANICS LIMITED - Main Stylesheet
   Global | Sections | Components | Animations
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #F5F0E8;
  --cream-dark: #EBE4D8;
  --beige: #E8DFD0;
  --forest-green: #2D5016;
  --forest-green-light: #3A6B1E;
  --golden: #C9A227;
  --golden-light: #E8C547;
  --brown: #6B4423;
  --brown-light: #8B6340;
  --brown-dark: #4A2F17;
  --white: #FFFFFF;
  --text-dark: #2C2416;
  --text-muted: #6B5E4F;
  --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.08);
  --shadow-md: 0 8px 30px rgba(45, 80, 22, 0.12);
  --shadow-lg: 0 16px 50px rgba(45, 80, 22, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --header-height: 120px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest-green);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 100px 0;
}

.bg-cream-dark {
  background-color: var(--cream-dark);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border: 2px solid var(--forest-green);
  color: var(--forest-green);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--forest-green);
  border-color: var(--white);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--forest-green), var(--brown-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  margin: 0 auto 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--golden);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

.preloader-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- Header & Navbar ---------- */
.header {
  z-index: 1030;
  transition: var(--transition);
}

.header .navbar {
  padding: 16px 0;
  transition: var(--transition);
}

.header-top-bar {
  background: rgba(36, 16, 6, 0.95);
  padding: 8px 0;
  font-size: 0.85rem;
  transition: var(--transition);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.header-top-link {
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top-link:hover {
  color: var(--golden-light);
}

.header-top-divider {
  color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .header-top-bar {
  display: none;
}

.header:not(.scrolled) .navbar {
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0.92) 0%,
    rgba(45, 80, 22, 0.65) 70%,
    transparent 100%
  );
  padding-bottom: 24px;
}

.header:not(.scrolled) .logo-name {
  color: var(--white);
}

.header:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.85);
}

.header:not(.scrolled) .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.header:not(.scrolled) .navbar-nav .nav-link:hover,
.header:not(.scrolled) .navbar-nav .nav-link.active {
  color: var(--golden-light);
}

.header:not(.scrolled) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--brown);
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px !important;
  position: relative;
  font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--golden);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--forest-green);
}

.btn-enquiry {
  padding: 10px 24px !important;
  font-size: 0.9rem;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232D5016' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../images/shea-butter.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.85) 0%,
    rgba(74, 47, 23, 0.75) 50%,
    rgba(45, 80, 22, 0.8) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--golden);
  color: var(--golden-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
}

.hero-scroll-indicator a:hover {
  color: var(--golden);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- About ---------- */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--golden);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icon-box {
  background: var(--white);
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.icon-box i {
  font-size: 1.8rem;
  color: var(--forest-green);
  display: block;
  margin-bottom: 8px;
}

.icon-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.experience-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--golden);
}

.exp-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream-dark), var(--beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--forest-green);
  transition: var(--transition);
}

.experience-card:hover .exp-icon {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: var(--white);
}

.experience-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.experience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Products ---------- */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-enquiry-sm {
  padding: 8px 24px;
  font-size: 0.9rem;
}

/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--golden));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Services / Manufacturing ---------- */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--forest-green);
  margin-bottom: 8px;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--forest-green);
  color: var(--white);
}

.process-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.process-arrow {
  color: var(--golden);
  font-size: 1rem;
  flex-shrink: 0;
}

.factory-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.factory-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.factory-image-wrapper:hover .factory-img {
  transform: scale(1.03);
}

/* ---------- Global Export ---------- */
.global-export {
  position: relative;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.export-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.92) 0%,
    rgba(74, 47, 23, 0.88) 100%
  );
}

.export-markets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.market-badge:hover {
  background: var(--golden);
  border-color: var(--golden);
  transform: translateY(-3px);
}

.market-expand {
  border-style: dashed;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item img[src*="logo"] {
  object-fit: contain;
  background: var(--white);
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
  color: var(--white);
  padding: 40px 20px 16px;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-left: 4px solid var(--golden);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--golden);
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--forest-green);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
  background: var(--white);
}

.contact-info-card {
  background: var(--white);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-bottom: 2px;
}

.contact-detail p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail a {
  color: var(--forest-green);
}

.contact-detail a:hover {
  color: var(--golden);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  display: block;
}

.form-success {
  background: var(--forest-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #2b1208 0%, #241006 100%);
  min-height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1010;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 0 48px;
}

.site-footer-copyright {
  color: #9b938c;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.site-footer-logo {
  flex-shrink: 0;
  margin-right: 70px;
}

.site-footer-logo a {
  display: block;
  line-height: 0;
}

.site-footer-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 58px;
  right: 36px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 1025;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--golden);
  transform: translateY(-3px);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}
