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

html { scroll-behavior: smooth; }

body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== SECTION DIVIDER LINE ===== */
.section-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(250,204,21,0.5), transparent);
}

/* ===== SECTION HEADING ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.section-tag .line { height: 1px; width: 32px; background: #FACC15; display: inline-block; }
.section-tag span { color: #FACC15; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: translateX(-50%) translateY(-8px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes ping {
  0%   { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 4px 24px rgba(113,63,18,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .nav-inner { height: 80px; } }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 48px; height: 48px; object-fit: contain; }
@media (min-width: 768px) { .nav-brand img { width: 64px; height: 64px; } }
.nav-brand-text { display: none; }
@media (min-width: 640px) { .nav-brand-text { display: block; } }
.nav-brand-text .name { color: #FACC15; font-weight: 700; font-size: 1.125rem; line-height: 1.2; display: block; }
.nav-brand-text .sub  { color: #fff; font-size: 0.7rem; }

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links button {
  color: #d1d5db; font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links button:hover { color: #FACC15; }

.nav-order-btn {
  background: #FACC15; color: #000; font-weight: 700;
  padding: 10px 20px; border-radius: 9999px; font-size: 0.875rem;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.nav-order-btn:hover { background: #eab308; transform: scale(1.05); }

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }

.mobile-menu {
  display: none; background: rgba(0,0,0,0.98);
  border-top: 1px solid rgba(113,63,18,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-inner button {
  color: #d1d5db; text-align: left; font-size: 0.875rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 8px 0; transition: color 0.2s;
}
.mobile-menu-inner button:hover { color: #FACC15; }
.mobile-order-btn {
  background: #FACC15; color: #000; font-weight: 700;
  padding: 10px 20px; border-radius: 9999px; font-size: 0.875rem;
  text-align: center; display: block; transition: background 0.2s;
}
.mobile-order-btn:hover { background: #eab308; }

/* ===== HERO ===== */
#home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%;
  background-image: url('images/gallery2.jpg');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), #000);
}
.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 80px 1rem 0; max-width: 64rem; margin: 0 auto; width: 100%;
}
.hero-logo {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.hero-logo img {
  width: 128px; height: 128px; object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.5));
  animation: fadeInDown 0.8s ease-out;
}
@media (min-width: 768px) { .hero-logo img { width: 160px; height: 160px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,204,21,0.15); border: 1px solid rgba(250,204,21,0.4);
  border-radius: 9999px; padding: 6px 16px; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: #FACC15; border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span { color: #FACC15; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

.hero-title { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.1; }
@media (min-width: 640px)  { .hero-title { font-size: 3rem; } }
@media (min-width: 768px)  { .hero-title { font-size: 4.5rem; } }
.hero-title .yellow { display: block; color: #FACC15; }
.hero-title .red { display: block; color: #ef4444; font-size: 1.5rem; }
@media (min-width: 640px)  { .hero-title .red { font-size: 1.875rem; } }
@media (min-width: 768px)  { .hero-title .red { font-size: 2.25rem; } }

.hero-tagline {
  color: #d1d5db; font-size: 1.125rem; font-weight: 300;
  margin-bottom: 40px; max-width: 42rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px)  { .hero-tagline { font-size: 1.25rem; } }
@media (min-width: 768px)  { .hero-tagline { font-size: 1.5rem; } }

.hero-btns {
  display: flex; flex-direction: column; gap: 16px; justify-content: center; align-items: center;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #22c55e; color: #fff; font-weight: 700;
  padding: 16px 32px; border-radius: 9999px; font-size: 1.125rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 10px 30px rgba(21,128,61,0.4);
}
.btn-wa:hover { background: #16a34a; transform: scale(1.05); }
.btn-wa svg { width: 24px; height: 24px; }

.btn-menu {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #FACC15; color: #000; font-weight: 700;
  padding: 16px 32px; border-radius: 9999px; font-size: 1.125rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 10px 30px rgba(113,63,18,0.4);
  cursor: pointer;
}
.btn-menu:hover { background: #eab308; transform: scale(1.05); }
.btn-menu svg { width: 20px; height: 20px; }

.hero-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 24rem; margin-left: auto; margin-right: auto; text-align: center;
}
.hero-stats .stat-val { font-size: 1.5rem; font-weight: 900; color: #FACC15; }
.hero-stats .stat-lbl { color: #9ca3af; font-size: 0.7rem; margin-top: 4px; }
.hero-stats .mid { border-left: 1px solid rgba(113,63,18,0.4); border-right: 1px solid rgba(113,63,18,0.4); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 24px; height: 24px; color: #FACC15; stroke: #FACC15; }

/* ===== ABOUT ===== */
#about {
  padding: 80px 0; background: #000;
  position: relative; overflow: hidden;
}
.about-glow-r {
  position: absolute; top: -160px; right: -160px;
  width: 320px; height: 320px; background: rgba(250,204,21,0.05);
  border-radius: 50%; filter: blur(60px);
}
.about-glow-l {
  position: absolute; bottom: -160px; left: -160px;
  width: 320px; height: 320px; background: rgba(220,38,38,0.05);
  border-radius: 50%; filter: blur(60px);
}
.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img-wrap { position: relative; }
.about-img-inner {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 50px rgba(113,63,18,0.2);
}
.about-img-inner img { width: 100%; height: 320px; object-fit: cover; }
@media (min-width: 768px) { .about-img-inner img { height: 384px; } }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: #FACC15; border-radius: 16px; padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3); text-align: center;
}
.about-badge .num { color: #000; font-size: 1.875rem; font-weight: 900; }
.about-badge .lbl { color: #000; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.about-text h2 {
  font-size: 1.875rem; font-weight: 900; color: #fff;
  margin-bottom: 24px; line-height: 1.1;
}
@media (min-width: 640px) { .about-text h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .about-text h2 { font-size: 3rem; } }
.about-text h2 .yellow { display: block; color: #FACC15; }
.about-text p { color: #9ca3af; line-height: 1.7; margin-bottom: 24px; }
.about-text p:first-of-type { font-size: 1.125rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.feature-card {
  display: flex; gap: 12px; padding: 16px;
  background: rgba(255,255,255,0.05); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(250,204,21,0.3); }
.feature-card .icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-card .feat-title { color: #fff; font-weight: 600; font-size: 0.875rem; }
.feature-card .feat-desc  { color: #6b7280; font-size: 0.75rem; }

.btn-order-now {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FACC15; color: #000; font-weight: 700;
  padding: 14px 28px; border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-order-now:hover { background: #eab308; transform: scale(1.05); }
.btn-order-now svg { width: 16px; height: 16px; }

/* ===== MENU ===== */
#menu {
  padding: 80px 0; background: #09090b;
  position: relative; overflow: hidden;
}
.menu-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 384px; height: 384px; background: rgba(250,204,21,0.04);
  border-radius: 50%; filter: blur(60px);
}
.menu-heading { text-align: center; margin-bottom: 48px; }
.menu-heading h2 {
  font-size: 1.875rem; font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
@media (min-width: 640px) { .menu-heading h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .menu-heading h2 { font-size: 3rem; } }
.menu-heading h2 .yellow { display: block; color: #FACC15; }
.menu-heading p { color: #9ca3af; font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.menu-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
@media (min-width: 768px) { .menu-filters { gap: 12px; } }
.filter-btn {
  padding: 8px 16px; border-radius: 9999px; font-size: 0.875rem;
  font-weight: 600; background: rgba(255,255,255,0.1); color: #d1d5db;
  transition: all 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.2); }
.filter-btn.active { background: #FACC15; color: #000; transform: scale(1.05); }

.menu-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px)  { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1280px) { .menu-grid { grid-template-columns: repeat(4,1fr); } }

.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.menu-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(250,204,21,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(113,63,18,0.2);
}
.menu-card:hover .card-name { color: #FACC15; }

.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.card-icon { font-size: 1.875rem; }
.card-badge {
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 9999px; white-space: nowrap;
}
.badge-red    { background: #ef4444; }
.badge-yellow { background: #eab308; }
.badge-blue   { background: #3b82f6; }
.badge-purple { background: #a855f7; }
.badge-orange { background: #f97316; }
.badge-green  { background: #22c55e; }
.badge-darkred{ background: #dc2626; }

.card-name {
  color: #fff; font-weight: 700; font-size: 1.125rem;
  margin-bottom: 8px; transition: color 0.3s;
}
.card-desc {
  color: #9ca3af; font-size: 0.875rem; line-height: 1.6;
  margin-bottom: 16px; flex: 1;
}
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price { }
.card-price .amount { color: #FACC15; font-weight: 900; font-size: 1.5rem; }
.card-price .currency { color: #6b7280; font-size: 0.75rem; margin-left: 4px; }
.card-order-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #22c55e; color: #fff; font-size: 0.75rem;
  font-weight: 700; padding: 8px 12px; border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}
.card-order-btn:hover { background: #16a34a; transform: scale(1.05); }
.card-order-btn svg { width: 14px; height: 14px; }

.delivery-banner {
  margin-top: 48px; padding: 24px;
  background: linear-gradient(to right, rgba(250,204,21,0.1), rgba(220,38,38,0.1));
  border: 1px solid rgba(250,204,21,0.3); border-radius: 16px; text-align: center;
}
.delivery-banner .icon { font-size: 1.5rem; margin-bottom: 8px; }
.delivery-banner h3 { color: #fff; font-weight: 700; font-size: 1.125rem; margin-bottom: 4px; }
.delivery-banner p { color: #9ca3af; font-size: 0.875rem; }

/* ===== GALLERY ===== */
#gallery { padding: 80px 0; background: #000; position: relative; overflow: hidden; }

.gallery-heading { text-align: center; margin-bottom: 48px; }
.gallery-heading h2 {
  font-size: 1.875rem; font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
@media (min-width: 640px) { .gallery-heading h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .gallery-heading h2 { font-size: 3rem; } }
.gallery-heading h2 .yellow { display: block; color: #FACC15; }
.gallery-heading p { color: #9ca3af; font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 16px; } }

.gallery-item {
  position: relative; cursor: pointer; overflow: hidden;
  border-radius: 12px; aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); }
.gallery-overlay-inner {
  opacity: 0; transition: opacity 0.3s; text-align: center; padding: 12px;
}
.gallery-item:hover .gallery-overlay-inner { opacity: 1; }
.gallery-overlay-inner svg { width: 32px; height: 32px; margin: 0 auto 8px; stroke: #FACC15; }
.gallery-overlay-inner p { color: #fff; font-weight: 600; font-size: 0.75rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  color: #fff; cursor: pointer; transition: color 0.2s;
}
.lightbox-close:hover { color: #FACC15; }
.lightbox-close svg { width: 32px; height: 32px; }
.lightbox img {
  max-height: 90vh; max-width: 100%;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

/* ===== CONTACT ===== */
#contact { padding: 80px 0; background: #09090b; position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: -160px; right: 0;
  width: 320px; height: 320px; background: rgba(220,38,38,0.05);
  border-radius: 50%; filter: blur(60px);
}

.contact-heading { text-align: center; margin-bottom: 48px; }
.contact-heading h2 {
  font-size: 1.875rem; font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
@media (min-width: 640px) { .contact-heading h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .contact-heading h2 { font-size: 3rem; } }
.contact-heading h2 .yellow { display: block; color: #FACC15; }
.contact-heading p { color: #9ca3af; font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.contact-grid { display: grid; gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 16px; padding: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; transition: border-color 0.2s; text-decoration: none;
}
.contact-card:hover { border-color: rgba(250,204,21,0.3); }
.contact-card.wa-card { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); }
.contact-card.wa-card:hover { border-color: rgba(74,222,128,0.6); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250,204,21,0.1);
}
.contact-icon.wa-icon { background: rgba(34,197,94,0.2); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-card-body .label { color: #fff; font-weight: 700; margin-bottom: 4px; }
.contact-card-body .value { color: #9ca3af; font-size: 0.875rem; }
.contact-card-body .phone-val { color: #FACC15; font-weight: 700; font-size: 1.125rem; }
.contact-card-body .wa-val { color: #4ade80; font-weight: 700; }
.contact-card-body .hours-val { color: #FACC15; font-weight: 600; }
.contact-card-body .hint { color: #9ca3af; font-size: 0.75rem; }

.map-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  height: 320px;
}
@media (min-width: 768px) { .map-wrap { height: 100%; min-height: 320px; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 320px; display: block; }

/* ===== FOOTER ===== */
footer {
  background: #000; border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px; padding-bottom: 24px;
}
.footer-grid { display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand .f-name { color: #FACC15; font-weight: 900; font-size: 1.125rem; line-height: 1.2; }
.footer-brand .f-sub  { color: #9ca3af; font-size: 0.7rem; }
.footer-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.7; }

.footer-col h4 {
  color: #fff; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.875rem;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links button {
  color: #6b7280; font-size: 0.875rem;
  text-align: left; transition: color 0.2s;
}
.footer-links button:hover { color: #FACC15; }

.footer-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-info-item { display: flex; align-items: flex-start; gap: 8px; color: #6b7280; font-size: 0.875rem; }
.footer-info-item svg { width: 16px; height: 16px; stroke: #FACC15; flex-shrink: 0; margin-top: 2px; }
.footer-info-item a { color: #6b7280; transition: color 0.2s; }
.footer-info-item a:hover { color: #FACC15; }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-btn:hover { transform: scale(1.1); }
.social-btn svg { width: 20px; height: 20px; }
.social-wa { background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.3); }
.social-wa:hover { background: #22c55e; }
.social-wa svg { fill: #4ade80; }
.social-fb { background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.3); }
.social-fb:hover { background: #2563eb; }
.social-fb svg { fill: #93c5fd; }
.social-ig { background: rgba(219,39,119,0.2); border: 1px solid rgba(219,39,119,0.3); }
.social-ig:hover { background: #db2777; }
.social-ig svg { fill: #f9a8d4; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: #4b5563; font-size: 0.875rem; }
.footer-bottom span { color: #4b5563; font-size: 0.75rem; }

/* ===== WHATSAPP FLOAT ===== */
#wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; background: #22c55e;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(21,128,61,0.5);
  transition: all 0.3s; opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
#wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#wa-float:hover { background: #16a34a; transform: scale(1.1); }
#wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-ping {
  position: absolute; top: -4px; right: -4px;
  width: 12px; height: 12px; background: #FACC15; border-radius: 50%;
}
.wa-ping::before {
  content: ''; position: absolute; inset: 0;
  background: #FACC15; border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
