/* ==========================================================================
   LAKSHMI TRADERS - PRIMARY STYLESHEET
   Brand Colors: Green (#1E5631), Gold (#D4AF37), White (#FFFFFF), Dark Gray (#1A1D20)
   ========================================================================== */

:root {
  --primary-green: #1E5631;
  --primary-green-dark: #143D21;
  --primary-green-light: #2D6A4F;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #B89528;
  --accent-gold-light: #FFF8E7;
  --dark-gray: #1A1D20;
  --text-dark: #2B2F33;
  --text-muted: #6C757D;
  --light-bg: #F8FAFC;
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 20px 40px rgba(30, 86, 49, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(212, 175, 55, 0.25);
  --transition-fast: all 0.3s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: #FAFCF9;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Section Common Titles */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-green);
  background: rgba(30, 86, 49, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(30, 86, 49, 0.15);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary-green);
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

/* Custom Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B89528 100%);
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E5BD3B 0%, #A6831F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 86, 49, 0.4);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green) !important;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Glassmorphism Navigation Bar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  transition: var(--transition-fast);
}

.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link-custom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  padding: 8px 16px !important;
  border-radius: 20px;
  position: relative;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
  color: var(--primary-green);
  background: rgba(30, 86, 49, 0.06);
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: var(--dark-gray);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  position: absolute;
  z-index: 1;
  right: 70px;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 998;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--accent-gold);
  color: var(--dark-gray);
  transform: translateY(-4px);
}

/* Counter Statistics Section */
.counter-box {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border-bottom: 4px solid var(--primary-green);
  text-align: center;
  transition: var(--transition-fast);
  height: 100%;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-bottom-color: var(--accent-gold);
}

.counter-icon {
  width: 65px;
  height: 65px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px auto;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us Cards */
.feature-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-fast);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0%;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 22px;
}

/* Testimonials Carousel */
.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  margin: 15px;
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: rgba(212, 175, 55, 0.3);
  position: absolute;
  top: 25px;
  right: 25px;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.user-info h5 {
  font-size: 1.1rem;
  margin-bottom: 2px;

}

.user-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Dark Footer */
.footer-dark {
  background: var(--dark-gray);
  color: #D1D5DB;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 5px solid var(--primary-green);
}

.footer-dark h5 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-dark h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9CA3AF;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: var(--dark-gray);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 0.9rem;
}
