/* ==========================================================================
   DESIGN TOKENS & CONFIGURATION
   ========================================================================== */
:root {
  /* Color Palette */
  --primary-deep-tea: #174A32;
  --secondary-forest: #236B45;
  --accent-gold: #D4A843;
  --accent-gold-hover: #b88e2d;
  --bg-cream: #F7F3E8;
  --dark-charcoal: #17211B;
  --text-dark-gray: #26332B;
  --white: #FFFFFF;
  --card-bg-light: #FFFFFF;

  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark-gray);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-deep-tea);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-deep-tea);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-forest);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(23, 74, 50, 0.2);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-charcoal);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 168, 67, 0.3);
}

.btn-gold-outline {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-gold-outline:hover {
  background-color: var(--accent-gold);
  color: var(--dark-charcoal);
}

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-deep-tea);
}

.btn-full { width: 100%; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-tag.light { color: var(--accent-gold); }

.section-heading {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-heading.light { color: var(--white); }

.section-desc {
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: #55635a;
  font-size: 1.05rem;
}

.section-desc.light { color: #d0d7d3; }

/* ==========================================================================
   NAVBAR SECTION
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  animation: slideDown 0.8s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
}

.navbar-wrapper.scrolled {
  background-color: rgba(23, 74, 50, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.brand-logo-image {
  display: block;
  height: 56px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.15));
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(23,74,50,0.92) 0%, rgba(23,74,50,0.5) 50%, rgba(23,74,50,0.85) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  margin-left: clamp(24px, 6vw, 110px);
  text-align: left;
}

.hero .container {
  width: min(90%, 1200px);
  margin-left: clamp(24px, 6vw, 110px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--accent-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.badge-icon,
.pillar-icon,
.why-icon,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge-icon {
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.hero-heading {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #e0e8e3;
  margin-bottom: 36px;
  max-width: 650px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gold-float-circle {
  position: absolute;
  right: 10%;
  bottom: 15%;
  width: 350px;
  height: 350px;
  border: 2px dashed var(--accent-gold);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(212, 168, 67, 0.12);
  opacity: 0.98;
  animation: floatCircle 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.gold-float-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ==========================================================================
   TRUST / STATS SECTION
   ========================================================================== */
.stats-section {
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 50px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.stat-card:last-child { border-right: none; }

.stat-number, .stat-text {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: #a0ac9e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.pillar-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: var(--primary-deep-tea);
}

.pillar-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
  background-color: rgba(23, 74, 50, 0.03);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--card-bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 168, 67, 0.15);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(23, 74, 50, 0.12);
  border-color: var(--accent-gold);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-deep-tea);
  opacity: 0;
  transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
  opacity: 0.25;
}

.product-body {
  padding: 25px;
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.product-body h3 {
  font-size: 1.3rem;
  margin: 8px 0 12px 0;
}

.product-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

.btn-text {
  font-weight: 700;
  color: var(--primary-deep-tea);
  font-size: 0.9rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
  border-top: 3px solid transparent;
}

.why-card:hover {
  border-top: 3px solid var(--accent-gold);
  transform: translateY(-8px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: #666;
}

/* ==========================================================================
   GLOBAL REACH
   ========================================================================== */
.global-reach-section {
  background-color: var(--dark-charcoal);
  color: var(--white);
}

.global-hub-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.kenya-origin-badge {
  background: var(--primary-deep-tea);
  border: 2px solid var(--accent-gold);
  padding: 15px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.2);
}

.kenya-origin-badge .flag { font-size: 1.8rem; }
.kenya-origin-badge .label { font-weight: 700; letter-spacing: 2px; color: var(--accent-gold); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.country-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.country-chip:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: var(--accent-gold);
  transform: scale(1.03);
}

.country-chip .flag { font-size: 1.4rem; }

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.timeline-container {
  position: relative;
  margin-top: 50px;
}

.timeline-line-bg {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(23, 74, 50, 0.15);
  z-index: 1;
}

.timeline-line-progress {
  height: 100%;
  width: 0%;
  background: var(--accent-gold);
  transition: width 1s ease;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-step {
  background: var(--bg-cream);
  padding: 0 10px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-deep-tea);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 4px solid var(--bg-cream);
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: #666; }

/* ==========================================================================
   QUALITY SECTION
   ========================================================================== */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quality-img-col img {
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  width: 100%;
  height: 570px;
}

.quality-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.quality-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--primary-deep-tea);
  font-weight: 900;
  background: rgba(23, 74, 50, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.check-icon i {
  font-size: 0.7rem;
}

/* ==========================================================================
   CUSTOMIZATION / B2B SECTION
   ========================================================================== */
.customization-card {
  background: linear-gradient(135deg, var(--primary-deep-tea) 0%, var(--secondary-forest) 100%);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

/* Shine Effect Button */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  transition: var(--transition-smooth);
  opacity: 0;
}

.btn-shine:hover::after {
  animation: shine 1.2s ease;
}

/* ==========================================================================
   BIG CTA SECTION
   ========================================================================== */
.big-cta-section {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  overflow: hidden;
}

.big-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1576092768241-dec231879fc3?auto=format&fit=crop&w=2000&q=80') center/cover;
  z-index: -2;
}

.big-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 74, 50, 0.9);
  z-index: -1;
}

.big-cta-heading {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 16px;
}

.big-cta-subheading {
  font-size: 1.15rem;
  color: #d0d7d3;
  margin-bottom: 35px;
}

.cta-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.company-address-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.company-address-box h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.company-address-box p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #444;
}

.b2b-contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--dark-charcoal);
  color: #a0ac9e;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

@keyframes floatCircle {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

@keyframes shine {
  0% { left: -50%; opacity: 0; }
  50% { opacity: 0.5; }
  100% { left: 100%; opacity: 0; }
}

/* Reveal classes handled via JS IntersectionObserver */
.fade-up, .reveal, .reveal-left, .reveal-right, .reveal-stagger {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up { transform: translateY(40px); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-stagger { transform: translateY(30px); }

.fade-up.active,
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-stagger.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .hero-heading { font-size: 2.75rem; }
  .about-grid, .quality-grid, .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline-line-bg { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-deep-tea);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition-smooth);
  }

  .nav-links.active { left: 0; }

  .hero-heading { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ====================================
            FOOTER
====================================*/
.footer{
    background:#0F0F0F;
    border-top:2px solid #B78B47;
    padding:22px 0;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
}

.footer-copy{
    flex:1;
}

.footer-copy p{
    color:#F5F1E8;
    font-size:15px;
    line-height:1.6;
}

.footer-copy span{
    color:#B78B47;
    font-weight:600;
}

.footer-copy a{
    color:#B78B47;
    transition:.35s ease;
}

.footer-copy a:hover{
    color:#E6C88B;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto;
    flex-shrink:0;
}

.footer-right img{
    width:180px;
    transition:.4s;
}

.footer-right img:hover{
    transform:scale(1.05);
}

/*==========================
      SCROLL BUTTON
==========================*/
.scroll-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:rgba(15, 15, 15, 0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.scroll-top:hover{
    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);
}

/*==========================
      RESPONSIVE
==========================*/
@media(max-width:991px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        justify-content:center;
    }

        .footer-right img{
        width:150px;
    }

    .scroll-top{
        width:52px;
        height:52px;
        font-size:18px;
    }

    .footer-copy p{
        font-size:14px;
        line-height:1.5;
    }
}

@media(max-width:576px){
    .footer{
        padding:18px 0;
    }

    .footer-copy p{
        font-size:13px;
        line-height:1.5;
    }

    .footer-right{
        flex-direction:column;
        gap:20px;
    }

    .footer-right img{
        width:130px;
    }
}