@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255,255,255,0.04);
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dark: #9a7b4f;
  --green: #4ade80;
  --green-dark: #166534;
  --white: #ffffff;
  --text: #e0e0e0;
  --text-muted: #888;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; scroll-padding-top:80px; }

body {
  font-family:'Inter',sans-serif;
  background:var(--bg-primary);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.7;
}

h1,h2,h3,h4 { font-family:'Playfair Display',serif; color:var(--white); line-height:1.2; }

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

/* ========== NAVBAR ========== */
.navbar {
  position:fixed; top:36px; left:0; width:100%; z-index:1000;
  padding:16px 0;
  background:rgba(10,10,15,0.85);
  backdrop-filter:blur(20px);
  border-bottom:1px solid transparent;
  transition:var(--transition);
}
.navbar.scrolled {
  padding:10px 0;
  border-bottom-color:var(--glass-border);
  background:rgba(10,10,15,0.95);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto; padding:0 24px;
}
.nav-logo {
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.nav-logo-icon {
  width:42px; height:42px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700; color:var(--bg-primary);
  font-family:'Playfair Display',serif;
}
.nav-logo-text { font-family:'Playfair Display',serif; font-size:20px; color:var(--white); font-weight:600; }
.nav-logo-text span { color:var(--gold); }

.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  text-decoration:none; color:var(--text-muted); font-size:14px;
  font-weight:500; letter-spacing:0.5px; text-transform:uppercase;
  transition:var(--transition); position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--gold); transition:var(--transition);
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.nav-cta {
  padding:10px 24px; border:1px solid var(--gold); color:var(--gold);
  background:transparent; border-radius:50px; font-size:13px; font-weight:600;
  cursor:pointer; text-transform:uppercase; letter-spacing:1px;
  transition:var(--transition); text-decoration:none;
}
.nav-cta:hover {
  background:var(--gold); color:var(--bg-primary);
  box-shadow:0 0 30px rgba(201,169,110,0.3);
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { width:24px; height:2px; background:var(--white); transition:var(--transition); }

/* ========== HERO ========== */
.hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding:120px 0 80px;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: rgba(10, 10, 15, 0.7);
}
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 18px; border-radius:50px;
  background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.2);
  color:var(--green); font-size:13px; font-weight:600;
  margin-bottom:24px; letter-spacing:0.5px;
}
.hero-badge .pulse {
  width:8px; height:8px; background:var(--green); border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}
.hero h1 { font-size:clamp(36px,5vw,64px); margin-bottom:20px; }
.hero h1 .gold { color:var(--gold); }
.hero h1 .outline {
  -webkit-text-stroke:1px var(--gold);
  color:transparent;
}
.hero-sub {
  font-size:18px; color:var(--text-muted); margin-bottom:32px;
  max-width:520px; line-height:1.8;
}
.hero-stats {
  display:flex; gap:40px; margin-bottom:40px;
}
.hero-stat { text-align:left; }
.hero-stat-num {
  font-family:'Playfair Display',serif;
  font-size:36px; font-weight:700; color:var(--gold);
}
.hero-stat-label { font-size:13px; color:var(--text-muted); margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.btn-primary {
  padding:14px 36px; background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--bg-primary); border:none; border-radius:50px;
  font-size:14px; font-weight:700; cursor:pointer;
  text-transform:uppercase; letter-spacing:1px;
  transition:var(--transition); text-decoration:none;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,169,110,0.4); }
.btn-outline {
  padding:14px 36px; background:transparent;
  border:1px solid var(--glass-border); color:var(--white);
  border-radius:50px; font-size:14px; font-weight:600;
  cursor:pointer; text-transform:uppercase; letter-spacing:1px;
  transition:var(--transition); text-decoration:none;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

.hero-visual { position:relative; }
.hero-card {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:24px; padding:40px;
  backdrop-filter:blur(10px); position:relative; overflow:hidden;
}
.hero-card::before {
  content:''; position:absolute; top:-50%; right:-50%;
  width:200%; height:200%;
  background:conic-gradient(from 180deg, transparent, rgba(201,169,110,0.05), transparent 30%);
  animation:rotate 8s linear infinite;
}
@keyframes rotate { to { transform:rotate(360deg); } }
.hero-card-inner { position:relative; z-index:1; }
.hero-card h3 { font-size:22px; margin-bottom:24px; color:var(--gold-light); }
.hero-feature {
  display:flex; align-items:center; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--glass-border);
}
.hero-feature:last-child { border-bottom:none; }
.hero-feature-icon {
  width:44px; height:44px; border-radius:12px;
  background:rgba(201,169,110,0.1); display:flex;
  align-items:center; justify-content:center; font-size:20px;
  flex-shrink:0;
}
.hero-feature-text h4 { font-size:15px; font-family:'Inter',sans-serif; font-weight:600; }
.hero-feature-text p { font-size:13px; color:var(--text-muted); }

/* Floating particles */
.particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle {
  position:absolute; width:3px; height:3px;
  background:var(--gold); border-radius:50%; opacity:0.3;
  animation:float-up linear infinite;
}
@keyframes float-up {
  0% { transform:translateY(100vh) scale(0); opacity:0; }
  50% { opacity:0.6; }
  100% { transform:translateY(-100px) scale(1); opacity:0; }
}

/* ========== SECTION COMMON ========== */
.section { padding:100px 0; position:relative; }
.section-header { text-align:center; margin-bottom:64px; }
.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color:var(--gold);
  text-transform:uppercase; letter-spacing:2px; margin-bottom:16px;
}
.section-tag::before, .section-tag::after {
  content:''; width:30px; height:1px; background:var(--gold);
}
.section-header h2 { font-size:clamp(28px,4vw,48px); margin-bottom:16px; }
.section-header p { color:var(--text-muted); max-width:600px; margin:0 auto; font-size:16px; }

/* ========== HIGHLIGHTS ========== */
.highlights-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}
.highlight-card {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); padding:36px 28px;
  transition:var(--transition); position:relative; overflow:hidden;
}
.highlight-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.5s ease;
}
.highlight-card:hover::before { transform:scaleX(1); }
.highlight-card:hover {
  transform:translateY(-8px);
  border-color:rgba(201,169,110,0.3);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.highlight-icon {
  width:56px; height:56px; border-radius:14px;
  background:rgba(201,169,110,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; margin-bottom:20px;
}
.highlight-card h3 {
  font-size:18px; font-family:'Outfit',sans-serif;
  margin-bottom:8px; font-weight:600;
}
.highlight-card p { font-size:14px; color:var(--text-muted); }

/* ========== PRICING ========== */
.pricing-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}
.price-card {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:20px; overflow:hidden;
  transition:var(--transition); position:relative;
}
.price-card.featured { border-color:var(--gold); }
.price-card.featured .price-card-badge {
  position:absolute; top:16px; right:16px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--bg-primary); padding:6px 16px; border-radius:50px;
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px;
}
.price-card:hover {
  transform:translateY(-10px);
  box-shadow:0 24px 60px rgba(201,169,110,0.15);
}
.price-card-header {
  padding:32px 28px 24px;
  background:linear-gradient(135deg,rgba(201,169,110,0.08),transparent);
}
.price-card-type {
  font-family:'Playfair Display',serif;
  font-size:28px; font-weight:700; color:var(--white); margin-bottom:4px;
}
.price-card-area { font-size:14px; color:var(--text-muted); }
.price-card-body { padding:0 28px 28px; }
.price-card-price {
  font-family:'Playfair Display',serif;
  font-size:32px; font-weight:700; color:var(--gold);
  margin:20px 0 8px;
}
.price-card-price span { font-size:14px; color:var(--text-muted); font-family:'Inter',sans-serif; }
.price-card-features { list-style:none; margin:20px 0; }
.price-card-features li {
  padding:10px 0; border-bottom:1px solid var(--glass-border);
  font-size:14px; display:flex; align-items:center; gap:10px;
  color:var(--text);
}
.price-card-features li::before { content:'✓'; color:var(--green); font-weight:700; }
.price-card .btn-primary { width:100%; justify-content:center; margin-top:8px; }

/* ========== FLOOR PLANS ========== */
.floorplan-tabs {
  display:flex; justify-content:center; gap:12px;
  margin-bottom:48px; flex-wrap:wrap;
}
.floorplan-tab {
  padding:10px 28px; border:1px solid var(--glass-border);
  background:transparent; color:var(--text-muted);
  border-radius:50px; cursor:pointer; font-size:14px;
  font-weight:600; transition:var(--transition);
  font-family:'Outfit',sans-serif;
}
.floorplan-tab.active, .floorplan-tab:hover {
  background:var(--gold); color:var(--bg-primary);
  border-color:var(--gold);
}
.floorplan-display {
  display:flex; justify-content:center; align-items:center;
  position:relative;
}
.floorplan-item {
  display:none; flex-direction:column; align-items:center;
  animation:fadeScale 0.5s ease;
}
.floorplan-item.active { display:flex; }
@keyframes fadeScale {
  from { opacity:0; transform:scale(0.95); }
  to { opacity:1; transform:scale(1); }
}
.floorplan-img-wrap {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:20px; padding:24px; max-width:700px;
  backdrop-filter:blur(10px);
  transition:var(--transition);
}
.floorplan-img-wrap:hover { border-color:rgba(201,169,110,0.3); box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.floorplan-img-wrap img {
  width:100%; max-width:600px; height:auto;
  border-radius:12px;
}
.blurred-plan {
    filter: blur(5px) brightness(0.8);
    transition: var(--transition);
}
.floorplan-img-wrap:hover .blurred-plan {
    filter: blur(8px) brightness(0.6);
}
.plan-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    border-radius: 16px;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.floorplan-img-wrap:hover .plan-lock-overlay {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    transform: translate(-50%, -55%);
}
.lock-icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.floorplan-info {
  margin-top:24px; display:flex; gap:32px; flex-wrap:wrap; justify-content:center;
}
.floorplan-info-item { text-align:center; }
.floorplan-info-item strong {
  display:block; font-family:'Playfair Display',serif;
  font-size:22px; color:var(--gold);
}
.floorplan-info-item span { font-size:13px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; }

/* ========== LOCATION ========== */
.location-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:center;
}
.location-map {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--glass-border);
  aspect-ratio:4/3;
}
.location-map iframe { width:100%; height:100%; border:none; }
.location-features { display:flex; flex-direction:column; gap:20px; }
.loc-feat {
  display:flex; align-items:flex-start; gap:16px;
  padding:20px; background:var(--bg-card);
  border:1px solid var(--glass-border);
  border-radius:var(--radius); transition:var(--transition);
}
.loc-feat:hover {
  border-color:rgba(201,169,110,0.3);
  transform:translateX(8px);
}
.loc-feat-icon {
  width:48px; height:48px; border-radius:12px;
  background:rgba(201,169,110,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0;
}
.loc-feat h4 { font-size:16px; font-family:'Outfit',sans-serif; font-weight:600; margin-bottom:4px; }
.loc-feat p { font-size:13px; color:var(--text-muted); }

/* ========== AMENITIES ========== */
.amenities-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}
.amenity-item {
  text-align:center; padding:32px 16px;
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:var(--radius); transition:var(--transition);
  cursor:default;
}
.amenity-item:hover {
  transform:translateY(-6px);
  border-color:rgba(201,169,110,0.3);
  background:rgba(201,169,110,0.05);
}
.amenity-icon { font-size:36px; margin-bottom:14px; display:block; }
.amenity-item h4 {
  font-size:14px; font-family:'Outfit',sans-serif;
  font-weight:600; color:var(--white);
}

.amenities-featured-img, .pricing-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
  border: 1px solid var(--glass-border);
}

/* ========== KEY POSITIVES ========== */
.positives-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:24px;
}
.positive-card {
  display:flex; align-items:flex-start; gap:16px;
  padding:28px; background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:var(--radius); transition:var(--transition);
}
.positive-card:hover {
  transform:translateY(-4px);
  border-color:var(--green);
  box-shadow:0 16px 40px rgba(74,222,128,0.08);
}
.positive-icon {
  width:50px; height:50px; border-radius:14px;
  background:rgba(74,222,128,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; flex-shrink:0;
}
.positive-card h4 { font-size:16px; font-family:'Outfit',sans-serif; font-weight:600; margin-bottom:6px; }
.positive-card p { font-size:13px; color:var(--text-muted); }

/* ========== CONTACT / CTA ========== */
.cta-section {
  background:linear-gradient(135deg,rgba(201,169,110,0.08),rgba(74,222,128,0.04));
  border-top:1px solid var(--glass-border);
  border-bottom:1px solid var(--glass-border);
}
.cta-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
}
.cta-form {
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:20px; padding:40px; backdrop-filter:blur(10px);
}
.cta-form h3 { font-size:28px; margin-bottom:8px; }
.cta-form p { color:var(--text-muted); margin-bottom:28px; font-size:14px; }
.form-group { margin-bottom:18px; }
.form-group label {
  display:block; font-size:13px; color:var(--text-muted);
  margin-bottom:6px; text-transform:uppercase; letter-spacing:0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:14px 18px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--glass-border);
  border-radius:12px; color:var(--white);
  font-size:15px; font-family:'Inter',sans-serif;
  transition:var(--transition); outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 20px rgba(201,169,110,0.1);
}
.form-group select option { background:var(--bg-secondary); color:var(--white); }
.form-group textarea { resize:vertical; min-height:100px; }
.cta-form .btn-primary { width:100%; justify-content:center; margin-top:8px; font-size:15px; padding:16px; }

/* ========== FOOTER ========== */
.footer {
  padding:60px 0 30px;
  background:var(--bg-secondary);
  border-top:1px solid var(--glass-border);
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr;
  gap:40px; margin-bottom:40px;
}
.footer-brand p { color:var(--text-muted); font-size:14px; margin-top:16px; line-height:1.8; }
.footer h4 {
  font-family:'Outfit',sans-serif; font-size:15px;
  color:var(--gold); margin-bottom:16px; text-transform:uppercase;
  letter-spacing:1px;
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a {
  color:var(--text-muted); text-decoration:none; font-size:14px;
  transition:var(--transition);
}
.footer-links a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid var(--glass-border);
  padding-top:24px; text-align:center;
  color:var(--text-muted); font-size:13px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity:0; transform:translateY(40px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ========== MODAL ========== */
.modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.7);
  backdrop-filter:blur(8px); z-index:2000;
  display:none; align-items:center; justify-content:center;
  padding:24px;
}
.modal-overlay.active { display:flex; }
.modal {
  background:var(--bg-secondary); border:1px solid var(--glass-border);
  border-radius:20px; max-width:500px; width:100%;
  padding:40px; position:relative;
  animation:modalIn 0.4s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.9) translateY(20px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}
.modal-close {
  position:absolute; top:16px; right:16px;
  background:none; border:none; color:var(--text-muted);
  font-size:24px; cursor:pointer; transition:var(--transition);
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  border-radius:50%;
}
.modal-close:hover { color:var(--white); background:rgba(255,255,255,0.1); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position:fixed; bottom:30px; right:30px;
  width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--bg-primary); border:none;
  font-size:20px; cursor:pointer;
  display:none; align-items:center; justify-content:center;
  z-index:999; transition:var(--transition);
  box-shadow:0 4px 20px rgba(201,169,110,0.3);
}
.back-to-top.visible { display:flex; }
.back-to-top:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(201,169,110,0.5); }

/* ========== RESPONSIVE ========== */
@media(max-width:968px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-visual { order:-1; }
  .location-grid { grid-template-columns:1fr; }
  .cta-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .hero-stats { gap:24px; }
}
@media(max-width:768px) {
  .nav-links { 
    display:none; position:fixed; top:0; left:0; width:100%; height:100vh;
    background:rgba(10,10,15,0.98); flex-direction:column;
    align-items:center; justify-content:center; gap:32px;
    backdrop-filter:blur(20px);
  }
  .nav-links.open { display:flex; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero-stats { flex-wrap:wrap; }
  .pricing-grid { grid-template-columns:1fr; }
  .section { padding:70px 0; }
  .hero { padding:100px 0 60px; }
  .floorplan-tabs { gap:8px; }
  .floorplan-tab { padding:8px 18px; font-size:12px; }
  .floating-offer-widget { bottom: 20px; left: 15px; transform: scale(0.8); }
  .whatsapp-chat-widget { bottom: 20px; right: 15px; }
}

/* ========== LEAD GEN ELEMENTS ========== */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1001;
    letter-spacing: 0.5px;
}
.urgency-banner .blinking-dot {
    width: 8px;
    height: 8px;
    background-color: #d32f2f;
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.3; }
}
#countdown-timer {
    background: rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--white);
    margin-left: 5px;
}

.floating-offer-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}
.floating-offer-widget:hover {
    transform: translateY(-5px) scale(1.05);
}
.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}
.offer-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(201, 169, 110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
}
.offer-text {
    background: var(--bg-secondary);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -10px;
    border: 1px solid var(--gold);
    z-index: 3;
}

.whatsapp-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat-toggle {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}
.chat-toggle:hover {
    transform: scale(1.1);
}
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #d32f2f;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}
.chat-popup {
    width: 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}
.chat-popup.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.chat-header {
    background: #075e54;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.close-chat { cursor: pointer; font-size: 1.5rem; line-height: 1; }
.chat-body {
    padding: 15px;
    background: var(--bg-primary);
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-msg {
    background: var(--bg-secondary);
    padding: 10px 15px;
    border-radius: 10px;
    border-top-left-radius: 0;
    font-size: 0.95rem;
    color: var(--text);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    align-self: flex-start;
    max-width: 85%;
    border: 1px solid var(--glass-border);
}
.chat-footer {
    padding: 15px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.chat-btn {
    display: inline-block;
    background: #25d366;
    color: var(--bg-primary);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    width: 100%;
}
.chat-btn:hover { background: #128c7e; color: white; }
