/* ============================================
   DEEN CORPORATION — Advanced 3D Premium Theme
   Glass · Depth · Motion · Luxury
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #fafafa;
  --bg-alt: #f0f0f2;
  --bg-dark: #0c0c0e;
  --text: #0a0a0a;
  --text-muted: #5c5c66;
  --accent: #c9a227;
  --accent-light: #e8c84a;
  --accent-dark: #9a7b1a;
  --glass: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.45);
  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-3d: 0 20px 40px -12px rgba(0,0,0,0.18), 0 8px 16px -8px rgba(201,162,39,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.35s var(--transition); }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* Ambient background glow */
body::before,
body::after {
  content: none; /* removed ambient blobs — were causing visual empty space */
}
.header, .section, .footer, .top-bar, .page-header, .hero { position: relative; z-index: 1; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar span {
  opacity: 0.85;
  position: relative;
}
.top-bar span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -18px;
  opacity: 0.4;
}

/* ========== HEADER — Glass ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.88);
}
.header-top { display: none; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}
.logo { flex-shrink: 0; }
.logo-text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 100px;
  white-space: nowrap;
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--accent-dark);
  background: rgba(201,162,39,0.12);
}
.nav a.nav-contact {
  background: var(--bg-dark);
  color: #fff;
  margin-left: 4px;
  padding: 7px 14px;
}
.nav a.nav-contact:hover {
  background: var(--accent);
  color: #000;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-right a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.nav-right a:hover {
  color: var(--accent-dark);
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease,
              background 0.25s ease;
  display: block;
  transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent-dark);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent-dark);
}
.mobile-toggle:active {
  transform: scale(0.92);
}

/* ========== HERO 3D ========== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  perspective: 1200px;
}
.hero-slider { height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--transition), transform 1.2s var(--transition);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.2) 100%);
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.slide-text {
  max-width: 640px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.9s 0.2s var(--transition), opacity 0.9s 0.2s var(--transition);
}
.slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,162,39,0.95);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.slide-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.slide-text p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 300;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons 3D */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 8px 28px rgba(201,162,39,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(201,162,39,0.5);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #1a1a1e;
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(201,162,39,0.06);
  transform: translateY(-2px);
}

.slider-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
}
.slider-dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(201,162,39,0.6);
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}
.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.4s var(--transition);
}
.slider-arrow:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #ebebef 100%);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-radius: 100px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text);
}
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  font-weight: 400;
}

/* ========== CATEGORIES 3D CARDS ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1000px;
}
.categories-grid .category-card {
  min-height: 320px;
  height: 340px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: var(--shadow-3d);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
}
.category-card:hover {
  transform: translateY(-12px) rotateX(2deg) scale(1.02);
  box-shadow: 0 32px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,162,39,0.2);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.category-card:hover img { transform: scale(1.12); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}
.category-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.category-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--transition);
}
.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(201,162,39,0.3);
}
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: all 0.4s var(--transition);
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(12deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ========== PRODUCTS 3D ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--transition);
  box-shadow: var(--shadow-sm);
  display: block;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(201,162,39,0.25);
}
.product-img {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0f0f2, #e8e8ec);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}
.product-card:hover .product-img img { transform: scale(1.1); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(201,162,39,0.35);
}
.product-info { padding: 18px; }
.product-info h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-info p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-sku {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

/* ========== OWNER ========== */
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.owner-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-3d);
  position: relative;
}
.owner-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}
.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.owner-image:hover img { transform: scale(1.05); }
.owner-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.owner-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.owner-signature {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,162,39,0.1);
}
.contact-item h4 { font-size: 0.95rem; margin-bottom: 3px; font-weight: 600; }
.contact-item p, .contact-item a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact-item a:hover { color: var(--accent); }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: all 0.3s var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 300px;
  box-shadow: var(--shadow-3d);
  transition: transform 0.5s var(--transition);
}
.process-card:hover { transform: translateY(-8px) scale(1.02); }
.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.process-card:hover img { transform: scale(1.08); }
.process-card .process-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}

/* ========== FEATURES ========== */
.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.feature-icon-item {
  padding: 36px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-icon-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(201,162,39,0.3);
}
.feature-icon-item i {
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: block;
}
.feature-icon-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.feature-icon-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ========== STATS ========== */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}
.stat-item h3 {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-item p {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--transition);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-3d);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

/* ========== VIDEO ========== */
.video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-3d);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  background: #111 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  gap: 16px;
}
.video-placeholder i {
  font-size: 4.5rem;
  color: var(--accent);
  filter: drop-shadow(0 8px 24px rgba(201,162,39,0.4));
  transition: transform 0.4s;
}
.video-placeholder:hover i { transform: scale(1.15); }
.video-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 70px 0 24px;
  position: relative;
  margin: 0;
  clear: both;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 4px;
  -webkit-text-fill-color: var(--accent);
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin: 16px 0 22px;
  max-width: 280px;
}
.footer .social-icons { display: flex; gap: 10px; }
.footer .social-icons a,
.footer .nav-right a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer .social-icons a:hover {
  color: var(--accent);
  background: rgba(201,162,39,0.15);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--accent);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all 0.4s var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 70px 0 56px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.breadcrumb a:hover { color: var(--accent); }

/* ========== PRODUCTS PAGE ========== */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 56px 0;
}
.sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}
.sidebar h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--accent-dark);
}
.category-list > li { margin-bottom: 4px; }
.category-list > li > a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
}
.category-list > li > a:hover,
.category-list > li > a.active {
  background: rgba(201,162,39,0.1);
  color: var(--accent-dark);
}
.sub-category { padding-left: 12px; margin-top: 2px; display: none; }
.sub-category.open { display: block; }
.sub-category a {
  display: block;
  padding: 7px 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  border-radius: 8px;
}
.sub-category a:hover {
  color: var(--accent);
  background: rgba(201,162,39,0.06);
}

/* Product Detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  padding: 52px 0;
  align-items: start;
}
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-thumbs img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.pd-thumbs img:hover, .pd-thumbs img.active {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(201,162,39,0.25);
}
.pd-info h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.pd-sku {
  display: inline-block;
  background: var(--bg-alt);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pd-cat {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.pd-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.pd-inquiry {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.pd-inquiry h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(201,162,39,0.25);
}
.blog-img { height: 220px; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-content { padding: 22px; }
.blog-date {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}
.blog-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.map-container {
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

.empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
}
.empty-state i {
  font-size: 3.2rem;
  opacity: 0.25;
  margin-bottom: 18px;
  display: block;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .categories-grid, .products-grid, .features-icons, .stats-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; min-height: 240px; height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .owner-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; }
  .owner-image { height: 340px; }
  .pd-gallery { position: static; }
  .pd-main-img { height: 360px; }
  .nav { gap: 1px; flex-wrap: nowrap; }
  .nav a { font-size: 0.62rem; padding: 6px 7px; }
  .nav a.nav-contact { padding: 6px 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .categories-grid .category-card { height: 300px; min-height: 280px; }
}

@media (max-width: 992px) and (min-width: 769px) {
  .nav a:not(.active):not(.nav-contact) { font-size: 0.58rem; padding: 5px 6px; }
}
@media (max-width: 768px) {
  .top-bar { font-size: 0.6rem; letter-spacing: 1px; padding: 8px 0; }
  .top-bar-inner { justify-content: center; text-align: center; gap: 6px; }
  .top-bar span:not(:last-child)::after { display: none; }

  /* Mobile header: ONE ROW — logo left, icons+menu right */
  .header-main {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 10px;
    position: relative;
  }
  .logo { flex-shrink: 0; order: 1; }
  .logo-text { font-size: 1.25rem; letter-spacing: 2px; }
  .logo-sub { font-size: 0.52rem; letter-spacing: 2px; }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    z-index: 100;
    order: unset;
    transform: translateY(-8px);
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.3s,
                padding 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
  }
  .nav.open {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 10px 0 18px;
    border-bottom-color: var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.85rem;
    border-radius: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.25s ease,
                color 0.25s ease;
  }
  .nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger: 40ms steps — snappy & smooth */
  .nav.open a:nth-child(1) { transition-delay: 0.04s; }
  .nav.open a:nth-child(2) { transition-delay: 0.08s; }
  .nav.open a:nth-child(3) { transition-delay: 0.12s; }
  .nav.open a:nth-child(4) { transition-delay: 0.16s; }
  .nav.open a:nth-child(5) { transition-delay: 0.20s; }
  .nav.open a:nth-child(6) { transition-delay: 0.24s; }
  .nav.open a:nth-child(7) { transition-delay: 0.28s; }
  .nav.open a:nth-child(8) { transition-delay: 0.32s; }
  /* Closing: reverse feel — no delay on links */
  .nav:not(.open) a {
    transition-delay: 0s !important;
    transition-duration: 0.2s;
  }
  .nav a:hover, .nav a.active {
    background: rgba(201,162,39,0.1);
  }

  .nav-right {
    order: 2;
    margin-left: auto;
    gap: 4px;
    flex-shrink: 0;
  }
  .nav-right a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  /* Hide FB/IG/TikTok on small phones — keep email + whatsapp + menu */
  .nav-right a[title="Facebook"],
  .nav-right a[title="Instagram"],
  .nav-right a[title="TikTok"] {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    margin-left: 2px;
  }

  .categories-grid, .products-grid, .features-icons, .stats-grid,
  .services-grid, .process-grid, .gallery-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero { min-height: 520px; height: 85vh; }
  .slider-arrows { display: none; }
  .video-section { height: 280px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .slide-text h1 { font-size: 1.9rem; }
  .slide-text p { font-size: 0.95rem; }
  .slide-badge { font-size: 0.62rem; padding: 6px 14px; }
  .container { padding: 0 16px; }
  .stat-item h3 { font-size: 2.2rem; }
  .contact-form { padding: 24px 18px; }
  .category-card { height: 280px; min-height: 260px; }
  .categories-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .categories-grid .category-card { height: 280px; }
  .product-img { height: 240px; }
  .owner-image { height: 280px; }
  .pd-main-img { height: 300px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 14px; font-size: 1.5rem; }
  .gallery-item:first-child { min-height: 220px; height: 220px; }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Show all social icons on tablet-ish phones */
  .nav-right a[title="Facebook"],
  .nav-right a[title="Instagram"],
  .nav-right a[title="TikTok"] {
    display: flex;
  }
}
@media (max-width: 480px) {
  .slide-btns { flex-direction: column; }
  .slide-btns .btn { width: 100%; }
  .btn { padding: 13px 22px; font-size: 0.75rem; }
}


/* ========== EXTRA PREMIUM ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.35); }
  50% { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  animation: pulseGold 3s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
}

.whatsapp-float {
  animation: floatY 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation: none;
}

.slide-badge {
  animation: fadeInScale 0.8s 0.3s both;
}

/* Card image shine on hover */
.product-card .product-img::after,
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.product-card:hover .product-img::after,
.category-card:hover::after {
  opacity: 1;
  animation: shimmer 0.9s ease;
}

/* Stat counter feel */
.stat-item h3 {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-item:hover h3 {
  transform: scale(1.08);
}

/* Page load: no body transform (avoids bottom white-space bug) */

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* Kill extra space below footer */
.footer + * { margin: 0; }
body > .whatsapp-float { margin: 0; }
.section.section-alt:last-of-type { padding-bottom: 70px; }


/* Inquiry form advanced */
.inq-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.inq-rel-card {
  cursor: pointer;
  display: block;
}
.inq-rel-card input { display: none; }
.inq-rel-inner {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: all 0.25s ease;
  background: #fff;
  height: 100%;
}
.inq-rel-card input:checked + .inq-rel-inner {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
  background: rgba(201,162,39,0.06);
}
.inq-rel-inner img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.inq-rel-placeholder {
  width: 100%;
  height: 80px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.inq-rel-inner span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}
.inq-rel-inner small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.inq-colors, .inq-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.inq-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
}
.inq-chip:hover { border-color: var(--accent); }
.inq-chip input:checked + span,
.inq-chip:has(input:checked) {
  background: rgba(201,162,39,0.12);
  border-color: var(--accent);
  font-weight: 600;
}
.inq-chip input { accent-color: var(--accent); }
@media (max-width: 768px) {
  .inq-related-grid { grid-template-columns: repeat(2, 1fr); }
}
