/* ============================================================
   Pinky Textile — Global Styles
   Mobile-first, premium corporate design
   Breakpoints: 320 / 480 / 768 / 1024 / 1440
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --clr-bg: #FAF8F5;
  --clr-bg-alt: #F2EDE7;
  --clr-beige: #E8E0D5;
  --clr-gold: #B8956A;
  --clr-gold-dark: #9A7A55;
  --clr-charcoal: #2C2C2C;
  --clr-dark: #1A1A1A;
  --clr-body: #4A4A4A;
  --clr-muted: #7A7A7A;
  --clr-border: #E0D8CE;
  --clr-white: #FFFFFF;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid spacing (mobile defaults) */
  --sp-xs: 0.375rem;
  --sp-sm: 0.75rem;
  --sp-md: 1rem;
  --sp-lg: 1.75rem;
  --sp-xl: 2.5rem;
  --sp-2xl: 4rem;

  /* Container padding — fluid */
  --container-pad: 1rem;

  /* Misc */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 100%;
  /* 16px base */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-body);
  background: var(--clr-bg);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 320px;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--clr-gold-dark);
}

ul {
  list-style: none;
}

/* ---------- Typography — Fluid ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-heading);
  color: var(--clr-dark);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: clamp(1.625rem, 5.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.375rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.0625rem, 2.8vw, 1.5rem);
}

p {
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: clamp(0.6875rem, 1.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.section-title {
  margin-bottom: var(--sp-md);
}

.section-desc {
  max-width: 640px;
  color: var(--clr-muted);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  line-height: 1.8;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--sp-xl) 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--sp-md);
}

/* ---------- Buttons — Full-width on mobile ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-family: var(--ff-body);
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9375rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  /* touch target */
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.btn--primary:hover {
  background: var(--clr-gold-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: var(--clr-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border: 1.5px solid var(--clr-border);
}

.btn--outline-dark:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
  border-color: var(--clr-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}

.site-header--scrolled {
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.site-header--scrolled .nav-link {
  color: var(--clr-dark);
}

.site-header--scrolled .header-logo {
  color: var(--clr-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  font-family: var(--ff-heading);
  font-size: clamp(1.125rem, 3.5vw, 1.4rem);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  flex-shrink: 0;
}

.header-logo span {
  color: var(--clr-gold);
}

/* Desktop nav — hidden by default (mobile-first) */
.nav-links {
  display: none;
  gap: var(--sp-lg);
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--clr-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* Mobile Menu Toggle — 48px touch target */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.site-header--scrolled .menu-toggle span {
  background: var(--clr-dark);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--clr-white);
  z-index: 2000;
  padding: var(--sp-xl) var(--sp-lg);
  transition: right var(--transition);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-sm);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--clr-dark);
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links {
  margin-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-dark);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--clr-beige);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav-cta {
  margin-top: var(--sp-lg);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 26, 26, 0.7) 0%,
      rgba(44, 44, 44, 0.55) 50%,
      rgba(26, 26, 26, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  padding-top: calc(60px + var(--sp-2xl));
  padding-bottom: var(--sp-2xl);
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: clamp(0.625rem, 1.8vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid rgba(184, 149, 106, 0.4);
}

.hero h1 {
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  font-weight: 700;
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(0.875rem, 2.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--clr-charcoal);
  padding: var(--sp-lg) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  text-align: center;
}

.stat-item {
  padding: var(--sp-sm) var(--sp-xs);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1.2;
}

.stat-label {
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--sp-xs);
  letter-spacing: 0.04em;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: var(--sp-lg);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  margin-bottom: var(--sp-sm);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.about-highlight {
  padding: var(--sp-xs) var(--sp-sm);
  border-left: 3px solid var(--clr-gold);
}

.about-highlight strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(1.125rem, 3.5vw, 1.5rem);
  color: var(--clr-dark);
  margin-bottom: 2px;
}

.about-highlight span {
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: var(--clr-muted);
}

/* ---------- Manufacturing ---------- */
.mfg-grid {
  display: grid;
  gap: var(--sp-md);
}

.mfg-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.mfg-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mfg-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
}

.mfg-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
}

.mfg-card h3 {
  margin-bottom: var(--sp-xs);
}

.mfg-card p {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--clr-muted);
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  gap: var(--sp-md);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-md);
}

.product-card h3 {
  color: var(--clr-white);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  margin-bottom: var(--sp-xs);
}

.product-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  line-height: 1.6;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  gap: var(--sp-md);
}

.why-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-white);
  fill: none;
  stroke-width: 2;
}

.why-item h3 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: 4px;
}

.why-item p {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--clr-muted);
}

/* ---------- Infrastructure ---------- */
.infra-content {
  display: grid;
  gap: var(--sp-lg);
}

.infra-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-details {
  display: grid;
  gap: var(--sp-md);
}

.infra-item {
  padding: var(--sp-md);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.infra-item h3 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: var(--sp-xs);
}

.infra-item p {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--clr-muted);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: var(--sp-md);
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  border: 1px solid var(--clr-border);
}

.testimonial-quote {
  font-family: var(--ff-heading);
  font-size: clamp(0.9375rem, 2.3vw, 1.0625rem);
  font-style: italic;
  color: var(--clr-dark);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
  position: relative;
  padding-left: var(--sp-md);
  border-left: 3px solid var(--clr-gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--clr-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--clr-gold-dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--clr-dark);
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
}

.testimonial-role {
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: var(--clr-muted);
}

/* Client Logos */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--clr-border);
}

.client-logo {
  font-family: var(--ff-heading);
  font-size: clamp(0.875rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.client-logo:hover {
  opacity: 0.8;
}

/* ---------- Export & Compliance ---------- */
.compliance-grid {
  display: grid;
  gap: var(--sp-md);
}

.compliance-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  border: 1px solid var(--clr-border);
  text-align: center;
}

.compliance-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto var(--sp-sm);
}

.compliance-card h3 {
  font-size: clamp(0.875rem, 2.2vw, 1rem);
  margin-bottom: var(--sp-xs);
}

.compliance-card p {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  color: var(--clr-muted);
}

/* ---------- Inquiry Form ---------- */
.inquiry-section {
  background: var(--clr-charcoal);
  color: var(--clr-white);
}

.inquiry-grid {
  display: grid;
  gap: var(--sp-lg);
}

.inquiry-info h2 {
  color: var(--clr-white);
}

.inquiry-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-md);
  font-size: clamp(0.875rem, 2.2vw, 1rem);
}

.inquiry-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.inquiry-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  min-width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.inquiry-contact-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
}

.form-group {
  margin-bottom: var(--sp-sm);
}

.form-group label {
  display: block;
  font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-xs);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 1rem;
  /* 16px prevents iOS zoom */
  transition: border-color var(--transition);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}

.form-group select option {
  background: var(--clr-charcoal);
  color: var(--clr-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  gap: var(--sp-sm);
}

/* ---------- Blog Preview ---------- */
.blog-preview-grid {
  display: grid;
  gap: var(--sp-md);
}

.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: var(--sp-md);
}

.blog-card-cat {
  font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-xs);
}

.blog-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin-bottom: var(--sp-xs);
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--clr-dark);
}

.blog-card h3 a:hover {
  color: var(--clr-gold);
}

.blog-card-excerpt {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.blog-card-meta {
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: var(--clr-muted);
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-xl) 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: var(--sp-xl);
}

.footer-brand {
  max-width: 100%;
}

.footer-logo {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
}

.footer-logo span {
  color: var(--clr-gold);
}

.footer-brand p {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.875rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0;
}

.footer-col a {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
  display: block;
  padding: 0.375rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--clr-gold);
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  min-width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--sp-sm);
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 1rem;
  min-height: 48px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.3s ease;
  min-height: 48px;
}

.newsletter-form button:hover {
  background: var(--clr-gold-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  border-color: var(--clr-gold);
  background: var(--clr-gold);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
}

.footer-socials a:hover svg {
  fill: var(--clr-white);
}

/* Footer responsive: 480px — 2-col link columns */
@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ---------- Blog Page ---------- */
.blog-hero {
  background: var(--clr-charcoal);
  padding: calc(60px + var(--sp-xl)) 0 var(--sp-xl);
  text-align: center;
}

.blog-hero h1 {
  color: var(--clr-white);
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: var(--sp-sm) auto 0;
  font-size: clamp(0.875rem, 2.2vw, 1rem);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
}

.blog-cat-pill {
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.blog-cat-pill:hover,
.blog-cat-pill.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.blog-featured {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  display: grid;
  gap: 0;
}

.blog-featured-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: var(--sp-md);
}

.blog-featured-body .blog-card-cat {
  margin-bottom: var(--sp-sm);
}

.blog-featured-body h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  margin-bottom: var(--sp-sm);
}

.blog-featured-body h2 a {
  color: var(--clr-dark);
}

.blog-featured-body h2 a:hover {
  color: var(--clr-gold);
}

.blog-featured-body p {
  color: var(--clr-muted);
  margin-bottom: var(--sp-md);
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
}

.blog-page-grid {
  display: grid;
  gap: var(--sp-md);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable hover transforms on touch devices */
@media (hover: none) {

  .mfg-card:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover img,
  .blog-card:hover .blog-card-image img {
    transform: none;
  }
}

/* ==========================================================
   BREAKPOINT: 480px — Large phones
   ========================================================== */
@media (min-width: 480px) {
  :root {
    --container-pad: 1.25rem;
    --sp-sm: 0.875rem;
    --sp-md: 1.25rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    flex: 1;
    width: auto;
  }

  .newsletter-form button {
    width: auto;
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-form {
    padding: var(--sp-lg);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .mfg-card {
    padding: var(--sp-lg) var(--sp-md);
  }

  .testimonial-card {
    padding: var(--sp-lg);
  }
}

/* ==========================================================
   BREAKPOINT: 768px — Tablets
   ========================================================== */
@media (min-width: 768px) {
  :root {
    --container-pad: 1.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2.5rem;
    --sp-xl: 4rem;
  }

  .header-inner {
    height: 72px;
  }

  .hero-content {
    padding-top: calc(72px + var(--sp-2xl));
    padding-bottom: var(--sp-2xl);
    text-align: left;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .blog-hero {
    padding-top: calc(72px + var(--sp-xl));
  }

  .btn {
    width: auto;
    display: inline-flex;
    padding: 0.875rem 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .mfg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .infra-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .inquiry-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-featured {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured-body {
    padding: var(--sp-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 360px;
  }
}

/* ==========================================================
   BREAKPOINT: 1024px — Desktop
   ========================================================== */
@media (min-width: 1024px) {
  :root {
    --container-pad: 2rem;
  }

  .nav-links {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .mfg-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1.1fr;
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: auto;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .blog-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================
   BREAKPOINT: 1440px — Large desktop
   ========================================================== */
@media (min-width: 1440px) {
  :root {
    --sp-xl: 5rem;
    --sp-2xl: 7rem;
  }

  .container {
    max-width: 1320px;
  }

  .hero-content {
    max-width: 750px;
  }

  .hero-sub {
    max-width: 600px;
  }
}

/* ==========================================================
   PREMIUM ENHANCEMENTS
   ========================================================== */

/* ---------- Sticky Mobile Inquiry FAB ---------- */
.mobile-inquiry-fab {
  display: flex;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: fab-pulse 2.5s infinite;
  -webkit-tap-highlight-color: transparent;
  transition: all var(--transition);
}

.mobile-inquiry-fab:hover {
  background: #1EBE5A;
  transform: scale(1.08);
}

.mobile-inquiry-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-white);
  stroke: none;
}

@keyframes fab-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
  }
}

@media (min-width: 1024px) {
  .mobile-inquiry-fab {
    display: none;
  }
}

/* ---------- Section Divider Lines ---------- */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border) 20%, var(--clr-border) 80%, transparent 100%);
  margin: 0;
}

/* ---------- Process Timeline ---------- */
.process-timeline {
  position: relative;
  padding: var(--sp-md) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: var(--sp-lg);
  bottom: var(--sp-lg);
  width: 2px;
  background: var(--clr-beige);
}

.process-step {
  display: flex;
  gap: var(--sp-md);
  position: relative;
  padding-bottom: var(--sp-lg);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-marker {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.process-step-content h3 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: 4px;
}

.process-step-content p {
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ---------- Export Markets ---------- */
.export-markets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
}

.export-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(184, 149, 106, 0.1);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 100px;
  font-size: clamp(0.6875rem, 1.8vw, 0.75rem);
  color: var(--clr-gold-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Trust Badge Row ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
  padding: var(--sp-md) 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.02em;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ---------- Stat Counter Animate ---------- */
.stat-number {
  transition: opacity 0.6s ease;
}

.stat-number.counting {
  opacity: 0.7;
}

/* ---------- Form Micro-copy ---------- */
.form-note {
  font-size: clamp(0.6875rem, 1.6vw, 0.75rem);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: var(--sp-sm);
  line-height: 1.6;
}

.form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-gold);
  fill: none;
  stroke-width: 1.5;
  vertical-align: -2px;
  margin-right: 2px;
}

/* ---------- Footer Registration ---------- */
.footer-registration {
  font-size: clamp(0.625rem, 1.5vw, 0.6875rem);
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-sm);
  margin-top: var(--sp-sm);
  text-align: center;
}

/* ---------- Subtle Texture on Alt Sections ---------- */
.section--alt {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 149, 106, 0.02) 0%, transparent 50%);
}

/* ---------- Enhanced Card Depth ---------- */
.mfg-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mfg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.compliance-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.compliance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

/* ---------- Staggered Reveal ---------- */
.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--clr-gold);
  z-index: 1100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Hero Scroll Indicator ---------- */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-hint 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
}

@keyframes scroll-hint {

  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(6px);
  }
}

@media (max-width: 479px) {
  .hero-scroll {
    display: none;
  }
}

/* ---------- Responsive Process Timeline ---------- */
@media (min-width: 768px) {
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md) var(--sp-xl);
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Floating Call Us Button (Mobile Only) ---------- */
.call-float {
  display: flex;
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 899;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-gold);
  box-shadow: 0 3px 14px rgba(184, 149, 106, 0.4);
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: call-fadein 0.6s ease 0.8s forwards;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}

.call-float:hover {
  background: var(--clr-gold-dark);
  transform: scale(1.06);
}

.call-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-charcoal);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  animation: call-tooltip 5s ease 1.2s forwards;
  pointer-events: none;
}

.call-tooltip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--clr-charcoal);
}

@keyframes call-fadein {
  to {
    opacity: 1;
  }
}

@keyframes call-tooltip {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .call-float {
    display: none;
  }
}