/* ============================================
   SIVAKSHI INTERNATIONAL - Premium Export Website
   Color Palette:
   --navy:  #0A1628
   --navy2: #112240
   --gold:  #C9A84C
   --gold2: #E8C96B
   --white: #FFFFFF
   --offwhite: #F5F3EE
   --text:  #2C3E50
   --light: #8892A4
============================================ */

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

:root {
  --navy: #0A1628;
  --navy2: #112240;
  --navy3: #1a3a6b;
  --gold: #C9A84C;
  --gold2: #E8C96B;
  --gold3: #f0d98a;
  --white: #FFFFFF;
  --offwhite: #F5F3EE;
  --text: #2C3E50;
  --light: #8892A4;
  --border: rgba(201, 168, 76, 0.25);
  --glass: rgba(10, 22, 40, 0.75);
  --glass2: rgba(255,255,255,0.07);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 120px;
  margin-bottom: 2rem;
  animation: pulse 1.5s ease infinite;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  animation: loadfill 1.8s ease forwards;
}
@keyframes loadfill { from { width: 0 } to { width: 100% } }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.6 } }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  background: rgba(255,255,255,0.92);
  padding: 3px 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: var(--transition);
}
.nav-logo:hover img {
  background: #fff;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-wa-btn {
  background: #25D366;
  color: white !important;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition) !important;
}
.nav-wa-btn:hover { background: #1ebe5d !important; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.nav-wa-btn::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.55) 60%, rgba(10,22,40,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 750px;
}
.hero-title .highlight { color: var(--gold2); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 2.5rem;
  font-family: 'Playfair Display', serif;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,0.35); }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ===== SECTION COMMONS ===== */
section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--light); line-height: 1.8; max-width: 600px; }

/* ===== ABOUT SECTION (HOME) ===== */
.about-home { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  min-width: 130px;
  box-shadow: var(--shadow);
}
.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem;
  transition: var(--transition);
}
.about-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.15);
}
.about-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.about-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.about-card p { font-size: 0.82rem; color: var(--light); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix { font-size: 1.5rem; }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  display: block;
}

/* ===== PRODUCTS SECTION (HOME) ===== */
.products-home { background: var(--offwhite); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

/* ---- Premium Product Card ---- */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.09);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Gold shimmer border on hover */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold2), #fff6d6, var(--gold));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmerBorder 3s linear infinite paused;
  z-index: 1;
  pointer-events: none;
}
.product-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes shimmerBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shine sweep effect */
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  z-index: 2;
  pointer-events: none;
}
.product-card:hover::after { left: 160%; }

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 70px rgba(201,168,76,0.22), 0 8px 30px rgba(0,0,0,0.1);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }

/* Image overlay on hover */
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-img-wrap::after { opacity: 1; }

/* Floating enquire label on image hover */
.product-img-overlay {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
  white-space: nowrap;
}
.product-card:hover .product-img-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
  z-index: 3;
}

.product-body {
  padding: 1.75rem;
  position: relative;
  z-index: 2;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.product-body p { font-size: 0.9rem; color: var(--light); line-height: 1.7; margin-bottom: 1.25rem; }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.25s ease;
}
.product-tag:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--navy);
}

/* Stars & availability row */
.product-quality-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.product-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.product-avail {
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #27ae60;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.product-avail::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #27ae60;
  animation: availPulse 1.8s ease infinite;
}
@keyframes availPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,174,96,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(39,174,96,0); }
}

/* WhatsApp pulse button */
.btn-pulse {
  position: relative;
  overflow: hidden;
}
.btn-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-pulse:hover::before { transform: scaleX(1); }

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: #060f1c;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; max-width: 300px; }
/* Footer logo — light bg logo on dark footer */
.footer-logo-img {
  height: 44px;
  width: auto;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  padding: 3px 8px;
}
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-contact li span:first-child { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: floatBounce 3s ease infinite;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
@keyframes floatBounce {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-6px) }
}
.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ripple 2s ease infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8 }
  100% { transform: scale(1.5); opacity: 0 }
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px; height: 44px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/ship2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===== ABOUT PAGE ===== */
.company-overview { background: var(--white); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.overview-text p { font-size: 0.95rem; color: var(--light); line-height: 1.9; margin-bottom: 1rem; }
.overview-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}
.mvq-section { background: var(--offwhite); }
.mvq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.mvq-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.mvq-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: var(--gold); }
.mvq-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.mvq-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.mvq-card p { font-size: 0.875rem; color: var(--light); line-height: 1.8; }

/* Export Process Timeline */
.process-section { background: var(--navy); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
  opacity: 0.4;
}
.timeline-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.timeline-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.timeline-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.timeline-step p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ===== PRODUCTS PAGE ===== */
.products-page { background: var(--offwhite); }
.product-full {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  margin-bottom: 3.5rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(201,168,76,0.12);
}
.product-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(201,168,76,0.18), 0 10px 40px rgba(0,0,0,0.1);
}

/* Gold ribbon top */
.product-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3), var(--gold2), var(--gold));
  background-size: 200% 100%;
  animation: goldSlide 3s linear infinite;
  z-index: 5;
}
@keyframes goldSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.product-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-images-col {
  background: #f9f7f3;
  position: relative;
  overflow: hidden;
}

/* Zoom icon overlay on image */
.product-images-col::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 2.5rem;
  background: rgba(10,22,40,0.7);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 4;
}
.product-images-col:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.6s ease;
  display: block;
}
.product-images-col:hover .product-main-img { transform: scale(1.05); }

/* Thumb active indicator */
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--navy);
}
.product-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.55;
  position: relative;
}
.product-thumb:hover { opacity: 0.85; transform: scale(1.03); z-index: 1; }
.product-thumb.active {
  opacity: 1;
  box-shadow: inset 0 0 0 3px var(--gold);
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.product-info-col {
  padding: 3rem;
  background: linear-gradient(160deg, var(--white) 0%, #fffdf7 100%);
  position: relative;
}

/* Decorative gold orb */
.product-info-col::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.product-info-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  position: relative;
}

/* Underline accent on product title */
.product-info-col h2::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  margin-top: 0.5rem;
}

.product-origin {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.product-desc { font-size: 0.95rem; color: var(--light); line-height: 1.85; margin-bottom: 1.75rem; }

.features-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(201,168,76,0.04);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.feature-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(4px);
}
.feature-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--navy);
  flex-shrink: 0;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
}

/* ===== GALLERY PAGE ===== */
.gallery-section { background: var(--offwhite); }
.gallery-category { margin-bottom: 4rem; }
.gallery-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gallery-category-title::before {
  content: '';
  width: 4px; height: 24px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-radius: 2px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 2rem; color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--offwhite); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form-wrap p { font-size: 0.875rem; color: var(--light); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--offwhite);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 2rem;
  color: var(--white);
}
.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text h5 { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif; margin-bottom: 0.2rem; }
.contact-detail-text p { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.map-section { margin-top: 4rem; }
.map-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.social-section { background: var(--navy); padding: 4rem 0; }
.social-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  transition: var(--transition);
  min-width: 100px;
  background: var(--glass2);
}
.social-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-4px); }
.social-card-icon { font-size: 1.75rem; }
.social-card span { font-size: 0.75rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }

/* ===== AOS Animations ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; gap: 1.5rem; border-top: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid, .overview-grid, .contact-grid, .products-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mvq-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
