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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --accent-gold: #b18e3a;
  --accent-gold-light: #b18e3a44;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --text-light: #666;
  --bg-white: #ffffff;
  --bg-light: #fcfcfc;
  --bg-card: #f9f9f9;
  --border-color: #e0e0e0;
  --border-light: #eee;
  --whatsapp-green: #25d366;
  --border-radius: 32px;
}

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: all 0.4s ease;
}

.navbar-scrolled .nav-logo img {
  height: 35px;
}

.lang-switcher-header {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.lang-switcher-header:hover {
  background: var(--accent-gold);
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-item:hover { color: var(--accent-gold); }

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-item:hover::after { width: 100%; }

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 3000;
  position: relative;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: 0.3s ease;
}

.mobile-menu-header { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--bg-light);
  color: var(--text-main);
  padding: 40px 40px 25px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer-accent-bar {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo { height: 55px; filter: grayscale(0.2); margin-bottom: 8px; }

.footer-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-tagline-line { height: 1px; width: 20px; background-color: #e0e0e0; }

.footer-tagline-text {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.65rem;
  margin: 0;
}

.footer-contact-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 15px;
  padding: 10px;
}

.footer-link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover { color: var(--accent-gold); }

.footer-link svg { flex-shrink: 0; }

.footer-legal {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 15px;
  gap: 30px;
}

.footer-legal-link {
  color: #999;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover { color: var(--accent-gold); }

.footer-copyright {
  margin-top: 15px;
  font-size: 0.7rem;
  color: #bbb;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2900;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #1a1a1a;
  color: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.85rem;
  line-height: 1.5;
}

#cookie-banner.hidden { display: none; }

#cookie-banner p { margin: 0; opacity: 0.85; }

#cookie-banner a { color: var(--accent-gold); }

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-btn-accept {
  background: var(--accent-gold);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
}

.cookie-btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ============================================================
   PAGE HERO SECTION
   ============================================================ */
.page-hero {
  padding: 60px 20px 40px;
}

.page-hero-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-eyebrow {
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.page-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
}

.page-title-accent {
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  color: var(--accent-gold);
  text-transform: none;
  display: block;
}

.title-divider {
  height: 2px;
  width: 60px;
  background: var(--text-main);
  margin: 25px 0;
}

/* ============================================================
   HOME PAGE - HERO
   ============================================================ */
.home-hero {
  padding: 60px 20px 40px;
}

.home-hero-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin: 0 0 20px 0;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-title-accent {
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  color: var(--accent-gold);
  text-transform: none;
}

.hero-divider {
  height: 2px;
  width: 60px;
  background: var(--text-main);
  margin: 30px 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 500px;
  line-height: 1.5;
  margin: 0 0 40px 0;
}

.hero-cta {
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 8px;
}

.hero-cta:hover { color: var(--accent-gold); }

/* ============================================================
   DECORATIVE IMAGE COMPONENT
   ============================================================ */
.decorative-img-wrapper {
  position: relative;
  padding: 10px;
}

.decorative-img-border {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-gold-light);
  border-radius: var(--border-radius);
  z-index: 0;
}

.decorative-img-border.rotate-pos { right: -15px; transform: rotate(2deg); }
.decorative-img-border.rotate-neg { left: -15px; transform: rotate(-2deg); }

.decorative-img-wrapper img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: block;
}

.decorative-img-badge {
  position: absolute;
  bottom: 20px;
  left: -15px;
  background-color: var(--accent-gold);
  color: #fff;
  padding: 18px 22px;
  border-radius: 15px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.decorative-img-badge.dark-bg { background-color: #1a1a1a; }

.badge-number {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.badge-text.gold-text { color: var(--accent-gold); }

/* ============================================================
   HOME - SECTION 2 (QUALITY)
   ============================================================ */
.home-quality {
  padding: 100px 20px;
  background-color: #fcfcfc;
}

.home-quality-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.quality-text { text-align: left; }

.quality-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.quality-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 25px 0 15px;
  color: var(--text-main);
  line-height: 1.3;
}

.quality-body {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 550px;
}

.underline-cta {
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 8px;
  display: inline-block;
}

.underline-cta:hover { color: var(--accent-gold); }

/* ============================================================
   HOME - SECTION 3 (PILLARS)
   ============================================================ */
.home-pillars {
  padding: 30px 20px;
}

.pillars-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  border: 1px solid #eee;
  border-top: 3px solid var(--accent-gold);
  padding: 20px 25px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.pillar-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.pillar-desc { color: #777; font-size: 0.9rem; line-height: 1.4; margin: 0; }

/* ============================================================
   HOME - SECTION 4 (ACTION CARD)
   ============================================================ */
.home-action {
  padding: 30px 20px;
}

.action-card {
  max-width: 1150px;
  margin: 0 auto;
  background-color: #1a1a1a;
  border-radius: var(--border-radius);
  padding: 45px 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.action-card-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  opacity: 0.1;
}

.action-card-text { position: relative; z-index: 2; max-width: 60%; }

.action-card-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.action-card-body { font-size: 1rem; opacity: 0.8; line-height: 1.6; margin: 0; }

.action-btn {
  background-color: #fff;
  color: #1a1a1a;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 2px;
  font-size: 0.85rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.action-btn:hover { background-color: var(--accent-gold); color: #fff; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-tabs-wrap {
  display: flex;
  justify-content: flex-start;
  max-width: 1150px;
  margin: 0 auto 50px;
  padding: 0 20px;
  position: sticky;
  top: 65px;
  z-index: 10;
}

.products-tabs {
  display: flex;
  background-color: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.tab-btn {
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  color: #888;
}

.tab-btn.active { background: #1a1a1a; color: #fff; }
.tab-btn:hover:not(.active) { color: var(--text-main); }

.products-grid {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.product-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 20px 15px;
  border: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-img-wrap {
  height: 90px;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

.product-name {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 5px 0;
  color: var(--text-main);
  line-height: 1.1;
}

.product-price {
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0 0 5px 0;
}

.product-desc { font-size: 0.8rem; color: #666; margin: 0; line-height: 1.3; }

/* Lentile special box */
.lentile-box {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: var(--border-radius);
  padding: 70px 60px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.lentile-box { padding: 70px 60px; }

.lentile-text { flex: 1; }

.lentile-title {
  color: var(--accent-gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.lentile-body { margin-bottom: 35px; opacity: 0.8; line-height: 1.8; font-size: 1.05rem; }

.lentile-btn {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.lentile-btn:hover { opacity: 0.9; }

.lentile-logo { flex: 0 0 auto; }
.lentile-logo img { width: 100%; max-width: 180px; filter: brightness(0) invert(1); }

.loading-text { text-align: center; color: #999; padding: 40px; }

.hidden { display: none !important; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
  padding: 20px 20px 100px;
}

.services-inner {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #eee 0%, #eee 90%, transparent 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.services-flow { display: flex; flex-direction: column; gap: 60px; }

.service-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.service-row.reverse { flex-direction: row-reverse; }

.service-text {
  flex: 1;
  padding: 0 80px;
}

.service-text.right { text-align: right; }
.service-text.left { text-align: left; }

.service-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 0;
}

.service-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
  margin: 0;
}

.service-text.right p { margin-left: auto; }
.service-text.left p { margin-right: auto; }

.service-icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.service-icon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--accent-gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: rotateRing 25s linear infinite;
}

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

.service-icon-inner {
  width: 75%;
  height: 75%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.service-icon-inner img { width: 45%; height: 45%; object-fit: contain; }

.service-spacer { flex: 1; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 60px 20px 40px;
}

.about-story-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.about-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  max-width: 550px;
  line-height: 1.4;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent-gold);
  padding-left: 25px;
}

.about-body {
  color: #555;
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

.about-values {
  padding: 40px 20px;
  background-color: #fafafa;
}

.about-values-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-values-text { text-align: left; }

.about-values-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-values-body {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.stats-row {
  display: flex;
  gap: 15px;
  max-width: 450px;
}

.stat-card {
  flex: 1;
  border: 1px solid var(--accent-gold);
  padding: 25px 15px;
  border-radius: 20px;
  text-align: center;
}

.stat-card.gold-bg { background-color: var(--accent-gold); color: #fff; border: none; }

.stat-number {
  color: var(--accent-gold);
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-card.gold-bg .stat-number { color: #fff; }

.stat-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
}

.contact-hero { margin-bottom: 100px; }

.contact-layout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: stretch;
}

.contact-info { flex: 1; }

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
}

.contact-block { text-align: left; }

.contact-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-label {
  margin: 0;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-block p { margin: 0; font-size: 1rem; font-weight: 500; line-height: 1.5; }

.contact-block a { color: var(--text-main); }

.schedule-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.schedule-row:last-child { border-bottom: none; margin-bottom: 0; }

.schedule-label { color: #666; font-size: 0.9rem; }
.schedule-time { font-weight: 600; }
.schedule-closed { font-style: italic; color: #999; }

.social-links { display: flex; gap: 25px; }

.social-link { color: var(--text-main); transition: color 0.3s; }
.social-link:hover { color: var(--accent-gold); }
.social-link svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

.contact-note {
  margin-top: 60px;
  border-top: 1px solid var(--text-main);
  padding-top: 40px;
}

.contact-note p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  max-width: 450px;
}

.map-column {
  flex: 1.1;
  min-height: 450px;
}

.map-column iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  min-height: 400px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  background-color: #fff;
  min-height: 100vh;
  padding: 80px 20px 80px;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
}

.legal-inner {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-title {
  font-size: calc(1.3rem + 1.2vw);
  font-weight: 900;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--accent-gold);
  display: block;
  text-transform: uppercase;
  padding-bottom: 8px;
  word-break: break-word;
  line-height: 1.2;
}

.legal-section { margin-bottom: 40px; }

.legal-section h2 {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
}

.legal-highlight {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
}

.legal-highlight-left {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-gold);
}

.legal-highlight ul { list-style: none; padding: 0; margin: 0; }
.legal-highlight li, .legal-highlight-left li { margin-bottom: 10px; }

.legal-table-container { width: 100%; overflow-x: auto; margin: 20px 0; }

table { width: 100%; border-collapse: collapse; min-width: 500px; }

th {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  background: #1a1a1a;
  color: #fff;
}

td { padding: 12px; border: 1px solid #ddd; font-size: 0.85rem; }

tr:nth-child(even) td { background: #fcfcfc; }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.right-item {
  padding: 10px 15px;
  background-color: #f4f4f4;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

.legal-contact-box {
  margin-top: 60px;
  padding: 20px;
  border: 1px solid var(--accent-gold);
  border-radius: 15px;
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.legal-contact-box h2 { margin: 0; font-size: 1.2rem; }
.legal-contact-box p { margin: 0; font-size: 0.95rem; }

.legal-contact-box a {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  word-break: break-all;
}

.legal-date { font-size: 0.75rem; color: #888; margin: 10px 0 0 0; }

.browser-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.browser-link {
  padding: 12px 10px;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s;
}

.browser-link:hover { background-color: var(--accent-gold); }

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0a0a0a;
}

.admin-login-form {
  padding: 60px;
  background: #fff;
  border-radius: 40px;
  text-align: center;
  width: 420px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.admin-login-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.admin-login-logo img { width: 100%; height: 100%; object-fit: contain; }

.admin-login-form h2 {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

.admin-password-input {
  padding: 18px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  background: #f9f9f9;
  font-size: 1rem;
  text-align: center;
  outline: none;
  box-sizing: border-box;
}

.admin-login-btn {
  width: 200px;
  padding: 16px;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f8fafb;
  font-family: 'Inter', sans-serif;
}

.admin-sidebar {
  width: 280px;
  background: #000;
  color: #fff;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
  padding-left: 4px;
}

.admin-sidebar-logo { width: 42px; height: 42px; object-fit: contain; filter: brightness(0) invert(1); }

.admin-sidebar-title { font-weight: 800; font-size: 1.2rem; letter-spacing: 1.5px; }

.admin-nav { flex: 1; }

.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 8px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: #666;
  transition: all 0.2s;
}

.admin-nav-btn.active { background: rgba(177, 142, 58, 0.15); color: var(--accent-gold); }
.admin-nav-btn:hover:not(.active) { background: rgba(255, 255, 255, 0.05); color: #ccc; }

.admin-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-weight: 600;
  padding: 15px;
  border-radius: 12px;
  width: 100%;
}

.admin-main {
  margin-left: 280px;
  flex: 1;
  padding: 60px;
}

.admin-main-header { text-align: center; margin-bottom: 40px; }
.admin-main-header h1 { margin: 0; font-size: 1.8rem; font-weight: 900; color: #111; }

.admin-form-section {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.admin-section-label {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-align: center;
}

.admin-form { display: flex; flex-direction: column; gap: 30px; }

.admin-form-row { display: grid; gap: 25px; }

.admin-form-row.products { grid-template-columns: 1fr 1.5fr 1.5fr 1fr; }
.admin-form-row.services { grid-template-columns: 1fr 1fr; }

.admin-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

.admin-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fcfcfc;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.admin-textarea { min-height: 100px; resize: vertical; }

.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(177, 142, 58, 0.1);
  background: #fff;
}

.admin-form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #f8f8f8;
  padding-top: 30px;
}

.admin-img-upload { display: flex; flex-direction: column; align-items: flex-start; }

.admin-img-row { display: flex; align-items: center; gap: 15px; margin-top: 10px; }

.admin-img-btn {
  background: #fff;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
}

.admin-img-name { font-size: 0.75rem; color: #888; font-style: italic; }

.admin-form-actions { display: flex; gap: 12px; }

.admin-cancel-btn {
  padding: 14px 24px;
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  color: #666;
}

.admin-save-btn {
  padding: 14px 35px;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.85rem;
}

.admin-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.admin-item-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.admin-item-thumb {
  width: 70px;
  height: 70px;
  background: #f8f8f8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.admin-item-thumb img { width: 100%; height: 100%; object-fit: contain; }

.admin-item-info { flex: 1; }

.admin-item-cat { font-size: 0.6rem; font-weight: 900; color: var(--accent-gold); text-transform: uppercase; }

.admin-item-name { font-weight: 700; font-size: 0.95rem; color: #111; }

.admin-item-price { font-size: 0.85rem; color: #444; font-weight: 600; }

.admin-item-actions { display: flex; gap: 8px; }

.admin-edit-btn {
  padding: 10px;
  background: #f9f9f9;
  color: #111;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
}

.admin-delete-btn {
  padding: 10px;
  background: #fff0f0;
  color: #ff4d4d;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

/* ============================================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-title { font-size: 3rem; }

  .home-quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .quality-text { text-align: center; }
  .quality-body { margin-left: auto; margin-right: auto; }

  .pillars-grid { grid-template-columns: 1fr; gap: 12px; }

  .action-card { flex-direction: column; text-align: center; padding: 40px 30px; }
  .action-card-text { max-width: 100%; }
  .action-btn { margin-top: 30px; }

  .about-story-grid, .about-values-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { align-items: center; text-align: center; }
  .about-quote { border-left: none; padding-left: 0; }
  .about-values-text { text-align: center; }
  .stats-row { margin: 0 auto; }

  .about-values-img-order { order: 2; }
  .about-values-text-order { order: 1; }

  .page-hero { padding: 40px 20px; }
  .page-hero-inner { align-items: center; text-align: center; }
  .page-title { font-size: 2.8rem; }

  .contact-layout { flex-direction: column; gap: 60px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-block { text-align: center; }
  .contact-block-header { justify-content: center; }
  .social-links { justify-content: center; }
  .contact-note { text-align: center; }
  .contact-note p { margin: 0 auto; }
  .contact-page { padding: 60px 20px; }
  .contact-hero { margin-bottom: 60px; }

  .service-row, .service-row.reverse { flex-direction: column; }
  .service-text { padding: 0; text-align: center !important; }
  .service-text p { margin-left: auto !important; margin-right: auto !important; }
  .service-icon { width: 100px; height: 100px; margin: 30px 0; }
  .service-spacer { display: none; }
  .services-flow { gap: 80px; }
  .timeline-line { display: none; }

  .lentile-box { flex-direction: column; text-align: center; padding: 50px 30px; }
  .products-tabs-wrap { justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .tab-btn { padding: 10px 18px; }

  .products-tabs-wrap { top: 60px; }
}

/* ============================================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar mobile */
  .main-navbar { z-index: auto; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 30px;
    gap: 10px;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3100;
    border-radius: 30px 0 0 30px;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    visibility: hidden;
  }

  .nav-links.show { right: 0; visibility: visible; }

  .menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: 2400;
    display: none;
  }

  .menu-overlay.show { display: block; }

  .mobile-menu-header {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 70px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }

  .mobile-logo-img { height: 40px !important; width: auto !important; }

  .nav-item {
    display: block;
    width: 100%;
    text-align: right;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s ease;
  }

  .nav-links.show .nav-item { opacity: 1; transform: translateX(0); }
  .nav-links.show li:nth-child(2) .nav-item { transition-delay: 0.05s; }
  .nav-links.show li:nth-child(3) .nav-item { transition-delay: 0.1s; }
  .nav-links.show li:nth-child(4) .nav-item { transition-delay: 0.15s; }
  .nav-links.show li:nth-child(5) .nav-item { transition-delay: 0.2s; }
  .nav-links.show li:nth-child(6) .nav-item { transition-delay: 0.25s; }

  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background-color: var(--accent-gold); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background-color: var(--accent-gold); }

  /* Footer mobile */
  .site-footer { padding: 30px 15px 20px; }
  .footer-logo { height: 45px; }
  .footer-contact-row { flex-direction: column; gap: 12px; }
  .footer-legal { flex-direction: column; gap: 10px; align-items: center; }

  /* WhatsApp mobile */
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 28px; }

  /* Hero mobile */
  .hero-title { font-size: 2.8rem; }
  .home-quality { padding: 60px 20px; }

  /* Products mobile */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
