/* ==========================================================================
   369 GLOBAL EXPORTS - PREMIUM B2B STYLING
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Marcellus&display=swap');

/* --- CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  /* Color Palette */
  --bg-ivory: #FAF9F6;
  --bg-charcoal: #121212;
  --bg-charcoal-light: #1C1C1C;
  --bg-card: #FFFFFF;
  --text-dark: #121212;
  --text-light: #4A4A4A;
  --text-muted: #7E7E7E;
  --text-white: #FFFFFF;
  
  /* Brand Accents */
  --accent-gold: #C5A059;
  --accent-gold-hover: #D7B570;
  --accent-bronze: #8E6F3E;
  --accent-bronze-light: #A3844D;
  --accent-gold-rgba: rgba(197, 160, 89, 0.1);
  --accent-gold-rgba-strong: rgba(197, 160, 89, 0.3);
  
  /* Borders and Dividers */
  --border-hairline: rgba(18, 18, 18, 0.08);
  --border-hairline-strong: rgba(18, 18, 18, 0.15);
  --border-gold-hairline: rgba(197, 160, 89, 0.3);
  --border-dark-hairline: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-serif: 'Marcellus', serif;
  --font-sans: 'Inter', sans-serif;

  /* Layout and Spacing */
  --max-width: 1400px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-ivory);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

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

/* Section Eyebrow (Small caps label) */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  max-width: 600px;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

.hairline-divider {
  height: 1px;
  background-color: var(--border-hairline);
  width: 100%;
}

.bg-dark-section {
  background-color: var(--bg-charcoal);
  color: var(--bg-ivory);
}

.bg-dark-section .section-title,
.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--bg-ivory);
}

.bg-dark-section .hairline-divider {
  background-color: var(--border-dark-hairline);
}

/* --- BUTTONS & CALL-TO-ACTIONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0; /* Strict corporate edges */
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-charcoal);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-ivory);
  border: 1px solid rgba(250, 249, 246, 0.3);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--bg-charcoal);
  color: var(--bg-ivory);
}

.btn-dark:hover {
  background-color: #000;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-hairline);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background-color: rgba(250, 249, 246, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  font-weight: 400;
  display: flex;
  align-items: center;
}

.logo-monogram {
  font-family: var(--font-serif);
  color: #1B5E20;
  border: 2px solid #1B5E20;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-right: 14px;
  line-height: 1;
  background: transparent;
  transition: var(--transition-smooth);
}

.logo-monogram.simplified {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  margin-right: 12px;
  color: #1B5E20;
  border: 2px solid #1B5E20;
}

.logo-accent {
  color: var(--accent-gold);
  margin-left: 4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--bg-charcoal);
  color: var(--bg-ivory);
  padding: calc(var(--header-height) + 4rem) 0 4rem 0; /* Add top padding to clear fixed header and bottom padding for responsiveness */
  overflow: hidden;
}

.hero-title,
.hero-subtitle,
.hero .section-eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero .section-eyebrow {
  margin-bottom: 2rem;
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.3em;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.1) brightness(0.85);
  transition: var(--transition-smooth);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 20%, rgba(18, 18, 18, 0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  color: var(--bg-ivory);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(250, 249, 246, 0.8);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* --- ABOUT US SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text-content {
  padding-right: 2rem;
}

.about-lead {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-body {
  margin-bottom: 3rem;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.stat-item {
  border-left: 1px solid var(--accent-gold);
  padding-left: 1.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.about-image-wrapper {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-wrapper:hover .about-image {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent-gold);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover::after {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

/* Owner info styling - now below image */
.owner-info {
  text-align: center;
  padding-top: 1.5rem;
}

.owner-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.owner-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 0.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.owner-caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0;
  font-style: italic;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--accent-gold);
  z-index: -1;
  pointer-events: none;
}

/* --- PRODUCTS SECTION --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-hairline);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-image-container {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--bg-charcoal);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  opacity: 0.95;
}

.product-card:hover .product-image {
  transform: scale(1.05);
  opacity: 1;
}

.product-info {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.product-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.product-card:hover .product-title {
  color: var(--accent-gold);
}

/* --- WHY CHOOSE US SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.why-card {
  padding: 3rem 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-hairline);
  transition: var(--transition-smooth);
  position: relative;
}

.why-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: inline-block;
  font-weight: 300;
}

.why-card-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

/* --- GLOBAL REACH SECTION --- */
.global-reach-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.global-text {
  padding-right: 2rem;
}

.global-description {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.regions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
}

.region-item {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--bg-ivory);
}

.region-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
}

/* Stylized Vector World Map Container */
.map-visual-container {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--bg-charcoal-light);
  border: 1px solid var(--border-dark-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-svg {
  width: 90%;
  height: 90%;
  opacity: 0.15;
  filter: invert(1);
}

/* Connecting logistics lines & pulse effects */
.map-overlay-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.map-point::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  animation: pulse-ring 2.5s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Point Locations relative to Map */
.point-india { top: 58%; left: 63%; }
.point-me { top: 52%; left: 52%; }
.point-europe { top: 38%; left: 45%; }
.point-na { top: 36%; left: 22%; }
.point-sea { top: 62%; left: 72%; }
.point-africa { top: 65%; left: 48%; }

/* --- GALLERY SECTION --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 300px;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--border-hairline);
}

/* Make an asymmetric masonry layout */
.gallery-item.span-2 { grid-column: span 6; height: 350px; }
.gallery-item.span-3 { grid-column: span 8; height: 400px; }
.gallery-item.span-4 { grid-column: span 4; height: 400px; }
.gallery-item.span-6 { grid-column: span 6; height: 450px; }
.gallery-item.span-12 { grid-column: span 12; height: 500px; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: grayscale(20%) contrast(1.05);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.gallery-hover-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-hover-title {
  color: var(--bg-ivory);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-hover-desc {
  color: rgba(250, 249, 246, 0.75);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.03);
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-hover-icon,
.gallery-item:hover .gallery-hover-title,
.gallery-item:hover .gallery-hover-desc {
  transform: translateY(0);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  text-align: center;
  padding: 0 4rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-gold-rgba-strong);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-top: 0.25rem;
}

/* Slider Controls (Minimalist hairlines) */
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.control-btn {
  background: none;
  border: 1px solid var(--border-hairline-strong);
  color: var(--text-dark);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.control-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- CONTACT SECTION --- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

.contact-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-b2b-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-hairline);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: var(--transition-smooth);
}

.contact-card-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.contact-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-b2b-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.contact-info-panel {
  padding-left: 2rem;
  border-left: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  margin-bottom: 2.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 300;
}

.info-address {
  font-style: normal;
  line-height: 1.6;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-charcoal);
  color: rgba(250, 249, 246, 0.6);
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--border-dark-hairline);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3,
.footer-brand-title {
  color: var(--bg-ivory);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.footer-tagline {
  max-width: 320px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-title {
  color: var(--bg-ivory);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

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

.footer-contacts p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contacts i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark-hairline);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 249, 246, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

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

/* --- PERSISTENT FLOATING CONTACT ICONS --- */
.floating-contact-container {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999; /* Ensure visible above everything including lightboxes */
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--bg-charcoal);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.floating-btn i {
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

/* Gentle scale hover (no playful bounce) */
.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background-color: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: var(--bg-ivory);
}

/* Hover Tooltips */
.floating-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--bg-charcoal);
  color: var(--bg-ivory);
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 1px solid var(--accent-gold);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-wrapper {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 1px solid var(--border-gold-hairline);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-caption {
  color: var(--bg-ivory);
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-align: center;
}

.lightbox-subcaption {
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--bg-ivory);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* --- SCROLL ANIMATION CLASSES --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE STYLING (MEDIA QUERIES) --- */
@media (max-width: 1100px) {
  .about-grid, .global-reach-content, .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-text-content {
    padding-right: 0;
  }
  
  .about-image-wrapper {
    height: 400px;
  }
  
  .contact-info-panel {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-hairline);
    padding-top: 4rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  :root {
    --header-height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-hairline);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions {
    display: none; /* Hide WhatsApp button in header on mobile to avoid overcrowding */
  }

  /* Hamburger animations */
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .products-grid, .why-grid, .contact-cards-container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-item, 
  .gallery-item.span-2, 
  .gallery-item.span-3, 
  .gallery-item.span-4, 
  .gallery-item.span-6, 
  .gallery-item.span-12 {
    grid-column: span 12;
    height: 250px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .floating-contact-container {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .floating-tooltip {
    display: none; /* Hide tooltips on touch devices */
  }
  
  .testimonials-slider {
    padding: 0;
  }
  
  .testimonial-item {
    padding: 0 1.5rem;
  }
  
  .lightbox-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

/* --- AUTOMATIC IMAGE CAPTION STYLING --- */
.img-filename-caption {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-top: 0.8rem;
  font-weight: 500;
  display: block;
}

.img-filename-caption.product-caption {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.img-filename-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(4px);
  color: var(--accent-gold);
  padding: 0.6rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
  border-top: 1px solid var(--border-gold-hairline);
  z-index: 10;
}

.gallery-item:hover .img-filename-caption-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* --- EXPORT CATEGORY CARDS (HOME PAGE) --- */
.export-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}
.export-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-hairline);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--bg-charcoal);
}
.export-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.export-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--bg-ivory);
}
.export-card .overlay h3 {
  color: var(--bg-ivory);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.export-card .overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
}
.export-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.export-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .export-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .export-grid {
    grid-template-columns: 1fr;
  }
}

/* Category view more grid */
.category-viewmore {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1000px) {
  .category-viewmore {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .category-viewmore {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PREMIUM PRODUCT GRID & CARDS (Granite, Spices, Herbals)
   ========================================================================== */

.products-grid.premium-grid,
.product-grid.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1100px) {
  .products-grid.premium-grid,
  .product-grid.premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid.premium-grid,
  .product-grid.premium-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-card.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.product-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Product Image Container */
.product-image-container {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-charcoal);
}

/* Backward compatibility - direct image in product-card */
.product-card > .product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition-smooth);
  transform: scale(1.02);
}

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

/* New structure */
.product-image-container .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  transform: scale(1.02);
}

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

/* Product Badge */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gold);
  color: var(--bg-charcoal);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* For backward compat - badge on direct image */
.product-card > .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
}

/* Product Info */
.product-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Backward compatibility for old structure */
.product-card > .info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card > .info > h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.product-card:hover > .info > h3 {
  color: var(--accent-gold);
}

.product-card > .info > .sub {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-card > .info > p:not(.sub) {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* New structure */
.product-category {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.product-card:hover .product-title {
  color: var(--accent-gold);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Product Specs */
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-hairline);
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-specs i {
  color: var(--accent-gold);
  font-size: 0.7rem;
  width: 14px;
  text-align: center;
}

/* CTA Button in card */
.product-info .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Hero subtitle on category pages */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(250, 249, 246, 0.8);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

/* Enhanced About Image Wrapper */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  max-width: 300px;
  margin: 0 auto 2rem;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-wrapper:hover .about-image {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent-gold);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover::after {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--accent-gold);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover::after {
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
}

.about-image-small {
  width: 60%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.about-image-wrapper:has(.about-image-small) {
  height: auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-charcoal);
}

.about-image-column .about-image-wrapper {
  margin-bottom: 0.5rem;
}

.owner-info {
  text-align: center;
  margin-top: 0;
}

.owner-name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.owner-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}

/* Stats grid enhancement */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  border-left: 2px solid var(--accent-gold);
  padding-left: 1.5rem;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Testimonial slider enhancement - compatible with JS */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  text-align: center;
  padding: 0 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-gold-rgba-strong);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.3rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.control-btn {
  background: none;
  border: 1px solid var(--border-hairline-strong);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.control-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.05);
}

/* Enhanced Contact Cards */
.contact-b2b-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: var(--transition-smooth);
}

.contact-b2b-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.contact-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Floating icons enhancement */
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-charcoal);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.floating-btn i {
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  color: var(--bg-ivory);
}

.floating-btn:hover i {
  transform: rotate(10deg) scale(1.1);
}

.floating-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-charcoal);
  color: var(--bg-ivory);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 1px solid var(--accent-gold);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Lightbox enhancement */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border-gold-hairline);
  box-shadow: 0 0 100px rgba(197, 160, 89, 0.15);
  transform: scale(0.92);
  transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 50px;
  background: none;
  border: none;
  color: var(--bg-ivory);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  background: rgba(255,255,255,0.05);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .product-image-container {
    height: 220px;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .about-image-wrapper {
    height: 350px;
  }
  
  .about-image-wrapper::after {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .testimonial-item {
    padding: 0 1.5rem;
  }
}
