/* index.css — Home page specific styles */

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,12,10,.55) 0%, rgba(6,12,10,.3) 40%, rgba(6,12,10,.9) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 2rem; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .3em; color: var(--cyan);
  border: 1px solid var(--border); padding: .4rem 1rem; border-radius: 30px;
  margin-bottom: 2rem; background: rgba(34,212,240,.05);
}
.badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 9vw, 8rem);
  line-height: .95; letter-spacing: .05em; margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.title-line { display: block; color: #fff; }
.title-line.accent {
  background: linear-gradient(135deg, var(--green-bright), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-family: var(--font-serif); font-size: clamp(1rem,2vw,1.25rem); color:#fff; line-height:1.8; margin-bottom:2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
  margin-top: 4rem; padding: 2rem 3rem;
  background: rgba(255,255,255,.03); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 4px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 3rem;
  background: linear-gradient(135deg, var(--green-bright), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-unit { font-family: var(--font-display); font-size: 1.5rem; color: var(--cyan); }
.stat-label { display: block; font-size: .7rem; letter-spacing: .2em; color: var(--text-muted); margin-top: .5rem; text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.scroll-line { width:1px; height:60px; background:linear-gradient(to bottom,var(--cyan),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.4;transform:scaleY(.7)} }

/* SERVICES */
.services { padding: 8rem 0; background: var(--dark-2); }
.section-header { text-align: center; margin-bottom: 4rem; padding: 0 1rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border);
}
.service-card {
  position: relative; background: var(--dark-3); padding: 2.5rem;
  transition: background var(--transition); overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0;
  width:0; height:2px; background:linear-gradient(90deg,var(--green),var(--cyan));
  transition: width var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark-4); }
.service-icon { width: 48px; height: 48px; color: var(--cyan); margin-bottom: 1.5rem; }
.service-num { font-family:var(--font-display); font-size:4rem; color:rgba(34,212,240,.06); position:absolute; top:1rem; right:1.5rem; line-height:1; pointer-events:none; }
.service-card h3 { font-family:var(--font-serif); font-size:1.4rem; font-weight:400; margin-bottom:.75rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.5rem; }
.service-tags span { font-size:.65rem; letter-spacing:.1em; color:var(--green-bright); border:1px solid var(--border-g); padding:.2rem .6rem; border-radius:2px; text-transform:uppercase; }
.service-link { font-size:.8rem; letter-spacing:.1em; color:var(--cyan); transition:color var(--transition); text-transform:uppercase; }
.service-link:hover { color: var(--cyan-light); }
.featured-card { background: var(--dark-4); border: 1px solid var(--border); }
.featured-bg { position:absolute; inset:0; background:radial-gradient(ellipse at bottom right,rgba(34,212,240,.06),transparent 70%); pointer-events:none; }
.services-cta { display:flex; gap:1rem; justify-content:center; margin-top:3rem; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-visual { position: relative; overflow: hidden; }
.about-video-wrap { width:100%; height:100%; }
.about-video { display:block; width:100%; height:100%; object-fit:cover; }
.about-video-overlay { position:absolute; inset:0; background:linear-gradient(to right,transparent 60%,var(--dark-2) 100%),linear-gradient(to bottom,transparent 70%,rgba(6,12,10,.6)); }
.about-accent-box { position:absolute; bottom:2rem; left:2rem; background:rgba(6,12,10,.85); backdrop-filter:blur(12px); border:1px solid var(--border); border-left:3px solid var(--cyan); padding:1.25rem 1.5rem; max-width:320px; }
/* Always-white, not var(--text) — this box sits on the fixed-dark video scrim
   (like .hero-title/.why-card h4), which doesn't lighten with the theme toggle,
   so var(--text) going dark in light mode was making this unreadable. */
.accent-quote { font-family:var(--font-serif); font-style:italic; font-size:1rem; color:#fff; line-height:1.6; }
.about-content { padding:6rem 4rem; background:var(--dark-2); display:flex; flex-direction:column; justify-content:center; }
.about-para { color:var(--text-muted); line-height:1.8; margin-bottom:1.25rem; font-size:.95rem; }
.mvv-grid { display:grid; grid-template-columns:1fr; gap:1rem; margin-top:2rem; }
.mvv-card { padding:1.25rem; border:1px solid var(--border); border-radius:4px; background:var(--dark-3); transition:background var(--transition),border-color var(--transition); }
.mvv-card:hover { background:var(--dark-4); border-color:var(--cyan); }
.mvv-icon { font-size:1.5rem; margin-bottom:.5rem; }
.mvv-card h4 { color:var(--cyan); font-size:.9rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.5rem; }
.mvv-card p { color:var(--text-muted); font-size:.85rem; line-height:1.6; }
.values-accordion { margin-top:1rem; }
.value-item { border-bottom:1px solid rgba(34,212,240,.2); }
.value-header { padding:.75rem 0; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-weight:300; color:var(--text); transition:.2s; }
.value-header:hover { color:var(--cyan); }
.value-content { max-height:0; overflow:hidden; transition:max-height .4s ease-out; }
.value-content p { padding-bottom:12px; color:var(--text-muted); font-size:.85rem; line-height:1.6; }
.value-item.active .value-content { max-height:100px; }
.value-item.active .value-header span { transform:rotate(45deg); display:inline-block; color:var(--cyan); }

/* WHY */
.why { position:relative; padding:8rem 0; overflow:hidden; }
.why-bg-video { position:absolute; inset:0; }
.why-bg-video video { width:100%; height:100%; object-fit:cover; }
.why-overlay { position:absolute; inset:0; background:rgba(6,12,10,.84); }
.why-content { position:relative; z-index:1; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }
.why-card { background:rgba(255,255,255,.02); border:1px solid rgba(34,212,240,.12); border-radius:4px; padding:2rem 1.5rem; text-align:center; transition:background var(--transition),border-color var(--transition),transform var(--transition); backdrop-filter:blur(8px); }
.why-card:hover { background:rgba(34,212,240,.05); border-color:var(--cyan); transform:translateY(-6px); }
.why-icon { font-size:2rem; display:block; margin-bottom:1rem; }
.why-card h4 { color:#fff; font-size:.95rem; margin-bottom:.75rem; }
.why-card p { color:rgba(255,255,255,.5); font-size:.85rem; line-height:1.6; }

/* CONTACT */
.contact { padding:8rem 0; background:var(--dark-2); }
.contact-wrap { display:grid; grid-template-columns:1fr 1.2fr; gap:5rem; align-items:start; }
.contact-info p { color:var(--text-muted); line-height:1.7; margin-bottom:2rem; }
.contact-details { display:flex; flex-direction:column; gap:1.5rem; }
.contact-item { display:flex; gap:1rem; align-items:flex-start; }
.contact-icon { font-size:1.2rem; flex-shrink:0; }
.contact-item strong { display:block; color:var(--text); font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.25rem; }
.contact-item p { color:var(--text-muted); font-size:.9rem; line-height:1.6; margin:0; }
.contact-item a { color:var(--cyan); }
.contact-form { background:var(--dark-3); border:1px solid var(--border); padding:2.5rem; border-radius:4px; }
.contact-form h3 { font-family:var(--font-serif); font-size:1.5rem; font-weight:300; margin-bottom:2rem; }

@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .about{grid-template-columns:1fr;}
  .about-visual{min-height:400px;}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .contact-wrap{grid-template-columns:1fr;gap:3rem;}
}
@media(max-width:768px){
  .services,.why,.contact{padding:5rem 0;}
  .hero-stats{flex-direction:column;gap:1.5rem;padding:1.5rem;}
  .stat-divider{width:50px;height:1px;}
  .services-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .about-content{padding:3rem 1.5rem;}
  .services-cta{flex-direction:column;align-items:center;}
}

/* DIRECTOR'S MESSAGE */
.director-msg { padding: 6rem 0; background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.director-msg-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.director-msg-quote-mark { font-family: var(--font-serif); font-size: 4rem; line-height: .5; color: var(--cyan); opacity: .5; margin: 0 0 1rem; }
.director-msg-text { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.9; color: var(--text); white-space: pre-line; margin-bottom: 2rem; }
.director-msg-sig { display: flex; flex-direction: column; gap: .2rem; }
.director-msg-name { font-family: var(--font-display); letter-spacing: .1em; font-size: 1.1rem; color: var(--cyan); }
.director-msg-title { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }

/* SHIPPING LANE — a port cross-section: fixed skyline backdrop, a yard patch the crane
   stands on (distinct from the sea so it doesn't read as standing in water), a sea band
   ships hold to one waterline in, a road band trucks hold to one road line in, and a
   plane crossing the sky. Ship/plane keep their own illustrated colors; crane/truck/
   container are solid brand-color silhouettes via an SVG alpha mask (exact colors,
   not a hue-rotate guess). */
.shipping-lane { position:relative; height:220px; overflow:hidden; background:#0b1410; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.lane-row { position:relative; width:100%; height:100%; }
.lane-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:bottom; filter:brightness(0) invert(1); opacity:.08; }
.lane-yard { position:absolute; left:0; width:24%; top:56%; bottom:9%; background:#141a17; border-top:1px solid rgba(34,212,240,.1); }
.lane-sea { position:absolute; left:24%; right:0; top:56%; height:26%; background:linear-gradient(to bottom, rgba(34,212,240,.08), rgba(34,212,240,.03)); border-top:1px solid rgba(34,212,240,.14); }
.lane-road { position:absolute; left:0; right:0; bottom:0; height:9%; background:#161c1f; }
.lane-road::after { content:""; position:absolute; left:0; right:0; top:50%; height:2px; transform:translateY(-50%); background-image:repeating-linear-gradient(to right, rgba(255,255,255,.22) 0 18px, transparent 18px 38px); }
.lane-svg { position:absolute; inset:0; }

#lane-plane { fill:var(--cyan-light); opacity:.85; }
#lane-crane { fill:var(--cyan); opacity:.6; }
#lane-lift  { fill:#d9822b; opacity:.85; }
#lane-ship-1 { opacity:.85; }
#lane-ship-2 { opacity:.4; }
#lane-truck-1 { fill:var(--green); opacity:.85; }
#lane-truck-2 { fill:var(--green); opacity:.4; }

@media (prefers-reduced-motion: reduce) {
  .lane-svg animate { display: none; }
}

@media (max-width: 768px) {
  .director-msg { padding: 4rem 0; }
  .director-msg-text { font-size: 1rem; }
  .shipping-lane { height: 130px; }
}

/* Social Media Icons Styling */
.social-links-container {
  margin-top: 25px;
}

.social-links-container strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effects with Official Brand Colors */
.social-icon:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.social-icon.whatsapp:hover { background-color: #25D366; }
.social-icon.facebook:hover { background-color: #1877F2; }
.social-icon.instagram:hover { background-color: #E4405F; }
.social-icon.threads:hover { background-color: #000000; }
.social-icon.twitter:hover { background-color: #000000; }