/* =====================================================
   MUEBLES AMARILLOS — Design System & Styles
   Ley 1581/2012 & Ley 1480/2011 compliant
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Tokens ── */
:root {
  --amber:       #E8A800;
  --amber-dark:  #B88000;
  --amber-light: #FFD84D;
  --amber-glow:  #FFC10720;
  --wood:        #7C4A1E;
  --wood-light:  #A0613A;
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDD8;
  --charcoal:    #1A1410;
  --charcoal-mid:#2E2620;
  --gray-900:    #1C1C1E;
  --gray-700:    #3A3A3C;
  --gray-500:    #636366;
  --gray-300:    #C7C7CC;
  --gray-100:    #F2F2F7;
  --white:       #FFFFFF;
  --success:     #34C759;
  --error:       #FF3B30;

  --gradient-gold: linear-gradient(135deg, #E8A800 0%, #FFD84D 50%, #B88000 100%);
  --gradient-warm: linear-gradient(160deg, #1A1410 0%, #2E2620 40%, #3D2B1A 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.12);
  --shadow-gold:0 8px 32px rgba(232,168,0,0.35);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  --font-body:  'Plus Jakarta Sans', sans-serif;
  --font-head:  'Outfit', sans-serif;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,168,0,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-secondary:hover {
  background: var(--amber);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ── Section Headings ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-glow);
  color: var(--amber-dark);
  border: 1px solid rgba(232,168,0,0.3);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232,168,0,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 20, 16, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1280px; margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  color: var(--white);
}
.navbar-logo .logo-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--charcoal);
}
.navbar-logo span { color: var(--amber-light); }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--amber-light);
  background: rgba(232,168,0,0.1);
}
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-phone {
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.navbar-phone svg { color: var(--amber); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  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 {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(26,20,16,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  border-bottom: 1px solid rgba(232,168,0,0.15);
  z-index: 999;
  transform: translateY(-100%); opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; display: block; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,0.85);
  font-size: 16px; font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--amber-light); padding-left: 8px; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--gradient-warm);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/hero-banner.jpg');
  background-size: cover; background-position: center;
  opacity: 0.35;
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(26,20,16,0.97) 0%,
    rgba(26,20,16,0.75) 50%,
    rgba(26,20,16,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  padding-top: 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  min-height: 100vh;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,168,0,0.15);
  border: 1px solid rgba(232,168,0,0.4);
  color: var(--amber-light); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 8px 18px; border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--amber-light); line-height: 1;
}
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-image-wrap {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,168,0,0.2);
  aspect-ratio: 4/3;
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: rgba(26,20,16,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(232,168,0,0.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xl);
}
.hero-float-badge .icon {
  width: 44px; height: 44px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hero-float-badge .text { color: var(--white); }
.hero-float-badge .text strong { display: block; font-size: 15px; font-weight: 700; }
.hero-float-badge .text span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* =====================================================
   FEATURES / BENEFITS
   ===================================================== */
.features {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
}
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  border-color: rgba(232,168,0,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* =====================================================
   CATALOG / PRODUCTS
   ===================================================== */
.catalog { background: var(--cream); }
.catalog-header { text-align: center; margin-bottom: 48px; }
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  background: var(--white); color: var(--gray-700);
  border: 2px solid var(--gray-100);
  transition: var(--transition); cursor: pointer;
}
.filter-tab:hover { border-color: var(--amber); color: var(--amber); }
.filter-tab.active {
  background: var(--gradient-gold);
  color: var(--charcoal);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(232,168,0,0.25);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-100);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gradient-gold);
  color: var(--charcoal);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.product-body { padding: 20px 22px 22px; }
.product-category {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--amber-dark); margin-bottom: 8px;
}
.product-name {
  font-size: 18px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px; line-height: 1.3;
}
.product-desc {
  font-size: 13px; color: var(--gray-500); margin-bottom: 16px;
  line-height: 1.6;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--charcoal);
}
.product-price .currency { font-size: 12px; font-weight: 500; color: var(--gray-500); }
.product-cta { display: flex; gap: 8px; }

/* =====================================================
   MODAL
   ===================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,8,6,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 840px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.93) translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.modal-close {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gray-100); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 18px;
}
.modal-close:hover { background: var(--gray-300); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img { aspect-ratio: 4/3; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.modal-category { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--amber-dark); }
.modal-name { font-size: 22px; font-weight: 800; color: var(--charcoal); }
.modal-price-row { display: flex; align-items: baseline; gap: 8px; }
.modal-price { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--charcoal); }
.modal-price-label { font-size: 13px; color: var(--gray-500); }
.modal-specs { background: var(--cream); border-radius: var(--radius-md); padding: 16px; }
.modal-specs h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 12px; }
.spec-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.spec-row:last-child { border: none; }
.spec-key { color: var(--gray-500); }
.spec-val { font-weight: 600; color: var(--charcoal); }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.guarantee-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-500);
  padding: 10px 14px; background: var(--cream);
  border-radius: var(--radius-sm);
}

/* =====================================================
   WHY US
   ===================================================== */
.why-us { background: var(--gradient-warm); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.why-card {
  background: var(--gradient-glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(232,168,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(232,168,0,0.15);
  border: 1px solid rgba(232,168,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.why-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--charcoal);
}
.author-name { font-weight: 700; font-size: 14px; }
.author-loc { font-size: 12px; color: var(--gray-500); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--gradient-gold);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-title { font-size: clamp(28px,4vw,44px); font-weight: 900; color: var(--charcoal); margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(26,20,16,0.7); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--charcoal);
}
.footer-desc { line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; color: rgba(255,255,255,0.7);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-col-title {
  font-family: var(--font-head); font-weight: 700;
  color: var(--white); font-size: 15px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232,168,0,0.3);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--amber-light); padding-left: 4px; }
.footer-schedule-item { margin-bottom: 8px; }
.footer-schedule-item span { color: rgba(255,255,255,0.45); font-size: 12px; }
.footer-schedule-item strong { display: block; color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 700px; }
.footer-legal a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer-legal a:hover { color: var(--amber-light); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.footer-legal-links a { color: rgba(255,255,255,0.55); font-size: 12px; }
.footer-legal-links a:hover { color: var(--amber-light); }
.sic-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
}
.sic-disclaimer a { color: rgba(232,168,0,0.7); text-decoration: underline; }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 18px;
  background: var(--cream); border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md); font-family: var(--font-body);
  font-size: 15px; color: var(--charcoal);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,168,0,0.15); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-check {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 22px;
}
.form-check input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0;
  accent-color: var(--amber); margin-top: 2px; cursor: pointer;
}
.form-check label { font-size: 13px; color: var(--gray-500); line-height: 1.6; cursor: pointer; }
.form-check label a { color: var(--amber-dark); text-decoration: underline; }
.form-success {
  display: none; background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.3);
  border-radius: var(--radius-md); padding: 16px 20px;
  color: #1a7d3a; font-weight: 600; font-size: 15px; text-align: center;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* =====================================================
   PAGE HEADERS (inner pages)
   ===================================================== */
.page-hero {
  background: var(--gradient-warm);
  padding: 140px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 20px; justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { color: var(--amber-light); }

/* =====================================================
   CONTENT PAGES (policy, terms, etc.)
   ===================================================== */
.content-page { background: var(--cream); padding: 64px 0; }
.content-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 900px; margin: 0 auto;
}
.content-box h2 {
  font-size: 22px; font-weight: 800; color: var(--charcoal);
  margin: 36px 0 14px; padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.content-box h2:first-child { margin-top: 0; padding-top: 0; border: none; }
.content-box h3 { font-size: 17px; font-weight: 700; color: var(--charcoal); margin: 24px 0 10px; }
.content-box p { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 14px; }
.content-box ul { padding-left: 20px; margin-bottom: 14px; }
.content-box ul li {
  font-size: 15px; color: var(--gray-700); line-height: 1.7;
  margin-bottom: 8px; list-style: disc;
}
.content-box ul li::marker { color: var(--amber); }
.content-box strong { color: var(--charcoal); font-weight: 700; }
.content-box a { color: var(--amber-dark); text-decoration: underline; }
.content-date {
  font-size: 12px; color: var(--gray-500);
  margin-bottom: 32px;
  padding: 10px 16px; background: var(--cream);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.highlight-box {
  background: var(--amber-glow);
  border: 1px solid rgba(232,168,0,0.3);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
}
.highlight-box p { margin: 0; color: var(--charcoal); font-weight: 500; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--gradient-warm);
  border-radius: var(--radius-xl); padding: 40px;
  color: var(--white);
}
.contact-info-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-info-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.6; }
.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-method:last-of-type { border: none; }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(232,168,0,0.15);
  border: 1px solid rgba(232,168,0,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px;
}
.contact-method-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-method-value { font-size: 16px; font-weight: 600; color: var(--white); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card {
  text-align: center; padding: 32px 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,168,0,0.25); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.about-team { background: var(--white); padding: 64px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.team-card {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-xl); padding: 28px;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: var(--charcoal);
  margin: 0 auto 16px;
}
.team-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--amber-dark); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: var(--transition); text-decoration: none;
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img { display: none; }
  .modal-details { padding: 20px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .content-box { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-cta .btn { display: none; }
  .navbar-cta .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 8px 16px; font-size: 13px; }
}
