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

:root {
  --primary: #01316A;
  --secondary: #EC7E09;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-700: #334155;
  --slate-900: #0f172a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--primary); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ─── Navbar ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
#navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}
#navbar.scrolled .nav-logo-main { color: #000 !important; }
#navbar.scrolled .nav-link { color: var(--secondary) !important; }
#navbar.scrolled .nav-link.active { color: #000 !important; }
#navbar.scrolled .nav-hamburger { color: #000 !important; }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s;
}
.nav-logo-main.dark { color: #000; }
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}
.nav-link:hover { color: #000; }
.nav-link.active { color: #000; }
.nav-link.dark { color: var(--secondary); }
.nav-cta {
  background: var(--secondary);
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #d4700a; transform: scale(1.05); color: #fff !important; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
}
.nav-hamburger.dark { color: #000; }
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 0.5rem 0 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  border-bottom: 1px solid #f8fafc;
  transition: color 0.2s;
}
.mobile-menu a.active, .mobile-menu a:hover { color: #000; font-weight: 700; }
.mobile-menu-info {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #000;
}

/* ─── Footer ─── */
footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-main { font-size: 1.5rem; font-weight: 800; color: #fff; }
.footer-logo-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); }
.footer-desc { font-size: 0.8rem; line-height: 1.7; color: var(--slate-300); margin: 1rem 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 9999px;
  color: #fff;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--secondary); }
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.85rem; color: var(--slate-300); transition: color 0.2s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact span { font-size: 0.8rem; color: var(--slate-300); line-height: 1.5; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--primary);
}
.hero-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.hero-panel + .hero-panel { border-left: 1px solid rgba(255,255,255,0.1); }
.hero-panel video,
.hero-panel .hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.hero-panel:hover .hero-img { transform: scale(1.1); }
.hero-overlay { position: absolute; inset: 0; background: rgba(1,49,106,0.4); backdrop-filter: blur(2px); }
.hero-overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition: background 0.5s; }
.hero-panel:hover .hero-overlay-dark { background: rgba(0,0,0,0.1); }
.hero-center-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  z-index: 10;
}
.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--secondary); }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.hero-btn:hover { background: var(--secondary); color: #fff; transform: scale(1.05); }
.hero-bottom-text {
  position: absolute;
  bottom: 2.5rem;
  z-index: 10;
  color: #fff;
}
.hero-bottom-text h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }
.hero-bottom-text p { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.panel-left-text { left: 2.5rem; }
.panel-right-text { right: 2.5rem; text-align: right; }
.divider-line {
  position: absolute;
  top: 0; width: 1px; height: 100%;
  background: rgba(255,255,255,0.1);
  z-index: 5;
}
.div-left { left: 33.33%; }
.div-right { left: 66.66%; }

/* Hero Carousel */
.hero-carousel { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hero-carousel-track { display: flex; height: 100%; transition: transform 0.6s ease; }
.hero-carousel-slide { flex: 0 0 100%; height: 100%; }
.hero-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Sections ─── */
.section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; color: var(--primary); }
.section-title.white { color: #fff; }
.section-divider {
  width: 6rem; height: 4px;
  background: var(--secondary);
  border-radius: 9999px;
  margin-top: 1.5rem;
}

/* ─── Two-Col Grid ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { }

/* ─── Checklist ─── */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 600; color: #000; }
.checklist svg { color: var(--secondary); flex-shrink: 0; }

/* ─── Stats Badge ─── */
.stats-badge {
  position: absolute;
  bottom: -2.5rem; left: -2.5rem;
  background: var(--primary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
  color: #fff;
}
.stats-badge .number { display: block; font-size: 2.5rem; font-weight: 900; }
.stats-badge .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--slate-300); }

/* ─── Rounded Image ─── */
.img-cover {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.img-relative { position: relative; }

/* ─── Product Carousel ─── */
.carousel-section { padding: 6rem 0; background: #f8fafc; overflow: hidden; }
.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.carousel-nav { display: flex; gap: 1rem; }
.carousel-btn {
  padding: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(1,49,106,0.2);
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.carousel-btn:hover { background: var(--primary); color: #fff; }
.product-carousel { overflow: hidden; }
.product-track { display: flex; transition: transform 0.5s ease; }
.product-slide {
  flex: 0 0 33.33%;
  padding: 0 0.75rem;
}
.product-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 24rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover img { transform: scale(1.1); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,49,106,0.9) 0%, rgba(1,49,106,0.2) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-text {
  position: absolute;
  bottom: 0; left: 0;
  padding: 2rem;
  width: 100%;
}
.product-card-text h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  transition: gap 0.2s;
}
.product-card:hover .product-card-link { gap: 0.75rem; }

/* ─── Quality Section ─── */
.quality-section {
  background: var(--primary);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.quality-section::after {
  content: '';
  position: absolute;
  top: 0; right: -25%;
  width: 33%;
  height: 100%;
  background: rgba(236,126,9,0.1);
  transform: skewX(-12deg);
}
.quality-section h2 { color: #fff; }
.quality-section p { color: var(--slate-300); }
.quality-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.quality-icon {
  background: var(--secondary);
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
}
.quality-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.quality-item p { font-size: 0.85rem; color: var(--slate-400); }
.quality-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quality-images img { border-radius: 1rem; width: 100%; height: 250px; object-fit: cover; }
.quality-images img:first-child { margin-top: 3rem; }

/* ─── Stats Section ─── */
.stats-section { padding: 6rem 0; background: #fff; }
.stats-grid {
  position: relative;
}
.stats-map { width: 100%; opacity: 0.15; filter: grayscale(1); }
.stats-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #000; }
.stat-label { font-size: 0.7rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.15em; }

/* ─── Contact Form Section ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-info-icon {
  background: var(--primary);
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: flex;
}
.contact-info-icon svg { color: #fff; }
.contact-info-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.9rem; color: rgba(0,0,0,0.7); }
.form-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-col-2 { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #000;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(236,126,9,0.15);
}
.form-group textarea { resize: none; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 10px 30px rgba(1,49,106,0.2);
}
.btn-submit:hover { background: rgba(1,49,106,0.85); }

/* ─── Page Header ─── */
.page-header {
  background: var(--primary);
  padding: 8rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-header h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: #fff; }
.page-header p { font-size: 1.1rem; color: var(--slate-300); max-width: 40rem; margin: 1rem auto 0; }

/* ─── About Page ─── */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.vision-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.vision-card:hover { transform: translateY(-10px); }
.vision-card.blue { border-bottom: 4px solid var(--secondary); }
.vision-card.orange { border-bottom: 4px solid var(--primary); }
.vision-icon {
  width: 4rem; height: 4rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.vision-icon.blue-bg { background: rgba(1,49,106,0.1); }
.vision-icon.orange-bg { background: rgba(236,126,9,0.1); }
.vision-icon.blue-bg svg { color: var(--primary); }
.vision-icon.orange-bg svg { color: var(--secondary); }
.vision-card h3.blue { color: var(--primary) !important; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.vision-card h3.orange { color: var(--secondary) !important; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.core-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.value-card { text-align: center; padding: 2rem; }
.value-icon {
  width: 5rem; height: 5rem;
  background: #f1f5f9;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-icon svg { color: var(--primary); }
.value-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: #000; }

/* ─── Services Page ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.service-card:hover {
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 4rem; height: 4rem;
  background: rgba(1,49,106,0.05);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--secondary); }
.service-icon svg { color: var(--primary); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { font-size: 0.875rem; line-height: 1.7; color: #000; }

/* How We Work */
.process-section { background: #0f172a; padding: 6rem 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: 2rem;
  height: 2px;
  background: rgba(236,126,9,0.3);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: #0f172a;
  padding: 1.5rem;
  text-align: center;
}
.process-num {
  width: 4rem; height: 4rem;
  background: var(--secondary);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid #1e293b;
}
.process-num span { font-size: 1.1rem; font-weight: 700; color: #fff; }
.process-step h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.8rem; color: #94a3b8; }

/* ─── Export Products Page ─── */
.product-section { padding: 6rem 0; }
.product-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}
.product-row.reverse { flex-direction: row-reverse; }
.product-row-img { flex: 1; }
.product-row-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: transform 0.7s ease;
}
.product-row-img:hover img { transform: scale(1.03); }
.product-row-img { overflow: hidden; border-radius: 1.5rem; }
.product-row-content { flex: 1; }
.product-row-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.product-row-content p { font-size: 1rem; line-height: 1.7; color: #000; margin-bottom: 2rem; }
.product-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2.5rem; }
.product-item { display: flex; align-items: center; gap: 0.5rem; }
.product-item .dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 9999px;
  flex-shrink: 0;
}
.product-item span { font-size: 0.875rem; font-weight: 500; color: #334155; }
.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-inquire:hover { background: var(--secondary); }
.textile-card {
  background: #fcfcfc;
  border: 1px solid #f1f5f9;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 6rem;
}
.textile-card h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.textile-card p { font-size: 1.1rem; max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.textile-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.textile-item {
  background: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
  font-weight: 700; font-size: 0.875rem;
}
.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  box-shadow: 0 10px 30px rgba(236,126,9,0.3);
}
.btn-catalog:hover { background: #d4700a; }
.cta-section { background: #fcfcfc; padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: #000; margin-bottom: 2.5rem; }
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
  transition: gap 0.2s;
}
.btn-text-link:hover { gap: 0.75rem; text-decoration: underline; }

/* ─── Import Products Page ─── */
.import-trust { background: var(--primary); padding: 6rem 0; }
.import-trust h2 { color: #fff; font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 4rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.trust-item h3 { font-size: 1.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 1rem; }
.trust-item p { color: var(--slate-300); font-size: 0.9rem; }

/* ─── Contact Page ─── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-page-info p { font-size: 1.1rem; line-height: 1.8; color: #000; margin-bottom: 3rem; }

/* ─── Fade In Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .core-values { grid-template-columns: 1fr 1fr; }
  .textile-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; height: auto; min-height: 100vh; }
  .hero-panel { flex: none; height: 33vh; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .hero-panel:first-child { border-top: none; }
  .divider-line { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col .order-2 { order: 2; }
  .stats-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-col-2 { grid-column: span 1; }
  .carousel-header { flex-direction: column; align-items: flex-start; }
  .product-slide { flex: 0 0 85%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .vision-grid { grid-template-columns: 1fr; }
  .core-values { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .product-row, .product-row.reverse { flex-direction: column; }
  .textile-items { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .checklist { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .core-values { grid-template-columns: 1fr; }
  .product-items { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── Elementor Compatibility ─── */

/* Remove default body padding Elementor sometimes adds */
.elementor-page .tadeya-page-content {
  padding: 0;
  margin: 0;
}

/* Make Elementor sections truly full width */
.elementor-section.elementor-section-stretched {
  left: 0 !important;
  width: 100% !important;
}

/* Ensure Elementor columns don't override our grid */
.elementor-widget-html .two-col,
.elementor-widget-html .contact-grid,
.elementor-widget-html .footer-grid {
  display: grid;
}

/* Elementor inner section full width fix */
.e-container,
.elementor-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Fix Elementor default margins on HTML widget */
.elementor-widget-html {
  margin: 0;
  padding: 0;
}
.elementor-widget-html .elementor-widget-container {
  margin: 0;
  padding: 0;
}

/* Page content wrapper */
.tadeya-page-content {
  width: 100%;
  overflow-x: hidden;
}
.nav-cta, a.nav-cta, nav a.nav-cta {
  color: #ffffff !important;
  background-color: #EC7E09 !important;
}
.nav-cta:hover {
  background-color: #d4700a !important;
  color: #ffffff !important;
}
.hero {
  height: 100vh !important;
  min-height: 580px !important;
  display: flex !important;
  flex-direction: row !important;
}
.hero .hero-panel {
  flex: 1 1 0 !important;
  height: 100vh !important;
  min-height: 580px !important;
  position: relative !important;
}
.elementor-widget-html,
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}
.hero-panel video {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-panel .hero-img {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-carousel, .hero-carousel-track, .hero-carousel-slide {
  height: 100% !important;
  min-height: 580px !important;
}
.hero-carousel-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 768px) {
  .hero { flex-direction: column !important; height: auto !important; }
  .hero .hero-panel { height: 33vh !important; flex: none !important; }
}
