@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Lora:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --cream: #FDF6E8;
  --warm-white: #FFFCF5;
  --dark: #1A2332;
  --navy: #1E3A5F;
  --blue: #2563A8;
  --sky: #3B82C4;
  --light-blue: #DBEAFE;
  --gold: #D4A017;
  --amber: #F59E0B;
  --green: #2D6A4F;
  --light-green: #D1FAE5;
  --text-mid: #4A5568;
  --text-light: #718096;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--warm-white); color: var(--dark); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 64px;
  background: rgba(255,252,245,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--light-blue);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: var(--navy); letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--blue); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 700; color: var(--dark); transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--blue) !important; color: white !important; padding: 9px 24px; border-radius: 24px; font-weight: 800 !important; }
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-2px); }

/* HERO */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.1fr 0.9fr;
  padding-top: 80px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFCF5 60%, #FFF8E1 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,168,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-blue); border: 2px solid rgba(37,99,168,0.25);
  padding: 7px 18px; border-radius: 24px;
  font-size: 0.78rem; font-weight: 800; color: var(--blue);
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
  animation: fadeUp 0.7s ease both;
}
.dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-family: 'Nunito', sans-serif; font-size: clamp(2.8rem,4.5vw,5.2rem);
  font-weight: 900; line-height: 1.05; color: var(--dark);
  margin-bottom: 24px; animation: fadeUp 0.7s 0.12s ease both;
}
.hero-title .highlight { color: var(--blue); position: relative; display: inline-block; }
.hero-title .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 6px; background: var(--amber); border-radius: 3px; z-index: -1; opacity: 0.5;
}
.hero-title .cursive { font-family: 'Nunito', sans-serif; font-style: normal; font-weight: 900; color: var(--green); }
.hero-sub {
  font-size: 1.1rem; font-weight: 500; color: var(--text-mid); line-height: 1.75;
  max-width: 500px; margin-bottom: 44px; animation: fadeUp 0.7s 0.24s ease both;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.36s ease both; }
.btn-primary {
  background: var(--blue); color: white; padding: 14px 34px; text-decoration: none;
  font-weight: 800; font-size: 0.95rem; border-radius: 28px; transition: all 0.25s;
  display: inline-block; box-shadow: 0 6px 20px rgba(37,99,168,0.35);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,99,168,0.4); }
.btn-secondary {
  border: 2px solid var(--blue); color: var(--blue); padding: 14px 34px;
  text-decoration: none; font-weight: 800; font-size: 0.95rem;
  border-radius: 28px; transition: all 0.25s; display: inline-block;
}
.btn-secondary:hover { background: var(--light-blue); transform: translateY(-3px); }
.hero-right { display: flex; align-items: stretch; position: relative; overflow: hidden; animation: fadeIn 1s 0.2s ease both; }
.hero-photo-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 0.8fr; gap: 6px; width: 100%; padding: 24px 24px 24px 0;
}
.hero-photo-mosaic .photo-cell { overflow: hidden; border-radius: 14px; }
.hero-photo-mosaic .photo-cell:first-child { grid-row: span 2; border-radius: 20px; }
.hero-photo-mosaic .photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-photo-mosaic .photo-cell:hover img { transform: scale(1.06); }
.hero-stats {
  position: absolute; bottom: 44px; left: -10px;
  background: var(--navy); color: white;
  padding: 20px 28px; display: flex; gap: 28px;
  z-index: 3; border-radius: 14px;
  box-shadow: 0 12px 36px rgba(30,58,95,0.35);
  animation: fadeUp 0.7s 0.5s ease both;
}
.stat-item { text-align: center; }
.stat-num { font-size: 1.9rem; font-weight: 900; color: var(--amber); line-height: 1; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; font-weight: 700; }

/* BRANDS STRIP */
.brands-strip { background: var(--navy); padding: 26px 80px; }
.brands-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.brands-label { font-size: 0.72rem; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: 2.5px; margin-right: 10px; white-space: nowrap; }
.brand-pill {
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
  color: white; transition: all 0.2s; cursor: default;
}
.brand-pill:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

/* ABOUT */
.about { padding: 110px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 72%; height: 75%; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 58%; height: 52%; overflow: hidden; border-radius: 16px; border: 5px solid var(--warm-white); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.about-img-main img, .about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: 48%; left: 52%; transform: translate(-50%, -50%);
  width: 110px; height: 110px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  z-index: 3; text-align: center; box-shadow: 0 8px 28px rgba(37,99,168,0.5); border: 4px solid white;
}
.about-accent-icon { font-size: 1.9rem; }
.about-accent-text { font-size: 0.6rem; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800; margin-top: 3px; }

.section-label {
  font-size: 0.75rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; width: 24px; height: 3px; background: var(--amber); border-radius: 2px; flex-shrink: 0; }
.section-title { font-family: 'Nunito', sans-serif; font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 900; line-height: 1.2; color: var(--dark); margin-bottom: 20px; }
.section-title .cursive { font-family: 'Lora', serif; font-style: italic; color: var(--blue); }
.section-title .accent { color: var(--green); }
.section-body { font-size: 1rem; font-weight: 500; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--dark); font-weight: 600; }
.feature-list li .icon { font-size: 1.1rem; flex-shrink: 0; }

/* PHOTO SHOWCASE */
.photo-showcase {
  padding: 0 80px 80px;
  display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 210px 210px 210px; gap: 8px;
}
.showcase-cell { overflow: hidden; border-radius: 14px; position: relative; }
.showcase-cell.tall { grid-row: span 2; }
.showcase-cell.wide { grid-column: span 2; }
.showcase-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase-cell:hover img { transform: scale(1.07); }
.showcase-cell .cell-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(30,58,95,0.85); color: white;
  padding: 5px 14px; border-radius: 14px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px;
}

/* PRODUCTS */
.products { background: linear-gradient(180deg, #0F2040 0%, #1E3A5F 100%); padding: 110px 80px; color: white; }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.products-header .section-label { color: var(--amber); }
.products-header .section-label::before { background: var(--amber); }
.products-header .section-title { color: white; margin-bottom: 0; }
.products-intro { max-width: 320px; font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 500; }
.categories-nav { display: flex; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.cat-btn {
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65); padding: 9px 22px; font-size: 0.85rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; cursor: pointer;
  border-radius: 24px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
}
.cat-btn.active, .cat-btn:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,168,0.4); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 12px; }
.product-card {
  background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1);
  padding: 28px 24px; transition: all 0.3s; cursor: default; display: none;
  border-radius: 16px; position: relative; overflow: hidden;
}
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--amber)); opacity: 0; transition: opacity 0.3s; }
.product-card.visible { display: block; }
.product-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(59,130,196,0.5); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.product-card:hover::before { opacity: 1; }
.product-category-tag { font-size: 0.68rem; color: var(--amber); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; font-weight: 800; }
.product-name { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: white; line-height: 1.3; margin-bottom: 7px; }
.product-brand { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500; font-style: italic; }
.product-card-icon { font-size: 2rem; margin-bottom: 14px; line-height: 1; }

/* BRANDS DETAIL */
.brands-detail { padding: 110px 80px; background: var(--cream); position: relative; overflow: hidden; }
.brands-detail::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(37,99,168,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.brands-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.brands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.brand-card {
  background: white; padding: 36px 32px; border-radius: 20px;
  border: 2px solid rgba(37,99,168,0.08); transition: all 0.3s; position: relative; overflow: hidden;
}
.brand-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(37,99,168,0.13); border-color: rgba(37,99,168,0.2); }
.brand-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.brand-icon-circle { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.bg-blue { background: var(--light-blue); }
.bg-green { background: var(--light-green); }
.bg-amber { background: #FEF3C7; }
.bg-red { background: #FEE2E2; }
.bg-purple { background: #EDE9FE; }
.bg-teal { background: #CCFBF1; }
.brand-name-big { font-family: 'Nunito', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--navy); margin-bottom: 2px; line-height: 1.2; }
.brand-origin { font-size: 0.75rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.brand-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; font-weight: 500; }
.brand-products-list { display: flex; flex-wrap: wrap; gap: 6px; }
.micro-tag { background: var(--light-blue); border: 1px solid rgba(37,99,168,0.2); padding: 4px 12px; font-size: 0.73rem; color: var(--blue); border-radius: 12px; font-weight: 700; }

/* WHY US */
.why-us { padding: 110px 80px; background: var(--warm-white); }
.why-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.why-header .section-label { justify-content: center; }
.why-header .section-label::before { display: none; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-item { background: white; padding: 36px 28px; border-radius: 20px; border: 2px solid rgba(37,99,168,0.08); transition: all 0.3s; text-align: center; }
.why-item:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(37,99,168,0.12); }
.why-item:first-child { background: var(--blue); border-color: var(--blue); }
.why-item:first-child .why-title, .why-item:first-child .why-text { color: white; }
.why-item:first-child .why-icon-circle { background: rgba(255,255,255,0.2); }
.why-icon-circle { width: 64px; height: 64px; background: var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 20px; }
.why-title { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.why-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; font-weight: 500; }

/* CONTACT */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 100%);
  padding: 110px 80px; color: white;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  position: relative; overflow: hidden;
}
.contact::before { content: ''; position: absolute; top: -150px; right: -100px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(59,130,196,0.18) 0%, transparent 70%); border-radius: 50%; }
.contact .section-label { color: var(--amber); }
.contact .section-label::before { background: var(--amber); }
.contact .section-title { color: white; font-size: 2.6rem; }
.contact .section-body { color: rgba(255,255,255,0.65); }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.06); border-radius: 14px; padding: 16px 20px; border: 1px solid rgba(255,255,255,0.1); transition: background 0.2s; }
.contact-info-item:hover { background: rgba(255,255,255,0.1); }
.contact-info-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; font-weight: 500; }
.contact-info-text strong { color: white; display: block; margin-bottom: 2px; }
.contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; backdrop-filter: blur(10px); }
.form-title { font-size: 1.2rem; font-weight: 900; color: white; margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); font-weight: 800; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.12); color: white; padding: 11px 16px; font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 600; border-radius: 12px; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { color: var(--dark); background: white; }
.btn-submit { background: var(--amber); color: var(--dark); border: none; padding: 14px 34px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 900; cursor: pointer; border-radius: 28px; transition: all 0.2s; align-self: flex-start; margin-top: 4px; box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-submit:hover { background: #D97706; transform: translateY(-2px); }
#form-success { display: none; color: var(--amber); font-size: 0.9rem; font-weight: 700; margin-top: 8px; }

/* FOOTER */
footer { background: #0A1828; padding: 44px 80px; display: flex; align-items: center; justify-content: space-between; border-top: 2px solid rgba(37,99,168,0.2); }
.footer-logo { font-family: 'Nunito', sans-serif; font-size: 1.35rem; font-weight: 900; color: white; display: flex; align-items: center; gap: 8px; }
.footer-logo span { color: var(--amber); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 600; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* WA BUTTON */
.wa-button { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; z-index: 999; text-decoration: none; box-shadow: 0 4px 22px rgba(37,211,102,0.45); transition: all 0.3s; animation: pulse 3s infinite; }
.wa-button:hover { transform: scale(1.12); }
@keyframes pulse { 0%,100%{box-shadow:0 4px 22px rgba(37,211,102,0.45)}50%{box-shadow:0 6px 34px rgba(37,211,102,0.7)} }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 16px 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 40px; }
  .hero-right { height: 50vh; }
  .about, .contact { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .about-images { height: 360px; }
  .products, .brands-detail, .why-us { padding: 80px 40px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .photo-showcase { padding: 0 40px 60px; grid-template-rows: 180px 180px 180px; }
  .brands-strip { padding: 24px 40px; }
  footer { flex-direction: column; gap: 20px; padding: 36px 40px; text-align: center; }
}
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-left { padding: 36px 20px; }
  .about, .contact, .products, .brands-detail, .why-us { padding: 60px 20px; }
  .brands-strip { padding: 20px; }
  .brands-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .photo-showcase { padding: 0 20px 40px; grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px 150px 150px; }
  footer { padding: 28px 20px; }
}
