/*
Theme Name: MAASS BD Apparel
Theme URI: https://maassbdapparel.com
Author: MAASS (BD) Global Apparel Sourcing
Author URI: https://maassbdapparel.com
Description: Official WordPress theme for MAASS (BD) Global Apparel Sourcing - A premier apparel sourcing company in Bangladesh connecting international buyers with top manufacturers.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maass-bd-apparel
Tags: business, corporate, apparel, sourcing
*/

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0a1628;
  --secondary: #d4a843;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.text-gradient-gold {
  background: linear-gradient(135deg, #d4a843 0%, #f5d073 50%, #d4a843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display {
  font-family: var(--font-display);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-heading .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-heading p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 0.75rem 0;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 640px) {
  .nav-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 2rem;
  }
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
  color: var(--white);
}

.nav-links a:hover {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

#site-header.scrolled .nav-links a {
  color: var(--primary);
}

#site-header.scrolled .nav-links a:hover {
  background: rgba(10, 22, 40, 0.05);
  color: var(--secondary);
}

.nav-mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-mobile-toggle {
    display: none;
  }
}

#site-header.scrolled .nav-mobile-toggle {
  color: var(--primary);
}

.nav-mobile-toggle .icon-bar {
  width: 24px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: all 0.3s;
}

.nav-mobile-toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}

.nav-mobile-toggle.open .icon-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open .icon-bar:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open .icon-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.nav-mobile-menu.open {
  max-height: 500px;
  padding: 1rem 0;
}

.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.nav-mobile-menu a:hover {
  background: var(--gray-50);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  mix-blend-mode: multiply;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0a1628, rgba(10, 22, 40, 0.8), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #d1d5db;
  max-width: 700px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  color: #9ca3af;
  max-width: 600px;
  margin-bottom: 3rem;
  display: none;
}

@media (min-width: 768px) {
  .hero-desc {
    display: block;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(212, 168, 67, 0.2);
}

.btn-primary:hover {
  background: rgba(212, 168, 67, 0.9);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  transition: color 0.2s;
}

.hero-scroll-cue:hover {
  color: var(--secondary);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-scroll-cue svg {
  width: 32px;
  height: 32px;
}

/* ============================================================
   WELCOME INTRO SECTION
   ============================================================ */
#welcome-intro {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.welcome-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.15);
  margin-bottom: 1.5rem;
}

.welcome-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

.welcome-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.welcome-title .highlight {
  color: var(--secondary);
}

.welcome-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.welcome-body {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .welcome-highlights {
    flex-direction: row;
    justify-content: center;
  }
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.highlight-pill .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-pill .icon-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  stroke: var(--primary);
}

.highlight-pill span {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9375rem;
}

/* ============================================================
   IMAGE SLIDER
   ============================================================ */
#image-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--gray-900);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2), transparent);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
}

@media (min-width: 768px) {
  .slide-caption {
    padding: 3rem 4rem;
  }
}

.slide-caption h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slide-caption p {
  color: #e5e7eb;
  font-size: clamp(0.875rem, 2vw, 1rem);
  max-width: 500px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.slider-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-btn-prev {
  left: 1rem;
}

.slider-btn-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  width: 28px;
  background: var(--secondary);
}

.slider-dot:hover {
  background: rgba(255,255,255,0.8);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#products {
  padding: 6rem 0;
  background: var(--gray-50);
}

.products-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
  color: var(--gray-600);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: none;
}

.tab-btn:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.products-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products-panel.active {
  display: grid;
}

.product-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(10, 22, 40, 0.08);
  transform: translateY(-2px);
}

.product-card-img {
  height: 256px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-img svg {
  width: 96px;
  height: 96px;
  opacity: 0.2;
  color: var(--primary);
  stroke: var(--primary);
  transition: opacity 0.3s;
}

.product-card:hover .product-card-img svg {
  opacity: 0.4;
}

.product-card-body {
  padding: 1.5rem;
  background: var(--white);
}

.product-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 168, 67, 0.12);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.product-card:hover .product-card-title {
  color: var(--secondary);
}

.product-card-desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-inquire-btn {
  width: 100%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gray-50);
  color: var(--primary);
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.9375rem;
}

.product-inquire-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(10,22,40,0.2);
}

.product-inquire-btn svg {
  width: 16px;
  height: 16px;
}

/* Product card background gradients */
.bg-blue-gradient { background: linear-gradient(135deg, var(--blue-50), var(--blue-100)); }
.bg-amber-gradient { background: linear-gradient(135deg, var(--amber-50), var(--amber-100)); }
.bg-indigo-gradient { background: linear-gradient(135deg, var(--indigo-50), var(--indigo-100)); }
.bg-slate-gradient { background: linear-gradient(135deg, var(--slate-50), var(--slate-100)); }
.bg-sky-gradient { background: linear-gradient(135deg, var(--sky-50), var(--sky-100)); }
.bg-rose-gradient { background: linear-gradient(135deg, var(--rose-50), var(--rose-100)); }
.bg-emerald-gradient { background: linear-gradient(135deg, var(--emerald-50), var(--emerald-100)); }
.bg-gray-gradient { background: linear-gradient(135deg, #f9fafb, #f3f4f6); }
.bg-yellow-gradient { background: linear-gradient(135deg, var(--yellow-50), var(--yellow-100)); }
.bg-bluedeep-gradient { background: linear-gradient(135deg, var(--blue-100), #bfdbfe); }
.bg-indigodeep-gradient { background: linear-gradient(135deg, var(--indigo-100), #c7d2fe); }
.bg-skydeep-gradient { background: linear-gradient(135deg, var(--sky-100), #bae6fd); }
.bg-neutral-gradient { background: linear-gradient(135deg, var(--neutral-50), var(--neutral-100)); }
.bg-orange-gradient { background: linear-gradient(135deg, var(--orange-50), var(--orange-100)); }
.bg-teal-gradient { background: linear-gradient(135deg, var(--teal-50), var(--teal-100)); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content .section-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.about-lead {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .about-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-point svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  stroke: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point span {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.about-quote {
  background: rgba(10, 22, 40, 0.04);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 1.5rem;
}

.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary);
}

.about-bgmea {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bgmea-badge {
  width: 48px;
  height: 48px;
  background: #1a5c2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.about-bgmea h4 {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.about-bgmea .member-name {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.about-bgmea .member-id {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  z-index: 10;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6), transparent);
}

.about-deco-circle1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 128px;
  height: 128px;
  background: rgba(212, 168, 67, 0.2);
  border-radius: 50%;
  filter: blur(24px);
  z-index: 0;
}

.about-deco-circle2 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 192px;
  height: 192px;
  background: rgba(10, 22, 40, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.about-deco-ring {
  position: absolute;
  top: 3rem;
  left: -3rem;
  width: 96px;
  height: 96px;
  border: 8px solid rgba(212, 168, 67, 0.2);
  border-radius: 50%;
  z-index: 0;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: 6rem 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(#D4AF37 1px, transparent 1px);
  background-size: 30px 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 168, 67, 0.5);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 67, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: var(--secondary);
}

.service-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  stroke: var(--secondary);
  transition: color 0.3s, stroke 0.3s;
}

.service-card:hover .service-icon-wrap svg {
  color: var(--primary);
  stroke: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #9ca3af;
  transition: color 0.3s;
}

.service-card:hover p {
  color: #d1d5db;
}

#services .section-heading .badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

#services .section-heading h2 {
  color: var(--white);
}

#services .section-heading p {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   STRENGTH SECTION
   ============================================================ */
#strength {
  padding: 6rem 0;
  background: var(--gray-50);
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strength-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-200);
}

.strength-card-dark {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(10,22,40,0.15);
}

.strength-card-dark .factory-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem;
  opacity: 0.1;
}

.strength-card-dark .factory-bg-icon svg {
  width: 128px;
  height: 128px;
}

.strength-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.strength-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.strength-icon-blue {
  background: #eff6ff;
  color: var(--blue-600);
}

.strength-icon-gold {
  background: rgba(212, 168, 67, 0.2);
  color: var(--secondary);
}

.strength-icon-amber {
  background: #fffbeb;
  color: var(--amber-600);
}

.strength-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.strength-card-dark h3 {
  color: var(--white);
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qa-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.qa-item:hover {
  background: var(--gray-50);
  border-color: var(--gray-100);
}

.qa-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  stroke: var(--secondary);
  flex-shrink: 0;
}

.qa-item span {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.factory-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
}

.factory-item {
  display: flex;
  gap: 0.75rem;
}

.factory-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.factory-item p {
  color: #d1d5db;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.stock-desc {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.stock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stock-tag {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.stock-tag:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info-box {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-100);
  height: 100%;
}

.contact-info-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  stroke: var(--secondary);
}

.contact-item h4 {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-item p, .contact-item span {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-form-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-100);
}

@media (min-width: 640px) {
  .contact-form-box {
    padding: 2.5rem;
  }
}

.contact-form-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  stroke: var(--gray-400);
  pointer-events: none;
}

.form-input-wrap.textarea-wrap svg {
  top: 1rem;
  transform: none;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  rows: 5;
  min-height: 140px;
}

.form-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.form-submit:hover {
  background: rgba(10, 22, 40, 0.9);
  box-shadow: 0 10px 15px -3px rgba(10,22,40,0.2);
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--gray-800);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green-500);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-400);
  stroke: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af;
  border-bottom: 1px solid #374151;
  padding-bottom: 0.5rem;
}

.footer-hours-item:last-child {
  border-bottom: none;
}

.footer-hours-item .day {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-hours-item .day svg {
  width: 16px;
  height: 16px;
  color: var(--green-400);
  stroke: var(--green-400);
}

.footer-hours-item .time {
  color: var(--white);
  font-weight: 500;
}

.footer-hours-item .closed {
  color: #f87171;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom .site-link {
  color: #6b7280;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-bottom .site-link:hover {
  color: var(--secondary);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Delay utilities */
.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; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  min-width: 300px;
  animation: slideInToast 0.3s ease;
  pointer-events: auto;
}

.toast.hide {
  animation: slideOutToast 0.3s ease forwards;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToast {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.toast-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.toast-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption {
  max-width: 100%;
}

.alignnone, .aligncenter, .alignleft, .alignright {
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
