@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0d0d0d;       /* Deep premium black */
  --secondary-color: #1a1a1a;     /* Charcoal dark */
  --accent-color: #d4af37;        /* Gold accent */
  --accent-hover: #b89324;        /* Darker gold on hover */
  --accent-light: #f4ebd0;       /* Muted soft gold/cream */
  --text-dark: #212529;           /* Dark text */
  --text-muted: #6c757d;          /* Muted body text */
  --bg-light: #fdfdfd;            /* Soft off-white background */
  --bg-dark: #070707;             /* Dark section background */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* Global Reset & Base Styles */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

/* Header & Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 15px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-custom.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 8px 0;
  border-bottom: 1px solid rgba(214, 175, 55, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.navbar-custom.scrolled .nav-link {
  color: var(--primary-color) !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand img {
  height: 65px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--primary-color) !important;
  margin: 0 10px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

/* Buttons */
.btn-premium {
  background-color: var(--accent-color);
  color: var(--primary-color) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 0;
  border: 1px solid var(--accent-color);
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-premium:hover {
  color: var(--accent-color) !important;
  border-color: var(--primary-color);
}

.btn-premium:hover::before {
  width: 100%;
}

.btn-outline-premium {
  background-color: transparent;
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 0;
  border: 1px solid var(--primary-color);
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-outline-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline-premium:hover {
  color: var(--primary-color) !important;
  border-color: var(--accent-color);
}

.btn-outline-premium:hover::before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.scroll-down-indicator:hover {
  color: var(--accent-color);
}

.scroll-down-indicator i {
  font-size: 1.5rem;
  margin-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 60px;
}

.divider-gold {
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.about-img-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: 3px solid var(--accent-color);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover::after {
  transform: translate(-10px, -10px);
}

.about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
}

/* Services Section */
.services-section {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.services-section .section-title {
  color: #ffffff;
}

.service-card {
  background-color: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 175, 55, 0.2);
  background-color: rgba(26, 26, 26, 0.9);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Product Groups Section */
.products-section {
  background-color: var(--bg-light);
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  z-index: 1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-card:hover .product-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.3) 100%);
}

.product-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
  transform: translateY(0);
  opacity: 1;
}

.product-card h4 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.product-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

/* Trust Section (Safe Trade) */
.trust-section {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 80px 0;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.trust-item h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Target Markets */
.markets-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.market-box {
  background-color: #ffffff;
  border-left: 4px solid var(--accent-color);
  padding: 24px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.market-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.market-box h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.market-box p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonial-card {
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 4px;
  height: 100%;
  position: relative;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(214, 175, 55, 0.15);
  position: absolute;
  top: -30px;
  left: -20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-right: 15px;
}

.testimonial-info h5 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--accent-color);
}

/* Carousel Indicators & Controls */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  border: none;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
}

.contact-info-wrapper {
  padding-right: 40px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(214, 175, 55, 0.1);
  border: 1px solid rgba(214, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.contact-info-content h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-content p, .contact-info-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-content a:hover {
  color: var(--accent-color);
}

.contact-form-card {
  background-color: #ffffff;
  padding: 50px;
  box-shadow: var(--shadow-premium);
  border-top: 4px solid var(--accent-color);
}

.form-control-custom {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background-color: #ffffff;
  border-color: var(--accent-color);
  box-shadow: none;
}

label.form-label-custom {
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 25px;
}

.footer-about-text {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 10px;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

/* Animations */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.reveal-active {
  opacity: 1;
}

.reveal-fade-in {
  transform: scale(0.95);
}
.reveal-fade-in.reveal-active {
  transform: scale(1);
}

.reveal-left {
  transform: translateX(-50px);
}
.reveal-left.reveal-active {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(50px);
}
.reveal-right.reveal-active {
  transform: translateX(0);
}

.reveal-up {
  transform: translateY(50px);
}
.reveal-up.reveal-active {
  transform: translateY(0);
}

/* Toast styling override */
.toast-container {
  z-index: 10000;
}
.toast-custom {
  background-color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
  color: #ffffff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
