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

:root {
  /* זהב מדויק מהלוגו */
  --gold:        #c4962a;
  --gold-light:  #e2b84a;
  --gold-dark:   #8a6520;
  --gold-shine:  #f0d080;
  --gold-mid:    #d4a83a;
  --black:       #000000;
  --black-soft:  #0d0d0d;
  --black-card:  #141414;
  --black-hover: #1c1c1c;
  --text:        #cdb987;
  --text-light:  #7a6a4a;
  --bg:          #080808;
  --bg-alt:      #0d0d0d;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(196,150,42,.1);
  --shadow-lg:   0 8px 40px rgba(196,150,42,.22);
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5), 0 1px 0 rgba(196,150,42,.15);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-crown { font-size: 1.8rem; filter: drop-shadow(0 0 8px rgba(196,150,42,.6)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo .logo-main {
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub { font-size: .75rem; color: var(--text-light); font-weight: 400; }

nav ul {
  display: flex;
  gap: 2rem;
}
nav ul a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
nav ul a:hover { color: var(--gold-light); }
nav ul a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(196,150,42,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(196,150,42,.05) 0%, transparent 60%),
    #080808;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M40 40 L80 0 L80 80 Z M0 0 L40 40 L0 80 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* קו זהוב בתחתית ה-hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 750px;
}

.hero-tag {
  display: inline-block;
  background: rgba(196,150,42,.1);
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 500;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(196,150,42,.3);
  margin-bottom: 1.2rem;
  letter-spacing: .08em;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 12px rgba(196,150,42,.3));
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* קו דקורטיבי מעל ה-wave */
.hero-wave {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(196,150,42,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,150,42,.5);
  filter: brightness(1.1);
}
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(196,150,42,.5);
}
.btn-outline:hover {
  background: rgba(196,150,42,.08);
  border-color: var(--gold);
  color: var(--gold-shine);
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(196,150,42,.12);
  color: var(--gold);
  border: 1px solid rgba(196,150,42,.3);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  border: 1px solid rgba(196,150,42,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  padding: .6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px rgba(196,150,42,.4);
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.about-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(196,150,42,.12);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,150,42,.3);
}
.about-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(196,150,42,.1);
  border: 1px solid rgba(196,150,42,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--gold);
}
.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .7rem;
}
.about-card p { color: var(--text-light); line-height: 1.7; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(196,150,42,.1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,150,42,.25);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #0a0a0a;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(196,150,42,.25);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}
.service-card p { color: var(--text-light); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }
.price-badge {
  display: inline-block;
  background: rgba(196,150,42,.12);
  color: var(--gold-light);
  border: 1px solid rgba(196,150,42,.25);
  font-size: .85rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
}

/* ===== PRICES ===== */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.price-table {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(196,150,42,.1);
}
.price-table:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,150,42,.3);
}
.price-table-header {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #1a1500, #2a2200);
  border-bottom: 1px solid rgba(196,150,42,.3);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}
.price-table-header i { font-size: 1.2rem; color: var(--gold); }
.price-table ul { padding: .5rem 0; }
.price-table li {
  display: flex;
  justify-content: space-between;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text);
}
.price-table li:last-child { border-bottom: none; }
.price-table li span:last-child { font-weight: 700; color: var(--gold); }

/* ===== HOURS ===== */
.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hours-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196,150,42,.12);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: .85rem 1rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--text);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: left; font-weight: 600; color: #fff; }
.dot { font-size: .55rem; margin-left: .5rem; vertical-align: middle; }
.dot-open { color: #4ade80; }
.dot-closed { color: #f87171; }
.closed-row td { color: var(--text-light); }
.hours-note {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(196,150,42,.06), rgba(196,150,42,.02));
  border-radius: var(--radius);
  border: 1px solid rgba(196,150,42,.15);
}
.hours-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #0a0a0a;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(196,150,42,.3);
}
.hours-note h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: .7rem; }
.hours-note p { color: var(--text-light); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196,150,42,.1);
  transition: transform var(--transition), border-color var(--transition);
}
.contact-item:hover {
  transform: translateX(-4px);
  border-color: rgba(196,150,42,.3);
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #0a0a0a;
}
.contact-item h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.contact-item p { color: var(--text); line-height: 1.8; font-size: .95rem; }
.contact-item a { color: var(--gold-light); font-weight: 500; transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-shine); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid rgba(196,150,42,.15);
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(196,150,42,.15);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy { font-size: .85rem; color: var(--text-light); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(196,150,42,.08);
  border: 1px solid rgba(196,150,42,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  border-color: transparent;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: whatsapp-pulse 2s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #111;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: transparent;
  border-left-color: #111;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a0a;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(196,150,42,.35);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196,150,42,.5);
}

/* ===== INSTAGRAM ===== */
.insta-desc {
  color: var(--text-light);
  margin-top: .5rem;
  font-size: .95rem;
}
.insta-widget-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.insta-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(196,150,42,.15);
  border-radius: var(--radius);
  background: var(--black-card);
}
.insta-big-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: .8rem;
}
.insta-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
}

/* ===== PRICE BUTTON ===== */
.btn-price {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .8rem;
  padding: .55rem 1.3rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(196,150,42,.4);
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-price:hover {
  background: rgba(196,150,42,.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== MODALS ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--black-card);
  border: 1px solid rgba(196,150,42,.25);
  border-radius: var(--radius);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(196,150,42,.1);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-light);
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: rgba(196,150,42,.15); color: var(--gold); }
.modal-header {
  padding: 2rem 2rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(196,150,42,.12);
}
.modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #000;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(196,150,42,.3);
}
.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-body { padding: 1.5rem 2rem 2rem; }
.modal-sub {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.2rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(196,150,42,.15);
}
.modal-sub:first-child { margin-top: 0; }
.modal-note {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: .5rem .8rem;
  background: rgba(196,150,42,.06);
  border-radius: 8px;
  border-right: 3px solid var(--gold);
}
.modal-list { list-style: none; }
.modal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .92rem;
  color: var(--text);
  gap: 1rem;
}
.modal-list li:last-child { border-bottom: none; }
.modal-list li span:last-child {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.modal-list li.modal-deal {
  background: rgba(196,150,42,.07);
  border-radius: 8px;
  padding: .65rem .8rem;
  border: 1px solid rgba(196,150,42,.2);
  margin-top: .4rem;
  color: var(--gold-light);
}
.modal-list li.modal-deal span:last-child { color: var(--gold-shine); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-image {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hours-wrap,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px; right: 0; left: 0;
    background: var(--black-soft);
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    border-top: 1px solid rgba(196,150,42,.15);
    border-bottom: 1px solid rgba(196,150,42,.1);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li { border-bottom: 1px solid rgba(196,150,42,.08); }
  nav ul a { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 2.6rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* About */
  .about-hero { gap: 2rem; }
  .about-image {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .about-text { gap: 1rem; }
  .about-card { padding: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-card { padding: 1.5rem; }

  /* Prices */
  .prices-grid { grid-template-columns: 1fr; }

  /* Hours */
  .hours-wrap { gap: 1.5rem; }
  .hours-card { padding: 1.2rem; }
  .hours-note { padding: 1.8rem 1.2rem; }
  .hours-icon { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Contact */
  .contact-item { padding: 1.2rem; }

  /* Modals */
  .modal { max-height: 90vh; }
  .modal-body { padding: 1.2rem 1.2rem 1.5rem; }
  .modal-header { padding: 1.5rem 1.2rem 1rem; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 1.2rem; }

  /* WhatsApp */
  .whatsapp-float { width: 54px; height: 54px; font-size: 1.7rem; bottom: 1.2rem; right: 1.2rem; }
  .back-to-top { bottom: 1.2rem; left: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-tag { font-size: .8rem; }
  .section-header h2 { font-size: 1.6rem; }
  .about-image { height: auto; object-fit: contain; }
  .about-image-badge { font-size: .78rem; padding: .45rem .9rem; }
  .service-icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .hours-table td { font-size: .9rem; padding: .7rem .6rem; }
  .modal-list li { font-size: .85rem; }
  .insta-placeholder { padding: 2.5rem 1rem; }
}
