/* =============================================
   ELLYLIFE INTERNATIONAL — GLOBAL STYLESHEET
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #1a3060;
  --gold:       #c8a96e;
  --gold-light: #e8c98e;
  --gold-dark:  #a07840;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --gray-100:   #f4f4f6;
  --gray-200:   #e8e8ec;
  --gray-400:   #9999aa;
  --gray-600:   #555568;
  --gray-800:   #333344;
  --accent:     #e63946;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.15);
  --shadow-lg:  0 24px 64px rgba(10,22,40,0.22);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ---- Utility ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-pad { padding: 90px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(200,169,110,0.12);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.social-link svg { width: 13px; height: 13px; }

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,0.12); }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 52px; object-fit: contain; }
.logo-text { display: none; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
  background: rgba(200,169,110,0.08);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
  padding: 8px 0;
}
.dropdown.mega {
    width: max-content;
    min-width: 280px;
    max-width: 700px;
    left: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover { background: rgba(200,169,110,0.08); color: var(--gold-dark); padding-left: 24px; }
.dropdown-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.dropdown-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 8px 0 8px 4px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 8px;
}
.dropdown-group .dropdown-item { padding: 8px 4px; }
.dropdown-group .dropdown-item:hover { padding-left: 12px; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-contact-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,169,110,0.3);
}
.nav-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.45); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 80px 24px 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-sub {
  display: none;
  padding-bottom: 12px;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.mobile-sub a:hover { color: var(--gold); }
.mobile-nav-actions { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 55%,
    rgba(10,22,40,0.25) 100%
  );
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  margin: 0 auto 0 calc((100vw - 1240px) / 2 + 24px);
}
@media (max-width: 1280px) { .hero-content { margin-left: 24px; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.35);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s 0.3s forwards;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.5s forwards;
}
.hero h1 span { color: var(--gold); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.9s forwards;
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(10,22,40,0.95), rgba(15,32,64,0.95));
  border-top: 1px solid rgba(200,169,110,0.2);
  backdrop-filter: blur(10px);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeIn 0.6s 1.2s forwards;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ================================================
   MARQUEE STRIP
   ================================================ */
.marquee-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-item svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ================================================
   FEATURES STRIP
   ================================================ */
.features-strip {
  background: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-200);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  background: var(--gray-100);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.55; }

/* ================================================
   CATEGORIES SECTION
   ================================================ */
.categories { background: var(--off-white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  aspect-ratio: 3/4;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}
.cat-card:hover .cat-overlay { background: linear-gradient(0deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, transparent 100%); }
.cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.cat-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}
.cat-card:hover .cat-btn { transform: translateY(0); opacity: 1; }
.cat-btn svg { width: 16px; height: 16px; transition: transform 0.25s; }
.cat-btn:hover svg { transform: translateX(4px); }
.cat-card.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products { background: var(--white); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: none;
}
.product-card.visible { display: block; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(200,169,110,0.3); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-actions {
  position: absolute;
  bottom: -60px;
  left: 0; right: 0;
  padding: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  transition: var(--transition);
}
.product-card:hover .product-actions { bottom: 0; }
.product-action-btn {
  flex: 1;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--gold); color: var(--navy); }
.product-info { padding: 16px; }
.product-sku { font-size: 0.72rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.product-cat { font-size: 0.78rem; color: var(--gray-400); }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about { background: var(--navy); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2.4rem; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.about-content { padding-right: 24px; }
.about-content .section-label { color: var(--gold); }
.about-content .section-title { color: var(--white); }
.about-content .section-title span { color: var(--gold); }
.about-desc { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: rgba(200,169,110,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.about-feature-icon svg { width: 18px; height: 18px; }
.about-feature h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.about-feature p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 24px 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}
.process-step h3 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.78rem; color: var(--gray-600); line-height: 1.55; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(200,169,110,0.3); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(200,169,110,0.15);
  line-height: 1;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.testi-author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-author-loc { font-size: 0.78rem; color: var(--gray-400); }

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery { background: var(--navy); }
.gallery .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child img { min-height: 420px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(10,22,40,0.45); }
.gallery-overlay svg {
  color: var(--white);
  width: 40px; height: 40px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(10,22,40,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn { position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.65; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.contact-social { display: flex; gap: 12px; }
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.contact-social-btn svg { width: 16px; height: 16px; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; margin-top: 8px; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,0.25);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); }
.footer-bottom p span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; color: var(--white); }
.whatsapp-label {
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 48px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-contact-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.featured { grid-row: span 1; aspect-ratio: 3/4; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-badge { right: 0; bottom: -16px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 650px) {
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
  .section-pad { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .hero h1 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
