/* style.css - Cinematic, Premium, Dynamic Overhaul */
:root {
  /* Dynamic Color Palette */
  --c-dark: #070e0a;
  --c-primary: #112d1c;
  --c-primary-light: #1b422a;
  --c-accent: #e2c071;         /* Premium gold */
  --c-accent-glow: rgba(226, 192, 113, 0.4);
  --c-light: #ffffff;
  --c-offwhite: #f5f8f6;
  --c-gray-text: #64756a;
  
  /* Modern Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --pw: 1280px; /* Page max width */
  
  /* Glass, Shadows & Utilities */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(20px);
  --glass-dark-bg: rgba(10, 17, 13, 0.6);
  --glass-dark-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 8px 24px rgba(17, 45, 28, 0.05);
  --shadow-glow: 0 20px 50px rgba(17, 45, 28, 0.12);
  --shadow-gold: 0 8px 32px var(--c-accent-glow);
  
  --trans-fast: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --trans-mid: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Rest & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--c-offwhite); }
body {
  font-family: var(--font-body);
  color: var(--c-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Animated Blobs for depth */
.blob {
  position: absolute;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
  border-radius: 50%;
  animation: float 25s infinite alternate ease-in-out;
  pointer-events: none;
}
.blob-1 { top: 5%; right: -5%; width: 600px; height: 600px; background: #cce0d4; }
.blob-2 { top: 45%; left: -10%; width: 700px; height: 700px; background: #e8f0eb; animation-delay: -12s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(150px, 150px) scale(1.1) rotate(20deg); }
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.15; }
a { text-decoration: none; color: inherit; transition: var(--trans-fast); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 4px; }

/* Scroll Reveal animation using modern CSS where supported */
.reveal-item {
  animation: revealUp both;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}
@keyframes revealUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Intro Banner */
.intro-banner {
  background: var(--c-light);
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.intro-content { max-width: 900px; margin: 0 auto; }
.intro-lead {
  font-size: 1.5rem; color: var(--c-primary); line-height: 1.6; margin-bottom: 1.5rem;
}
.intro-tags {
  font-weight: 500; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem;
}
.intro-tags .dot { color: rgba(17, 45, 28, 0.3); margin: 0 1rem; font-weight: 400; font-size: 1.2rem; vertical-align: middle; }

/* Global Section Settings */
section { padding: 5.5rem 2rem; }
.section-header { text-align: center; margin-bottom: 4.5rem; max-width: 800px; margin-inline: auto; }
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-accent);
  margin: 2rem auto 0;
  border-radius: 2px;
}
.section-kicker { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--c-accent); margin-bottom: 1rem; font-size: 0.85rem; }
h2 { font-size: 3.8rem; color: var(--c-primary); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.lead { font-size: 1.35rem; color: var(--c-gray-text); line-height: 1.8; }

/* Navigation Glassmorphism */
.glass-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.25rem 2rem; transition: var(--trans-mid);
}
.glass-nav nav {
  max-width: var(--pw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
}
.logo a { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.02em; }
.logo span { color: var(--c-accent); font-style: italic; }
.glass-nav ul { display: flex; gap: 3rem; align-items: center; }
.glass-nav ul li a:not(.nav-btn) {
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-primary-light);
  position: relative; padding-bottom: 6px;
}
.glass-nav ul li a:not(.nav-btn)::after {
  content:''; position: absolute; bottom:0; left:0; width:0; height:1px; background:var(--c-accent); transition:var(--trans-fast);
}
.glass-nav ul li a:not(.nav-btn):hover { color: var(--c-primary); }
.glass-nav ul li a:not(.nav-btn):hover::after { width:100%; }
.nav-btn {
  background: var(--c-primary); color: var(--c-light); padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 500; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(17, 45, 28, 0.2);
}
.nav-btn:hover { background: var(--c-accent); color: var(--c-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Cinematic Hero */
.hero-section {
  position: relative; height: 100vh; min-height: 800px; display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden; color: var(--c-light); text-align: center;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(7, 14, 10, 0.8) 0%, rgba(17, 45, 28, 0.4) 100%);
}
.video-background { position: absolute; inset: 0; z-index: 0; background: #000; }
.video-background video { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 40s infinite alternate ease-in-out; opacity: 0.8; }
@keyframes slowZoom { from {transform:scale(1);} to {transform:scale(1.2);} }

.hero-content {
  position: relative; z-index: 2; max-width: 1000px; padding: 2rem;
  animation: slideFadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideFadeUp { from {opacity:0; transform:translateY(50px);} to {opacity:1; transform:translateY(0);} }

.badge-pill {
  display: inline-block; padding: 0.5rem 1.5rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2.5rem; color: var(--c-accent);
}
#hero-title { font-size: 6rem; margin-bottom: 1.5rem; line-height: 1.05; font-weight: 400; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.text-gradient {
  background: linear-gradient(to right, #ffffff, var(--c-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-content .subtitle { font-size: 1.4rem; color: rgba(255,255,255,0.85); margin-bottom: 3.5rem; font-weight: 300; max-width: 800px; margin-inline: auto; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; }
.cta-button {
  padding: 1.25rem 3rem; border-radius: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.95rem; display: inline-flex; align-items: center; justify-content: center; transition: var(--trans-mid);
}
.primary-glow { background: var(--c-accent); color: var(--c-dark); box-shadow: var(--shadow-gold); border: 1px solid var(--c-accent); position: relative; overflow: hidden; z-index: 1;}
.primary-glow::before {
  content:''; position:absolute; inset:0; background:var(--c-light); z-index:-1; transform:scaleX(0); transform-origin:right; transition:transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.primary-glow:hover::before { transform:scaleX(1); transform-origin:left; }
.primary-glow:hover { box-shadow: 0 12px 40px rgba(255,255,255,0.3); }

.cta-button.outline { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); color: var(--c-light); border: 1px solid rgba(255,255,255,0.3); }
.cta-button.outline:hover { background: var(--c-light); color: var(--c-dark); border-color: var(--c-light); }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; opacity: 0.8; transition: var(--trans-fast); }
.scroll-indicator:hover { opacity: 1; }
.mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.8); border-radius: 12px; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.mouse::before { content:''; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:4px; height:6px; background:var(--c-accent); border-radius:2px; animation: scrollDown 2s infinite cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes scrollDown { 0% {top:6px; opacity:1;} 100% {top:22px; opacity:0;} }

@media (max-height: 800px) {
  .scroll-indicator { display: none; }
}

/* Trust Strip */
.trust-strip {
  display: flex; justify-content: space-around; max-width: var(--pw); margin: -60px auto 4rem; position: relative; z-index: 10;
  background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); 
  border: 1px solid rgba(255,255,255,0.8); padding: 3rem;
  border-radius: 12px; box-shadow: var(--shadow-glow);
}
.trust-item { text-align: center; padding: 0 2rem; }
.trust-item:not(:last-child) { border-right: 1px solid rgba(17, 45, 28, 0.1); }
.trust-num { display: block; font-family: var(--font-heading); font-size: 3.2rem; color: var(--c-primary); font-weight: 500; line-height: 1; margin-bottom: 0.8rem; }
.trust-label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-gray-text); font-weight: 500; }

/* Origin Section - Modern Asymmetrical Grid */
.modern-grid { max-width: var(--pw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 8rem; align-items: center; }
.origin-text p { color: var(--c-gray-text); margin-bottom: 2rem; font-size: 1.15rem; }
.check-list { margin-top: 3rem; }
.check-list li {
  position: relative; padding-left: 2.5rem; margin-bottom: 1.5rem; color: var(--c-primary); font-weight: 500; font-size: 1.1rem;
}
.check-list li::before {
  content:''; position:absolute; left:0; top:6px; width:22px; height:22px;
  background: var(--c-accent); border-radius: 50%; box-shadow: inset 0 0 0 4px var(--c-offwhite);
  transition: var(--trans-fast);
}
.check-list li:hover::before { transform: scale(1.2); box-shadow: inset 0 0 0 2px var(--c-offwhite); }

.origin-images { position: relative; height: 650px; }
.main-img { width: 75%; height: 85%; position: absolute; top:0; right:0; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); z-index: 1; }
.main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.origin-images:hover .main-img img { transform: scale(1.05); }

.floating-img { width: 60%; height: 55%; position: absolute; bottom:0; left:0; border-radius: 8px; overflow: hidden; border: 12px solid var(--c-offwhite); z-index: 2; box-shadow: var(--shadow-glow); transition: var(--trans-mid); }
.floating-img img { width: 100%; height: 100%; object-fit: cover; }
.origin-images:hover .floating-img { transform: translate(-10px, 10px); }

.stat-card {
  position: absolute; bottom: 25%; right: -30px; z-index: 3; background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  padding: 2rem; border-radius: 8px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-glow); text-align: center;
  transition: var(--trans-fast);
}
.stat-card:hover { transform: translateY(-5px); }
.stat-card strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--c-accent); margin-bottom: 0.2rem; }
.stat-card span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-primary); font-weight: 600; }

/* Modern Typographic Offerings */
.products-section { max-width: var(--pw); margin: 0 auto; position: relative; z-index: 2; }
.modern-offerings-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 1000px; margin: 0 auto;
}
.offering-box {
  background: var(--c-light);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm); 
  border-radius: 8px; padding: 4rem 3rem;
  transition: var(--trans-mid); position: relative; overflow: hidden;
}
.offering-box:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: rgba(226, 192, 113, 0.5);
}
.offering-number {
  font-family: var(--font-heading); font-size: 6.5rem;
  color: rgba(17, 45, 28, 0.03); position: absolute; top: -1.5rem; right: 1rem;
  line-height: 1; font-weight: 600; pointer-events: none; transition: var(--trans-slow);
}
.offering-box:hover .offering-number {
  color: var(--c-accent-glow); transform: scale(1.1) translate(-10px, 10px);
}
.offering-box h3 {
  font-size: 1.8rem; margin-bottom: 1.2rem; color: var(--c-primary); font-weight: 600; position: relative; z-index: 1;
}
.offering-box p {
  font-size: 1.15rem; color: var(--c-gray-text); line-height: 1.6; position: relative; z-index: 1;
}

.offerings-cta {
  margin-top: 5rem;
}
.offerings-cta p {
  font-size: 1.35rem; font-weight: 500; color: var(--c-primary); margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-us-section { max-width: var(--pw); margin: 0 auto; position: relative; z-index: 2; padding-top: 2rem; }
.why-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.why-card {
  flex: 1 1 30%; min-width: 320px; max-width: 400px;
  background: var(--c-light); border: 1px solid rgba(0,0,0,0.04); border-radius: 8px;
  padding: 3.5rem 3rem; transition: var(--trans-mid); box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow); border-color: rgba(226, 192, 113, 0.4); }
.why-card strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--c-primary); margin-bottom: 1rem; }
.why-card p { color: var(--c-gray-text); font-size: 1.1rem; line-height: 1.6; }

/* Dark Mode section for Logistics */
.dark-mode-section { background: var(--c-dark); position: relative; overflow: hidden; color: var(--c-light); padding: 7rem 2rem; }
.dark-mode-section::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 50% 120%, rgba(226, 192, 113, 0.15) 0%, transparent 70%); z-index:0; }
.dark-mode-section * { position: relative; z-index: 1; }
.dark-mode-section h2 { color: var(--c-light); }
.neon-text { color: var(--c-accent); text-shadow: 0 0 15px rgba(226, 192, 113, 0.3); }

.glassmorphism {
  background: var(--glass-dark-bg); border: 1px solid var(--glass-dark-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  padding: 4rem 3rem; border-radius: 12px; transition: var(--trans-mid); box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.glassmorphism:hover { transform: translateY(-10px); border-color: rgba(226, 192, 113, 0.4); background: rgba(20, 35, 25, 0.8); box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 40px rgba(226,192,113,0.05); }

.logistics-bullets { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.logistics-bullets li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.25rem; color: rgba(255,255,255,0.9); }
.logistics-bullets .icon { color: var(--c-accent); font-weight: bold; font-size: 1.6rem; line-height: 1; }

/* Contact Section - Modern Layout with Floating Inputs */
.contact-section { max-width: var(--pw); margin: 0 auto; padding: 7rem 2rem; }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr; background: #ffffff; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-glow); border: 1px solid rgba(0,0,0,0.04);
}
.contact-info { background: var(--c-primary); color: var(--c-light); padding: 6rem 5rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;}
.contact-info::after { content:''; position:absolute; bottom:-150px; right:-150px; width:400px; height:400px; border-radius:50%; background:var(--c-primary-light); opacity:0.6; filter:blur(50px); z-index:0; }
.contact-info * { position: relative; z-index: 1; }
.contact-info h2 { color: var(--c-light); font-size: 3.2rem; margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 4rem; font-size: 1.2rem; }
.contact-details p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.contact-details strong { color: var(--c-accent); margin-right: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; }

.contact-form-container { padding: 6rem 5rem; background: #ffffff; }
.modern-form .input-group { position: relative; margin-bottom: 3.5rem; }
.modern-form input, .modern-form textarea, .modern-form select {
  width: 100%; border: none; border-bottom: 2px solid #eaeaea; padding: 12px 0; background: transparent;
  font-family: var(--font-body); font-size: 1.2rem; color: var(--c-primary); transition: var(--trans-fast); border-radius: 0;
}
.modern-form textarea { resize: vertical; margin-top: 10px; }
.modern-form select { color: var(--c-gray-text); cursor: pointer; }
.modern-form input:focus, .modern-form textarea:focus, .modern-form select:focus { outline: none; border-bottom-color: var(--c-accent); }

/* Floating Label Magic */
.modern-form label {
  position: absolute; top: 12px; left: 0; font-size: 1.15rem; color: var(--c-gray-text); transition: var(--trans-fast);
  pointer-events: none; transform-origin: left top;
}
.modern-form input:focus ~ label, .modern-form input:not(:placeholder-shown) ~ label,
.modern-form textarea:focus ~ label, .modern-form textarea:not(:placeholder-shown) ~ label {
  top: -24px; font-size: 0.85rem; color: var(--c-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}

.submit-btn {
  width: 100%; padding: 1.4rem; border: none; border-radius: 4px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
  cursor: pointer; position: relative; transition: var(--trans-mid); margin-top: 2rem;
}
.submit-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }

/* Footer */
#footer { background: var(--c-dark); color: rgba(255,255,255,0.6); padding: 6rem 2rem 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { max-width: var(--pw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; margin-bottom: 5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5rem; }
.footer-brand h3 { color: var(--c-light); font-size: 2.2rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 1.1rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-links a { text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.1em; font-weight: 500; }
.footer-links a:hover { color: var(--c-accent); }
.footer-bottom { text-align: center; font-size: 0.9rem; letter-spacing: 0.05em; }

/* Responsive adjustments */
@media (max-width: 1200px) {
  #hero-title { font-size: 5rem; }
  .modern-grid { grid-template-columns: 1fr; gap: 6rem; }
  .origin-images { height: 500px; max-width: 700px; margin: 0 auto; }
  .modern-offerings-grid { gap: 2rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { padding: 4rem; }
  .contact-form-container { padding: 4rem; }
}

@media (max-width: 992px) {
  .trust-strip { flex-wrap: wrap; gap: 3rem; text-align: center; }
  .trust-item:not(:last-child) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 1.5rem; }
  h2 { font-size: 2.8rem; }
  #hero-title { font-size: 3.5rem; }
  .hero-content { padding: 1rem; }
  .hero-actions { flex-direction: column; }
  .glass-nav ul { display: none; } /* Add a hamburger menu later if needed */
  .modern-offerings-grid { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 3rem; border-radius: 0; box-shadow: none; border-left: none; border-right: none; padding: 2rem; }
  .footer-content { flex-direction: column; text-align: center; gap: 3rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .contact-info, .contact-form-container { padding: 3rem 2rem; }
}
