/*
 * ============================================================
 * FULLPRINT MANILA — MAIN STYLESHEET
 * Palette derived from brand logo (logo.jpg):
 *   --blue:    #2BBAED  (sky blue — "FULL")
 *   --red:     #E01D2B  (crimson red — "PRINT")
 *   --yellow:  #F5C800  (golden yellow — "MANILA")
 *   --dark:    #111114  (near-black base)
 *   --dark2:   #1A1A1F  (card/section dark)
 *   --cream:   #F5F5F5  (off-white)
 * Fonts: Rajdhani (display) + Roboto (body)
 * ============================================================
 *
 * IMAGE CATEGORISATION
 * ─────────────────────────────────────────────────────────────
 * PRODUCT IMAGES (homepage grid + products.html):
 *   images/product-riding-jersey-adventure.jpg
 *   images/product-padded-jacket-01.jpg
 *   images/product-riding-jersey-custom.jpg
 *   images/product-moto-bedista-jersey.jpg
 *   images/product-padded-jersey-designs.jpg
 *   images/product-ride-together-01.jpg
 *   images/product-brand-boost-01.jpg
 *   images/product-padded-jersey-originator.jpg
 *   images/product-padded-launch-2023.jpg
 *   images/website-img-02.jpg  (lifestyle shirt model)
 *   images/website-img-04.jpg  (product shot)
 *   images/website-img-06.jpg  (product shot)
 *   images/website-img-08.jpg  (product shot)
 *   images/website-img-10.jpg  (product shot)
 *
 * GALLERY IMAGES (gallery.html only):
 *   images/gallery-cafe-soft-open-01.jpg
 *   images/gallery-cafe-open-01.jpg
 *   images/gallery-cafe-moto-meet-01.jpg
 *   images/gallery-pba-moto-collab-01.jpg
 *
 * HERO / BANNER:
 *   images/banner.jpg  (Facebook cover — riders + café scene)
 *
 * LOGO:
 *   images/logo.jpg   (Fullprint Manila brand logo on white tee)
 * ─────────────────────────────────────────────────────────────
 */

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

:root {
  --blue:    #2BBAED;
  --red:     #E01D2B;
  --yellow:  #F5C800;
  --dark:    #111114;
  --dark2:   #1A1A1F;
  --dark3:   #22222A;
  --cream:   #F5F5F5;
  --white:   #FFFFFF;
  --text-muted: #9A9A9A;
  --border:  rgba(255,255,255,0.08);
  --transition: 0.3s ease;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(43,186,237,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-title .accent-blue { color: var(--blue); }
.section-title .accent-red  { color: var(--red); }
.section-title .accent-yellow { color: var(--yellow); }

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--dark);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #1aa8d9;
  border-color: #1aa8d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43,186,237,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #c01525;
  border-color: #c01525;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224,29,43,0.4);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,200,0,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(17,17,20,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
}
.nav-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(17,17,20,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--blue); padding-left: 32px; }
.mobile-nav .btn { margin: 16px 24px 0; width: calc(100% - 48px); justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,20,0.88) 0%, rgba(17,17,20,0.65) 50%, rgba(17,17,20,0.80) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero .hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero .hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,20,1) 0%, rgba(17,17,20,0.65) 50%, rgba(17,17,20,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { opacity: 0.4; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--blue);
  background: rgba(43,186,237,0.05);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,186,237,0.1);
  border-radius: 50%;
  color: var(--blue);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h3 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  group: true;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.07); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,20,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.product-card-sub {
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--dark2);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: var(--dark3); }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num.blue { color: var(--blue); }
.stat-num.red  { color: var(--red); }
.stat-num.yellow { color: var(--yellow); }
.stat-num.white { color: var(--white); }
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== BRAND TEASER / SPLIT ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue);
  color: var(--dark);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
}
.split-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}
.split-text p:last-of-type { margin-bottom: 32px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.review-author-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.review-author-detail {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== SOCIAL CTA ===== */
.social-cta-section {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-icons-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  color: var(--cream);
}
.social-icon-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-icon-btn:hover { transform: translateY(-3px); border-color: transparent; }
.sib-ig:hover  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sib-fb:hover  { background: #1877f2; }
.sib-tt:hover  { background: #000; color: var(--white); border-color: var(--white); }
.sib-shopee:hover  { background: #ee4d2d; }
.sib-wa:hover      { background: #25d366; color: var(--dark); }

/* ===== SOCIAL FEED GRID ===== */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.feed-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,186,237,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--white); }

/* ===== FOOTER ===== */
#footer {
  background: #0A0A0D;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid var(--blue);
}
.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); background: rgba(43,186,237,0.08); }
.footer-social a svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blue); padding-left: 4px; }

.footer-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--blue); }
.footer-contact a svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-right a:hover { color: var(--blue); }

/* ===== ABOUT PAGE ===== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.philosophy-card.blue::before  { background: var(--blue); }
.philosophy-card.red::before   { background: var(--red); }
.philosophy-card.yellow::before { background: var(--yellow); }
.philosophy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.philosophy-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px;
  font-weight: 700;
  opacity: 0.08;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.philosophy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.philosophy-icon.blue  { background: rgba(43,186,237,0.15); color: var(--blue); }
.philosophy-icon.red   { background: rgba(224,29,43,0.15); color: var(--red); }
.philosophy-icon.yellow { background: rgba(245,200,0,0.15); color: var(--yellow); }
.philosophy-icon svg { width: 26px; height: 26px; }
.philosophy-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.philosophy-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}
.value-content h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.value-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--red), var(--yellow));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(43,186,237,0.3);
}
.timeline-item.highlight::before {
  width: 16px;
  height: 16px;
  left: -44px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,200,0,0.3);
}
.timeline-year {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.timeline-item.highlight .timeline-year { color: var(--yellow); }
.timeline-item h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== PRODUCTS PAGE ===== */
.disclaimer-bar {
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}
.disclaimer-bar svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.disclaimer-bar p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-tile:hover img { transform: scale(1.08); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,20,0.9) 0%, rgba(17,17,20,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.cat-tile:hover .cat-tile-overlay { background: linear-gradient(to top, rgba(43,186,237,0.5) 0%, rgba(17,17,20,0.4) 60%, transparent 100%); }
.cat-tile-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.cat-tile-count {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.08em;
}

.category-section {
  margin-bottom: 72px;
  scroll-margin-top: 96px;
}
.category-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.category-section-header h2 {
  font-size: 36px;
  color: var(--white);
}
.category-badge {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(43,186,237,0.15);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
}
.product-list { display: flex; flex-direction: column; gap: 20px; }
.product-entry {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.product-entry:hover {
  border-color: var(--blue);
  background: rgba(43,186,237,0.04);
  transform: translateX(4px);
}
.product-entry-main { flex: 1; }
.product-entry h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.product-entry p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.product-entry-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ptag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
.ptag.blue  { background: rgba(43,186,237,0.12); color: var(--blue); }
.ptag.red   { background: rgba(224,29,43,0.12); color: #ff4d59; }
.ptag.yellow { background: rgba(245,200,0,0.12); color: var(--yellow); }
.product-entry-action { flex-shrink: 0; padding-top: 4px; }

/* ===== GALLERY PAGE ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--dark);
}
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,20,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 8px;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: var(--white); }
.masonry-item-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-align: center;
  padding: 0 16px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-img {
  border-radius: var(--radius);
  max-height: 85vh;
  object-fit: contain;
  margin: 0 auto;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 32px;
  padding: 8px;
  line-height: 1;
}
.lightbox-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--blue); transform: translateX(4px); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(43,186,237,0.1);
  color: var(--blue);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-card-info p, .contact-card-info a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}
.contact-card-info a:hover { color: var(--blue); }

.inquiry-form {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.inquiry-form h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,186,237,0.12);
  background: rgba(43,186,237,0.04);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; justify-content: center; font-size: 16px; }

.map-placeholder {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  transition: color var(--transition);
}
.faq-question:hover h3 { color: var(--blue); }
.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== CTA SPLIT SECTION ===== */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-card h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-card-blue { background: linear-gradient(135deg, #0f3a52 0%, #0a2a3d 100%); border: 1px solid rgba(43,186,237,0.25); }
.cta-card-red  { background: linear-gradient(135deg, #4a0a0f 0%, #2d0509 100%); border: 1px solid rgba(224,29,43,0.25); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== INLINE SVG ICONS ===== */
.icon-ig, .icon-fb, .icon-tt, .icon-wa, .icon-mail, .icon-map, .icon-phone, .icon-shopee { display: inline-block; vertical-align: middle; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { gap: 48px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(36px, 10vw, 64px); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 2; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 28px; }
  .timeline { padding-left: 32px; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 1; }
  .category-tiles { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .social-icons-row { flex-direction: column; align-items: stretch; }
  .social-icon-btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inquiry-form { padding: 28px 20px; }
  .product-entry { flex-direction: column; }
}
