/* ============================================================
   AL NOOR FASHION — Premium Manufacturing Website
   Design System: Luxury | Minimal | Modern Industrial
   ============================================================ */

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

/* ─── CSS Variables ─── */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --charcoal: #2B2B2B;
  --gold: #00adef;         /* Changed from gold to brand sky blue */
  --gold-light: #4cd2ff;   /* Changed to light sky blue */
  --gold-dark: #0081b5;    /* Changed to dark sky blue */
  --gray-light: #F6F6F6;
  --gray-mid: #E2E2E2;
  --gray-text: #888888;
  --dark-section: #181818;
  --dark-card: #1E1E1E;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 40px rgba(0, 173, 239, 0.25);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 4px;
  --nav-height: 88px;
}

/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Utility Classes ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 80px 0; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 50px;
}
.section-subtitle.white { color: rgba(255,255,255,0.65); }

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0,173,239,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 36px rgba(0,173,239,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  color: var(--white);
}

/* ─── Navigation ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}
#navbar.transparent {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Nav Logo - Natively Transparent */
.nav-logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.nav-logo:hover {
  transform: translateY(-2px);
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
#navbar.scrolled .nav-logo img {
  height: 42px; /* Slightly smaller to fit sticky nav height */
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 26px !important;
  font-size: 12px !important;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17,17,17,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ─── HERO SECTION ─── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/factory-floor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 6s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.8) 0%,
    rgba(17,17,17,0.4) 50%,
    rgba(17,17,17,0.7) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-content { padding: 60px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(0,173,239,0.4);
  border-radius: 2px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 0.5s;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 1.1s;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero Video Panel */
/* Hero Video Panel */
.hero-video-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,173,239,0.25);
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 1s ease forwards 0.6s;
}
.hero-video-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.85), rgba(0, 173, 239, 0.35)), url('../images/factory-floor.jpg') no-repeat center/cover;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.video-play-btn {
  width: 76px;
  height: 76px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 173, 239, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 15px;
  animation: pulse-play 2s infinite;
}
.video-play-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  margin-left: 5px;
}
.video-cover:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(0, 173, 239, 0.9);
}
.video-play-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(0, 173, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0); }
}

.hero-video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,173,239,0.3);
  padding: 10px 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.hero-video-badge svg { width: 18px; height: 18px; fill: var(--gold); }
.hero-video-badge span { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; letter-spacing: 0.5px; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── ABOUT SECTION ─── */
#about {
  background: var(--white);
  padding: 110px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-dark);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 58%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-dark);
  border: 5px solid var(--white);
}
.about-years-badge {
  position: absolute;
  top: 30px;
  left: -25px;
  background: var(--gold);
  padding: 20px 24px;
  border-radius: 3px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-years-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-years-badge .lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.about-content { padding-right: 0; }
.about-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 44px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.about-feature-item:hover {
  background: #F0EAE0;
  transform: translateX(4px);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.about-feature-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}
.about-feature-text span {
  font-size: 12px;
  color: var(--gray-text);
}

/* ─── GALLERY SECTION ─── */
#gallery {
  background: var(--black);
  padding: 110px 0;
}
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-tab {
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ─── WHAT WE MANUFACTURE ─── */
#products {
  background: var(--gray-light);
  padding: 110px 0;
}
.products-header { text-align: center; margin-bottom: 64px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  padding: 44px 32px;
  border-radius: 4px;
  border: 1px solid var(--gray-mid);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); border-color: transparent; }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ─── WHY CHOOSE US ─── */
#why-us {
  background: #111111;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.why-content .section-title { color: var(--white); margin-bottom: 20px; }
.why-content .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 30px; font-size: 1.05rem; }
.why-features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}
.why-feature:hover {
  background: rgba(0, 173, 239, 0.05);
  border-color: rgba(0, 173, 239, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 173, 239, 0.08);
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 173, 239, 0.3);
}
.why-feature strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.5px;
}
.why-feature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  display: block;
}

.why-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 20px;
}
.why-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.why-image-col::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 35px;
  width: 100%;
  max-width: 380px;
  height: 100%;
  border: 2px solid rgba(0, 173, 239, 0.2);
  border-radius: var(--radius);
  z-index: 1;
  transition: var(--transition);
}
.why-image-col:hover::before {
  transform: translate(-10px, 10px);
  border-color: rgba(0, 173, 239, 0.5);
}
.why-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 173, 239, 0.3);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  z-index: 3;
}
.why-caption .big {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.why-caption .small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
  display: block;
}

/* ─── MANUFACTURING PROCESS ─── */
#process {
  background: var(--white);
  padding: 110px 0;
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.process-step {
  flex: 0 0 calc(100% / 9);
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 4px;
}
.process-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,173,239,0.15);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.process-step h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── MACHINERY ─── */
#machinery {
  background: var(--dark-section);
  padding: 110px 0;
}
.machinery-header { text-align: center; margin-bottom: 60px; }
.machinery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.machine-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.machine-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.machine-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.machine-card:hover .machine-img { transform: scale(1.04); }
.machine-info {
  padding: 22px 24px;
}
.machine-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.machine-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.machine-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,173,239,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 12px;
}

/* ─── QUALITY STANDARDS ─── */
#quality {
  background: var(--black);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
#quality::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,173,239,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.quality-header { text-align: center; margin-bottom: 24px; }
.quality-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 70px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.quality-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,173,239,0.15);
  border-radius: 4px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.quality-card:hover {
  background: rgba(0,173,239,0.06);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.quality-icon { font-size: 2.2rem; margin-bottom: 18px; }
.quality-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.quality-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─── STATS / FACILITY ─── */
#facility {
  background: var(--gold);
  padding: 80px 0;
}
.facility-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto;
}

/* ─── INDUSTRIES WE SERVE ─── */
#industries {
  background: var(--gray-light);
  padding: 110px 0;
}
.industries-header { text-align: center; margin-bottom: 64px; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FDF9F3, var(--white));
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,173,239,0.12);
}
.industry-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.industry-card h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 12.5px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--charcoal);
  padding: 110px 0;
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); background: rgba(0,173,239,0.05); transform: translateY(-4px); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 20px;
  right: 28px;
  user-select: none;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.testimonial-divider { width: 36px; height: 1.5px; background: var(--gold); margin-bottom: 20px; }
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-author span { font-size: 12.5px; color: var(--gold); }

/* ─── FAQ ─── */
#faq {
  background: var(--white);
  padding: 110px 0;
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: 3px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
  gap: 20px;
}
.faq-item.open .faq-question { background: var(--black); color: var(--white); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 24px 28px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ─── INQUIRY FORM ─── */
#inquiry {
  background: var(--gray-light);
  padding: 110px 0;
}
.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.inquiry-info h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}
.inquiry-info p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 36px;
}
.inquiry-benefits { display: flex; flex-direction: column; gap: 14px; }
.inquiry-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 500;
}
.inquiry-benefit::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.inquiry-form-box {
  background: var(--white);
  padding: 48px 44px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-mid);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0,173,239,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B08D57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group textarea { height: 120px; resize: vertical; }

.form-file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px dashed var(--gray-mid);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.3s;
  color: var(--gray-text);
  font-size: 0.88rem;
}
.form-file-label:hover { border-color: var(--gold); color: var(--gold); }
.form-file-label input[type="file"] { display: none; }

.form-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--black); margin-bottom: 10px; }
.form-success p { font-size: 0.95rem; color: var(--gray-text); }

/* ─── CONTACT SECTION ─── */
#contact {
  background: var(--black);
  padding: 110px 0;
}
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); background: rgba(0,173,239,0.06); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-card-text a,
.contact-card-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  display: block;
  line-height: 1.6;
}
.contact-card-text a:hover { color: var(--gold); }

.contact-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 580px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-dark);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}

/* ─── FOOTER ─── */
#footer {
  background: #090909;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 173, 239, 0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  display: block;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 173, 239, 0.4);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.footer-contact-item .ico {
  font-size: 15px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}
.footer-copy a {
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}
.footer-copy a:hover {
  color: var(--gold-light);
  text-decoration: underline !important;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── PAGE: CONTACT ─── */
.page-hero {
  height: 380px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/factory-floor.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.6); }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
}
.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav span { color: rgba(255,255,255,0.4); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  padding: 100px 0;
  align-items: start;
}
.contact-detail-box {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 44px 40px;
}
.contact-detail-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
}
.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cdi-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cdi-text strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cdi-text span, .cdi-text a {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  display: block;
}
.cdi-text a:hover { color: var(--gold); }

.contact-hours {
  margin-top: 30px;
  padding: 22px 24px;
  background: var(--black);
  border-radius: 4px;
  color: var(--white);
}
.contact-hours h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact-hours p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── ALERT MESSAGES ─── */
.alert {
  padding: 16px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}
.alert.show { display: block; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding-top: 120px; }
  .hero-video-panel { max-width: 700px; margin: 0 auto; }
  .hero-stats { gap: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 600px; }
  .why-inner { grid-template-columns: 1fr; gap: 50px; }
  .quality-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-inner { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .inquiry-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }
  .process-step { flex: 0 0 calc(33.33% - 10px); margin-bottom: 30px; }
  .machinery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .about-img-accent { display: none; }
  .about-years-badge { top: 20px; left: 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-inner { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .process-step { flex: 0 0 calc(50% - 10px); }
  .section-padding { padding: 70px 0; }
  .machinery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .inquiry-form-box { padding: 32px 24px; }
  .contact-map-wrap { height: 360px; min-height: auto; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .facility-inner { grid-template-columns: 1fr; gap: 30px; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
}

/* ─── Executive Board Section ─── */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.exec-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 24px;
}
.exec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 173, 239, 0.15);
  border-color: var(--gold);
}
.exec-img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--gray-light);
}
.exec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
}
.exec-card:hover .exec-img-wrap img {
  transform: scale(1.03);
}
.exec-info {
  padding: 24px 20px 0;
}
.exec-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 4px;
  font-weight: 600;
}
.exec-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Global Reach Flags Section ─── */
.flags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}
.flag-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
}
.flag-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(0, 173, 239, 0.1);
}
.flag-img-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 173, 239, 0.15);
  background: var(--gray-light);
  flex-shrink: 0;
}
.flag-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for executive, flags and why-us */
@media (max-width: 768px) {
  .exec-grid { grid-template-columns: 1fr; gap: 30px; }
  .exec-img-wrap { height: 360px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-features-list { grid-template-columns: 1fr; }
  .why-image-col { padding-left: 0; }
  .why-image-col::before { left: 15px; }
}

/* ─── Chairman Photo Alignment ─── */
.chairman-img-adjust {
  object-position: center top !important;
}

/* ─── Interactive Gallery Overlays ─── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 173, 239, 0.7);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  z-index: 3;
}
.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-zoom-icon {
  transform: translateY(0);
}
.gallery-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* ─── Premium Lightbox Slideshow Styles ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 100000;
  transition: var(--transition);
}
.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--gold);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  transition: var(--transition);
  user-select: none;
}
.lightbox-arrow:hover {
  background: rgba(0, 173, 239, 0.2);
  border-color: rgba(0, 173, 239, 0.4);
  color: var(--gold);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }
.lightbox-content-wrap {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-caption {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
}
.lightbox-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
}
.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ─── Map Floating Glass Overlay ─── */
.contact-map-wrap {
  position: relative;
}
.map-overlay-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 173, 239, 0.3);
  padding: 24px 28px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  max-width: 320px;
  z-index: 10;
}
.map-overlay-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.map-overlay-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 18px;
}
.map-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 173, 239, 0.3);
  transition: var(--transition);
}
.map-overlay-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--white);
}

@media (max-width: 768px) {
  .map-overlay-card {
    position: static;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: var(--radius);
  }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { right: 20px; top: 20px; }
}

/* ─── Footer Logo Wrapper ─── */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 22px;
}
.footer-logo-wrap:hover {
  transform: translateY(-2px);
}
.footer-logo-wrap img {
  height: 48px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}


