/* ===========================
   H Store — components.css
   UI Components
   =========================== */

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(200%) brightness(1.15);
  -webkit-backdrop-filter: blur(30px) saturate(200%) brightness(1.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 1px;
}

.logo-text .sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---------- Desktop Nav ---------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-right: 5px;
  vertical-align: middle;
  transition: var(--transition);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--yellow);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow-light);
}

/* ---------- Mobile Menu Toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: var(--transition);
  margin: 0 auto;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile Drawer ---------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--dark);
  z-index: 1100;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
  padding-top: 5rem;
}

.mobile-drawer.open { right: 0; }

.mobile-drawer a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-fast);
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--yellow);
  background: rgba(245,197,24,0.05);
}

.mobile-drawer .drawer-section-title {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0 0.5rem;
  padding: 0 1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Header CTA ---------- */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

.header-cta svg { width: 18px; height: 18px; }

@media (max-width: 992px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
}

.btn svg { width: 20px; height: 20px; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-wa {
  background: var(--green-whatsapp);
  color: var(--white);
}

.btn-wa:hover {
  background: var(--green-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block { width: 100%; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 .highlight {
  color: var(--yellow);
  position: relative;
}

.hero-content .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
  min-height: 3em;
}

.hero-subtitle.typewriter,
#hero-title.typewriter {
  border-left: 2px solid var(--yellow);
  padding-left: 8px;
  animation: blink-cursor 0.7s step-end infinite;
}

#hero-title {
  min-height: 1.5em;
}

@keyframes blink-cursor {
  0%, 100% { border-left-color: var(--yellow); }
  50% { border-left-color: transparent; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* ---------- Quick Services Bar ---------- */
.quick-services {
  background: var(--dark-2);
  padding: 2.5rem 0;
  border-top: 3px solid var(--yellow);
}

.quick-services .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  background: var(--dark-4);
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,24,0.1);
  border-radius: 50%;
}

.service-card .service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.service-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .quick-services .grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 1.8rem; }
}

/* ===========================
   PRODUCT CARDS
   =========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.product-card .product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-bg);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-card .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.75rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
}

.product-card .product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.product-card .product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.85rem;
  flex: 1;
}

.product-card .product-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.product-card .product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.product-card .product-price .from {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  margin-left: 4px;
}

.product-card .ask-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}

.product-card .ask-price-btn:hover {
  background: var(--green-whatsapp);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.product-card .ask-price-btn svg { width: 16px; height: 16px; }

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--dark);
  transform: rotate(90deg);
}

.modal-close svg { width: 20px; height: 20px; }

.modal-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body { padding: 2rem; }

.modal-body .modal-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.modal-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-body .modal-desc {
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.modal-features {
  margin-bottom: 1.5rem;
}

.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.modal-features li svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.modal-price .label {
  font-size: 0.85rem;
  color: var(--gray);
}

.modal-price .value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
}

/* ===========================
   CATEGORY CARDS (Home)
   =========================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.7;
}

.category-card:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(245,197,24,0.1) 60%, transparent 100%);
}

.category-card .category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
}

.category-card .category-icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.category-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.category-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transform: translateY(5px);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

.category-card .category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.category-card .category-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.category-card:hover .category-link svg {
  transform: translateX(-5px);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-feature svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .about-section { grid-template-columns: 1fr; }
}

/* ===========================
   PARTNERS
   =========================== */
.partners-strip {
  padding: 3rem 0;
  background: var(--white);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo span {
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo svg,
.partner-logo img {
  max-height: 50px;
  width: auto;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
}

.cta-banner > .container { position: relative; z-index: 1; }

.cta-banner h2 {
  margin-bottom: 0.75rem;
  color: var(--black);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(0,0,0,0.7);
}

.cta-banner .btn-dark {
  padding: 1rem 2.5rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}

.footer-social a:hover svg { color: var(--black); }

.footer-social svg { width: 20px; height: 20px; color: rgba(255,255,255,0.7); transition: var(--transition); }

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover { color: var(--yellow); padding-right: 5px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.footer-bottom .heart { color: var(--yellow); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  background: var(--green-whatsapp-dark);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  bottom: 50%;
  right: 100%;
  margin-right: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--dark);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245,197,24,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.contact-info-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.15rem;
}

.contact-info-item .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  direction: ltr;
  text-align: right;
}

.contact-info-item .value a { transition: var(--transition-fast); }
.contact-info-item .value a:hover { color: var(--yellow); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 1.5rem; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: var(--gray-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===========================
   WORK HOURS
   =========================== */
.work-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.work-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.work-hours li:last-child { border-bottom: none; }
.work-hours .day { color: rgba(255,255,255,0.7); }
.work-hours .time { color: var(--yellow); font-weight: 600; }

/* ===========================
   SCROLL TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--yellow);
  color: var(--black);
}

.scroll-top svg { width: 24px; height: 24px; }

@media (max-width: 480px) {
  .scroll-top { bottom: 80px; right: 16px; width: 42px; height: 42px; }
}
