/* ================================================================
   CI Real Estate - Premium Frontend Styles
   Design: Luxury Dark & Gold (mylandspace.com Inspiration)
   Fonts: Playfair Display (Serif) / DM Sans (Sans Serif)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --primary: #0a0e1a; /* Deep luxury navy/black */
  --primary-light: #151a28;
  --gold: #c9a84c; /* Premium Gold */
  --gold-hover: #b0923d;
  --gold-light: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #05070d;
  --text-dark: #1f2937;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--primary); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--gold); }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-primary { background: var(--gold); color: var(--primary); font-weight: 600; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--primary); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gold); color: var(--primary); }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}
.centered .gold-line { margin-left: auto; margin-right: auto; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.navbar-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
}
.navbar-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1.1; }
.navbar-logo .logo-text span { font-weight: 300; font-style: italic; }
.navbar-logo .logo-sub { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

.navbar-nav { display: flex; gap: 32px; }
.navbar-nav a {
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  position: relative; padding: 8px 0;
}
.navbar-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
.navbar-nav a:hover::after, .navbar-nav a.active::after { width: 100%; }

.navbar-toggle { display: none; width: 30px; height: 20px; position: relative; cursor: pointer; }
.navbar-toggle span { display: block; position: absolute; height: 2px; width: 100%; background: var(--white); border-radius: 2px; opacity: 1; left: 0; transition: .25s ease-in-out; }
.navbar-toggle span:nth-child(1) { top: 0px; }
.navbar-toggle span:nth-child(2) { top: 9px; }
.navbar-toggle span:nth-child(3) { top: 18px; }

.mobile-menu {
  display: flex; flex-direction: column; position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: var(--primary); z-index: 999; transition: 0.4s ease; padding: 100px 40px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.mobile-menu a:hover { color: var(--gold); border-color: var(--gold); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.4;
  transform: scale(1.05);
  animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
.hero-glow {
  position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none;
}
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--primary) 0%, transparent 100%); }

.hero-content {
  position: relative; z-index: 2; width: 100%; padding-top: 100px;
}
.hero-content .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1.2; color: var(--white); }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; color: var(--gold); }

.hero-title { color: var(--white); margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 48px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 8px; }
.hero-stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

/* Search Card */
.hero-search-card {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero-search-card h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.hero-search-card p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.search-tabs { display: flex; gap: 8px; margin-bottom: 24px; background: rgba(0,0,0,0.2); padding: 4px; border-radius: 50px; }
.search-tab {
  flex: 1; padding: 12px; font-weight: 600; color: rgba(255,255,255,0.6); border: none; background: transparent;
  border-radius: 50px; transition: var(--transition);
}
.search-tab.active { background: var(--gold); color: var(--primary); }

.search-field { margin-bottom: 20px; }
.search-field label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.search-field input, .search-field select {
  width: 100%; padding: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); color: var(--white); font-size: 1rem; transition: var(--transition);
}
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }
.search-field option { background: var(--primary); color: var(--white); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); z-index: 10; }
.mouse { width: 24px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 6px; background: var(--white); border-radius: 2px; animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ================================================================
   SECTIONS & PROPERTY CARDS
   ================================================================ */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-mid); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.property-card {
  background: var(--white); border-radius: 0; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
  position: relative;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.property-card-image { position: relative; height: 260px; overflow: hidden; }
.property-card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; }
.property-card:hover .property-card-image img { transform: scale(1.1); }
.property-card-badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.badge { padding: 6px 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; background: var(--primary); color: var(--white); border-radius: 0; }
.badge-gold { background: var(--gold); color: var(--primary); }
.property-card-action { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 2; }
.property-card-action:hover { background: var(--gold); color: var(--white); }

.property-card-body { padding: 30px; }
.property-card-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.property-card-price span { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--text-light); font-weight: 400; }
.property-card-title { font-size: 1.3rem; margin-bottom: 12px; }
.property-card-title a:hover { color: var(--gold); }
.property-card-location { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }

.property-card-divider { height: 1px; background: var(--border); margin: 0 -30px 20px; }
.property-card-specs { display: flex; justify-content: space-between; }
.property-spec { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 500; font-size: 0.9rem; }
.property-spec i { color: var(--gold); font-size: 1.1rem; }

.property-card-footer { padding: 16px 24px; background: var(--bg-light); border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.property-card-footer-top { display: flex; justify-content: space-between; align-items: center; }
.property-card-footer-top span { color: var(--text-mid); font-size: 0.85rem; }
.property-card-footer-top a { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px; }
.property-card-footer-top a:hover { color: var(--gold); }
.property-card-actions { display: flex; gap: 8px; }
.prop-btn-whatsapp { flex:1; display:flex; align-items:center; justify-content:center; gap:6px; padding:9px 12px; background:#25d366; color:#fff; border-radius:6px; font-size:13px; font-weight:600; transition:.2s; }
.prop-btn-whatsapp:hover { background:#128c7e; color:#fff; }
.prop-btn-call { flex:1; display:flex; align-items:center; justify-content:center; gap:6px; padding:9px 12px; background:var(--primary); color:#fff; border-radius:6px; font-size:13px; font-weight:600; transition:.2s; }
.prop-btn-call:hover { background:var(--gold); color:var(--primary); }

/* ================================================================
   STATS & WHY US
   ================================================================ */
.section-stats { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.section-stats::before { content: ''; position: absolute; right: 0; bottom: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; position: relative; z-index: 2; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 600; margin-bottom: 16px; line-height: 1; }
.stat-number .accent { color: var(--gold); }
.stat-divider { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 16px; }
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.why-card { padding: 40px; background: var(--white); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.why-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-icon { width: 80px; height: 80px; background: var(--gold-light); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 24px; transition: var(--transition); }
.why-card:hover .why-icon { background: var(--gold); color: var(--white); }
.why-card h4 { margin-bottom: 16px; font-size: 1.4rem; }
.why-card p { color: var(--text-mid); }

/* ================================================================
   TESTIMONIALS & BLOG
   ================================================================ */
.section-testimonials { background: var(--bg-light); }
.testimonial-card { background: var(--white); padding: 40px; border: 1px solid var(--border); position: relative; }
.testimonial-quote-icon { position: absolute; top: 40px; right: 40px; font-size: 40px; color: var(--gold-light); }
.testimonial-stars { color: var(--gold); margin-bottom: 20px; font-size: 14px; }
.testimonial-text { font-size: 1.1rem; color: var(--text-dark); font-style: italic; margin-bottom: 30px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 24px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-light); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.testimonial-name { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem; color: var(--primary); }
.testimonial-role { font-size: 0.85rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card-image { height: 240px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--primary); padding: 6px 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-body { padding: 30px; }
.blog-card-title { font-size: 1.4rem; margin-bottom: 16px; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { color: var(--text-mid); margin-bottom: 24px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-meta a { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.blog-card-meta a:hover { color: var(--gold); }

/* ================================================================
   CTA & FOOTER
   ================================================================ */
.section-cta { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-content h2 { color: var(--primary); margin-bottom: 24px; font-size: 3rem; }
.cta-content p { color: var(--primary); font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.footer-logo-text span { font-weight: 300; font-style: italic; }
.footer-desc { margin-bottom: 32px; font-size: 0.95rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 16px; }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }

.footer-heading { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.4rem; margin-bottom: 32px; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { position: relative; padding-bottom: 2px; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.footer-contact-item i { color: var(--gold); font-size: 20px; margin-top: 4px; }

.newsletter-form { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 8px; margin-top: 24px; }
.newsletter-form input { flex: 1; background: transparent; border: none; color: var(--white); padding: 8px 0; font-family: 'DM Sans', sans-serif; }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { background: transparent; border: none; color: var(--gold); cursor: pointer; font-size: 1.2rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* ================================================================
   WIDGETS (WhatsApp & Chat)
   ================================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
}
.floating-whatsapp:hover { transform: scale(1.1); background-color: #128c7e; color: #fff; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1200px) {
  .hero-content .container { flex-direction: column; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-search-card { width: 100%; max-width: 800px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .property-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .why-grid, .blog-grid, .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; }
  .navbar-nav { display: none; }
  .navbar-toggle { display: block; }
  .hero-search-card { padding: 24px; }
  .search-grid { grid-template-columns: 1fr; }
  .why-grid, .blog-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-col:nth-child(1), .footer-col:nth-child(4) { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .features-grid > div { padding: 15px 10px; }
  .floating-whatsapp,
  .floating-call { bottom: 20px; width: 50px; height: 50px; font-size: 24px; }
  .floating-whatsapp { right: 20px; }
  .floating-call { right: 80px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 16px; margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { margin-bottom: 30px; font-size: 1.1rem; }
  .hero-stats { gap: 20px; padding-top: 24px; justify-content: space-around; }
  .hero-stat-num { font-size: 2rem; }
}

/* ================================================================
   FLOATING ACTION WIDGETS
   ================================================================ */
.floating-whatsapp,
.floating-call {
  position: fixed;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-whatsapp:hover,
.floating-call:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  color: #fff;
}
.floating-whatsapp {
  right: 28px;
  background: #25d366;
}
.floating-call {
  right: 94px;
  background: #0f172a;
}

/* Pulse animation on WhatsApp */
.floating-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25d366;
  opacity: .5;
  animation: floatPulse 2s infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: .5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
