/* ==========================================================================
   Real Estate Website Development — Page Styles
   Prefix: res- (scoped to this landing page, safe to load alongside
   the site's existing Bootstrap 4 + header/navbar/footer styles)
   ========================================================================== */

:root {
  --res-primary: #1B2A41;
  --res-primary-dark: #0E1826;
  --res-accent: #C9A227;
  --res-accent2: #4C7C59;
  --res-green: #2F9E44;
  --res-amber: #D97706;
  --res-white: #ffffff;
  --res-off-white: #F7F5F0;
  --res-gray-100: #F1EFE9;
  --res-gray-200: #E3DFD3;
  --res-gray-500: #6B7280;
  --res-gray-700: #374151;
  --res-gray-900: #14202B;

  --res-font-head: 'Fraunces', Georgia, serif;
  --res-font-body: 'Inter', -apple-system, sans-serif;

  --res-radius-sm: 8px;
  --res-radius-md: 16px;
  --res-radius-lg: 24px;
  --res-radius-xl: 36px;
  --res-shadow-sm: 0 2px 12px rgba(27, 42, 65, 0.08);
  --res-shadow-md: 0 8px 32px rgba(27, 42, 65, 0.14);
  --res-shadow-lg: 0 20px 60px rgba(27, 42, 65, 0.20);
  --res-gradient-main: linear-gradient(135deg, #1B2A41 0%, #2E4A5E 55%, #C9A227 100%);
  --res-gradient-soft: linear-gradient(135deg, #F2EFE6 0%, #EAF0EA 100%);
  --res-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Page-level base (does not touch the site's global body/typography) ── */
.res-page {  color: var(--res-gray-900); overflow-x: hidden; }
.res-page img { max-width: 100%; }
.res-page a { text-decoration: none; }

/* ── Section helpers ── */
.res-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--res-accent2); background: rgba(76, 124, 89, 0.08);
  border: 1px solid rgba(76, 124, 89, 0.2); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.res-section-title {  font-weight: 600; color: var(--res-gray-900); line-height: 1.15; }
.res-section-title .res-highlight { background: var(--res-gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.res-section-sub { color: var(--res-gray-500); font-size: 1.05rem; max-width: 620px; }
.res-section-divider { width: 60px; height: 4px; background: var(--res-gradient-main); border-radius: 2px; margin: 12px 0 20px; }
.res-section-divider.center { margin: 12px auto 20px; }

/* ── Buttons ── */
.res-btn-primary, .res-btn-outline, .res-btn-white, .res-btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px; border-radius: 50px; border: none; cursor: pointer; white-space: nowrap; transition: var(--res-transition);
}
.res-btn-primary { background: var(--res-gradient-main); color: #fff; box-shadow: 0 8px 30px rgba(27,42,65,0.3); }
.res-btn-primary:hover, .res-btn-primary:focus { transform: translateY(-3px); color: #fff; }
.res-btn-outline { background: transparent; color: var(--res-primary); border: 2px solid var(--res-primary); padding: 12px 28px; }
.res-btn-outline:hover, .res-btn-outline:focus { background: var(--res-primary); color: #fff; transform: translateY(-3px); }
.res-btn-white { background: #fff; color: var(--res-primary); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.res-btn-white:hover, .res-btn-white:focus { transform: translateY(-3px); color: var(--res-primary-dark); }
.res-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); padding: 12px 28px; }
.res-btn-outline-white:hover, .res-btn-outline-white:focus { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; transform: translateY(-3px); }

/* ── Scroll-reveal ── */
.res-reveal, .res-reveal-left, .res-reveal-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.res-reveal { transform: translateY(40px); }
.res-reveal-left { transform: translateX(-40px); }
.res-reveal-right { transform: translateX(40px); }
.res-reveal.res-visible, .res-reveal-left.res-visible, .res-reveal-right.res-visible { opacity: 1; transform: translate(0,0); }
.res-delay-1{transition-delay:.1s;} .res-delay-2{transition-delay:.2s;} .res-delay-3{transition-delay:.3s;} .res-delay-4{transition-delay:.4s;}
@media (prefers-reduced-motion: reduce) {
  .res-reveal, .res-reveal-left, .res-reveal-right { opacity: 1; transform: none; transition: none; }
}

/* ── HERO ── */
.res-hero { position: relative; background: var(--res-primary-dark); overflow: hidden; padding: 70px 0 60px; }
.res-hero-mesh { position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(201,162,39,0.28) 0%, transparent 65%),
              radial-gradient(ellipse 50% 80% at 5% 85%, rgba(76,124,89,0.35) 0%, transparent 60%); z-index:0; }
.res-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; z-index: 0; }
.res-hero-content { position: relative; z-index: 2; }
.res-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4); color: var(--res-accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 22px; }
.res-hero-badge-dot { width: 8px; height: 8px; background: var(--res-accent); border-radius: 50%; animation: res-pulse 1.6s infinite; }
@keyframes res-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.res-hero-title {  font-size: 3.6rem; font-weight: 600; color: #fff; line-height: 1.12; margin-bottom: 22px; }
.res-hero-title .res-hero-accent { color: var(--res-accent); }
.res-hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.72); margin-bottom: 34px; max-width: 540px; line-height: 1.75; }
.res-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.res-hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.res-hero-trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.68); font-size: 0.88rem; font-weight: 500; }
.res-hero-trust-item i { color: var(--res-accent); }

.res-hero-visual { position: relative; }
.res-hero-card-main { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--res-radius-lg); padding: 26px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); position: relative; }
.res-mockup-header { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.res-mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.res-mockup-dot.red{background:#FF5F57;} .res-mockup-dot.yellow{background:#FEBC2E;} .res-mockup-dot.green{background:#28C840;}
.res-mockup-bar { flex: 1; background: rgba(255,255,255,0.1); border-radius: 50px; height: 26px; display:flex; align-items:center; padding: 0 14px; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.res-mockup-screen { background: linear-gradient(160deg, #14243A 0%, #2E4A5E 100%); border-radius: var(--res-radius-md); padding: 20px; }
.res-mockup-topbar { background: rgba(255,255,255,0.06); border-radius: var(--res-radius-sm); padding: 10px 16px; display:flex; align-items:center; justify-content: space-between; margin-bottom: 14px; }
.res-mockup-logo { color: #fff; font-weight: 700; font-size: 0.9rem;  }
.res-mockup-search-btn { background: var(--res-accent); color: #14202B; padding: 5px 12px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; }
.res-mockup-cards { display: flex; gap: 10px; }
.res-mockup-card { flex: 1; background: rgba(255,255,255,0.06); border-radius: var(--res-radius-sm); overflow: hidden; }
.res-mockup-card-img { height: 60px; background: linear-gradient(135deg, rgba(201,162,39,0.5), rgba(76,124,89,0.5)); }
.res-mockup-card-body { padding: 10px; }
.res-mockup-line { height: 6px; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 6px; width: 80%; }
.res-mockup-line.sub { width: 50%; background: rgba(255,255,255,0.2); }
.res-mockup-price { color: var(--res-accent); font-size: 0.75rem; font-weight: 800; margin-top: 6px; }

.res-float-badge { position: absolute; background: #fff; border-radius: var(--res-radius-md); padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: var(--res-shadow-md); font-size: 0.82rem; font-weight: 700; color: var(--res-gray-900); z-index: 3; animation: res-float 3s ease-in-out infinite; }
@keyframes res-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.res-float-badge.top { top: -18px; right: -8px; animation-delay: .5s; }
.res-float-badge.bottom { bottom: -16px; left: -12px; animation-delay: 1.2s; }
.res-float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.res-float-icon.gold { background: rgba(201,162,39,0.14); color: #B8860B; }
.res-float-icon.green { background: rgba(76,124,89,0.14); color: var(--res-accent2); }
.res-float-label { font-size: 0.72rem; color: var(--res-gray-500); font-weight: 400; }

.res-hero-stats { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--res-radius-md); padding: 20px 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; position: relative; z-index: 2; }
.res-hero-stat-item { text-align: center; }
.res-hero-stat-num {  font-size: 1.8rem; font-weight: 700; color: var(--res-accent); }
.res-hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.76rem; margin-top: 4px; }
.res-hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* ── FEATURES ── */
.res-features { padding: 80px 0; background: var(--res-off-white); }
.res-feature-card { background: #fff; border-radius: var(--res-radius-md); padding: 26px 22px; box-shadow: var(--res-shadow-sm); border: 1px solid var(--res-gray-200); transition: var(--res-transition); height: 100%; }
.res-feature-card:hover { transform: translateY(-8px); box-shadow: var(--res-shadow-md); border-color: rgba(201,162,39,0.25); }
.res-feature-icon { width: 54px; height: 54px; border-radius: var(--res-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.res-feature-title {  font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.res-feature-desc { font-size: 0.87rem; color: var(--res-gray-500); line-height: 1.6; margin: 0; }
.res-ic-gold{background:rgba(201,162,39,.12);color:#B8860B;} .res-ic-green{background:rgba(76,124,89,.12);color:var(--res-accent2);}
.res-ic-navy{background:rgba(27,42,65,.1);color:var(--res-primary);} .res-ic-amber{background:rgba(217,119,6,.1);color:var(--res-amber);}
.res-ic-wa{background:rgba(37,211,102,.1);color:#25D366;} .res-ic-sky{background:rgba(14,165,233,.1);color:#0EA5E9;}
.res-ic-purple{background:rgba(139,92,246,.1);color:#8B5CF6;} .res-ic-rose{background:rgba(244,63,94,.1);color:#F43F5E;}

/* ── SEGMENTS ── */
.res-segments { padding: 80px 0; background: #fff; }
.res-segment-card { background: var(--res-gradient-soft); border-radius: var(--res-radius-md); padding: 30px 22px; text-align: center; border: 1px solid rgba(76,124,89,0.1); transition: var(--res-transition); height: 100%; position: relative; overflow: hidden; }
.res-segment-card::after { content:''; position:absolute; inset:0; background: var(--res-gradient-main); opacity:0; transition: var(--res-transition); }
.res-segment-card:hover::after { opacity: 1; }
.res-segment-card:hover { transform: translateY(-6px); box-shadow: var(--res-shadow-md); }
.res-segment-card > * { position: relative; z-index: 1; }
.res-segment-icon { width: 68px; height: 68px; border-radius: var(--res-radius-md); display:flex; align-items:center; justify-content:center; font-size: 1.6rem; margin: 0 auto 16px; background: #fff; box-shadow: var(--res-shadow-sm); }
.res-segment-name {  font-size: 0.98rem; font-weight: 600; margin-bottom: 8px; transition: color .3s; }
.res-segment-desc { font-size: 0.82rem; color: var(--res-gray-500); margin: 0; transition: color .3s; }
.res-segment-card:hover .res-segment-name, .res-segment-card:hover .res-segment-desc { color: #fff; }

/* ── WHY CHOOSE US ── */
.res-why { padding: 80px 0; background: var(--res-off-white); }
.res-why-card { background: #fff; border-radius: var(--res-radius-lg); padding: 34px; box-shadow: var(--res-shadow-lg); position: relative; overflow: hidden; }
.res-why-card::before { content:''; position:absolute; top:0; left:0; right:0; height: 6px; background: var(--res-gradient-main); }
.res-why-big-stat {  font-size: 4.5rem; font-weight: 700; color: var(--res-primary); line-height: 1; }
.res-why-stat-label { font-size: 1rem; color: var(--res-gray-500); margin-bottom: 26px; }
.res-why-mini-stats { display: flex; gap: 18px; }
.res-why-mini-stat { flex: 1; background: var(--res-off-white); border-radius: var(--res-radius-sm); padding: 14px; text-align: center; }
.res-why-mini-num {  font-size: 1.5rem; font-weight: 700; color: var(--res-primary); }
.res-why-mini-label { font-size: 0.76rem; color: var(--res-gray-500); margin-top: 4px; }
.res-why-reason-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; border-radius: var(--res-radius-sm); transition: var(--res-transition); margin-bottom: 6px; }
.res-why-reason-item:hover { background: #fff; box-shadow: var(--res-shadow-sm); }
.res-why-reason-icon { width: 44px; height: 44px; flex-shrink:0; border-radius: 12px; display:flex; align-items:center; justify-content:center; font-size: 1.05rem; }
.res-why-reason-title {  font-size: 0.94rem; font-weight: 600; margin-bottom: 4px; }
.res-why-reason-desc { font-size: 0.84rem; color: var(--res-gray-500); margin: 0; line-height: 1.6; }

/* ── PROCESS ── */
.res-process { padding: 80px 0; background: var(--res-primary-dark); position: relative; overflow: hidden; }
.res-process::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(201,162,39,0.18) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 70%, rgba(76,124,89,0.25) 0%, transparent 60%); }
.res-process-content { position: relative; z-index: 2; }
.res-process-track { display: flex; gap: 0; margin-top: 56px; overflow-x: auto; padding-bottom: 16px; }
.res-process-step { flex: 1; min-width: 150px; text-align: center; position: relative; }
.res-process-step:not(:last-child)::after { content:''; position:absolute; top: 36px; left: 50%; width: 100%; height: 2px; background: linear-gradient(90deg, rgba(201,162,39,0.5), rgba(76,124,89,0.3)); z-index: 0; }
.res-process-circle { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 2px solid rgba(201,162,39,0.4); display:flex; align-items:center; justify-content:center; font-size: 1.4rem; color: var(--res-accent); margin: 0 auto 16px; position: relative; z-index: 1; transition: var(--res-transition); }
.res-process-step:hover .res-process-circle { background: var(--res-accent); color: #14202B; border-color: var(--res-accent); transform: scale(1.08); }
.res-process-title {  font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.res-process-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; padding: 0 8px; }

/* ── PRICING ── */
.res-pricing { padding: 80px 0; background: var(--res-off-white); }
.res-pricing-card { background: #fff; border-radius: var(--res-radius-lg); padding: 38px 30px; box-shadow: var(--res-shadow-sm); border: 2px solid var(--res-gray-200); transition: var(--res-transition); height: 100%; position: relative; }
.res-pricing-card:hover { transform: translateY(-8px); box-shadow: var(--res-shadow-lg); }
.res-pricing-card.featured { border-color: var(--res-accent); background: linear-gradient(160deg, #1B2A41 0%, #2E4A5E 100%); color: #fff; transform: scale(1.03); }
.res-pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.res-pricing-badge { position: absolute; top: 20px; right: 20px; background: var(--res-accent); color: #14202B; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.res-pricing-plan { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--res-gray-500); margin-bottom: 10px; }
.res-pricing-card.featured .res-pricing-plan { color: rgba(255,255,255,0.7); }
.res-pricing-price {  font-size: 2.8rem; font-weight: 700; margin-bottom: 4px; }
.res-pricing-price span { font-size: 1.1rem; vertical-align: super; margin-right: 2px; }
.res-pricing-period { font-size: 0.82rem; color: var(--res-gray-500); margin-bottom: 22px; }
.res-pricing-card.featured .res-pricing-period { color: rgba(255,255,255,0.65); }
.res-pricing-divider { height: 1px; background: var(--res-gray-200); margin-bottom: 22px; }
.res-pricing-card.featured .res-pricing-divider { background: rgba(255,255,255,0.2); }
.res-pricing-features { list-style: none; padding: 0; margin: 0 0 26px; }
.res-pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; padding: 7px 0; border-bottom: 1px solid var(--res-gray-100); }
.res-pricing-card.featured .res-pricing-features li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.res-pricing-features li i { color: var(--res-green); font-size: 0.85rem; flex-shrink: 0; }
.res-pricing-card.featured .res-pricing-features li i { color: var(--res-accent); }
.res-pricing-features li.crossed { text-decoration: line-through; color: var(--res-gray-200); }
.res-pricing-features li.crossed i { color: var(--res-gray-200); }

/* ── PORTFOLIO ── */
.res-portfolio { padding: 80px 0; background: #fff; }
.res-portfolio-card { border-radius: var(--res-radius-md); overflow: hidden; box-shadow: var(--res-shadow-sm); border: 1px solid var(--res-gray-200); transition: var(--res-transition); height: 100%; }
.res-portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--res-shadow-lg); }
.res-portfolio-img { height: 170px; position: relative; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85);  font-size: 1.1rem; text-align: center; padding: 20px; }
.res-portfolio-body { padding: 20px; }
.res-portfolio-tag { display: inline-block; background: rgba(201,162,39,0.1); color: #B8860B; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.res-portfolio-name {  font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.res-portfolio-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.res-portfolio-meta span { font-size: 0.78rem; color: var(--res-gray-500); display: flex; align-items: center; gap: 5px; }
.res-portfolio-meta span i { color: var(--res-accent2); }

/* ── TESTIMONIALS ── */
.res-testimonials { padding: 80px 0; background: var(--res-off-white); }
.res-testi-card { background: #fff; border-radius: var(--res-radius-md); padding: 30px; box-shadow: var(--res-shadow-sm); border: 1px solid var(--res-gray-200); transition: var(--res-transition); height: 100%; position: relative; }
.res-testi-card:hover { transform: translateY(-6px); box-shadow: var(--res-shadow-md); }
.res-testi-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 14px; display: flex; gap: 3px; }
.res-testi-quote { font-size: 0.92rem; color: var(--res-gray-700); line-height: 1.7; margin-bottom: 22px; }
.res-testi-footer { display: flex; align-items: center; gap: 14px; }
.res-testi-avatar { width: 48px; height: 48px; border-radius: 50%; display:flex; align-items:center; justify-content:center;  font-weight: 700; color: #fff; flex-shrink: 0; }
.res-testi-name {  font-size: 0.94rem; font-weight: 600; }
.res-testi-role { font-size: 0.78rem; color: var(--res-gray-500); }
.res-testi-verified { position: absolute; top: 20px; right: 20px; color: var(--res-green); }

/* ── FAQ ── */
.res-faq { padding: 80px 0; background: #fff; }
.res-faq-wrapper { max-width: 980px; margin: 0 auto; }
.res-faq-item { border-radius: var(--res-radius-md); background: var(--res-off-white); border: 1px solid var(--res-gray-200); margin-bottom: 12px; overflow: hidden; transition: var(--res-transition); }
.res-faq-item.active { border-color: rgba(201,162,39,0.3); box-shadow: var(--res-shadow-sm); }
.res-faq-question { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.res-faq-q-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: rgba(201,162,39,0.12); color: #B8860B; display:flex; align-items:center; justify-content:center; font-size: 0.82rem; }
.res-faq-q-text { flex: 1; font-weight: 700; font-size: 0.94rem; color: var(--res-gray-900); }
.res-faq-toggle { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--res-gray-200); display:flex; align-items:center; justify-content:center; font-size: 0.72rem; transition: var(--res-transition); }
.res-faq-item.active .res-faq-toggle { background: var(--res-accent); color: #fff; transform: rotate(45deg); }
.res-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.res-faq-answer-inner { padding: 0 24px 20px 74px; font-size: 0.9rem; color: var(--res-gray-500); line-height: 1.7; }

/* ── CTA BANNER ── */
.res-cta { padding: 90px 0; background: var(--res-gradient-main); position: relative; overflow: hidden; }
.res-cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.res-cta-orb.o1 { width: 380px; height: 380px; background: rgba(201,162,39,0.3); top: -100px; right: -100px; }
.res-cta-orb.o2 { width: 300px; height: 300px; background: rgba(255,255,255,0.08); bottom: -80px; left: -80px; }
.res-cta-content { position: relative; z-index: 2; }
.res-cta-title {  font-size: clamp(1.7rem,4vw,2.8rem); font-weight: 600; color: #fff; margin-bottom: 14px; }
.res-cta-desc { color: rgba(255,255,255,0.82); font-size: 1.02rem; margin-bottom: 32px; max-width: 580px; }
.res-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.res-cta-trust { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.res-cta-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.78); font-size: 0.85rem; }
.res-cta-trust-item i { color: var(--res-accent); }
.res-cta-timeline-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--res-radius-lg); padding: 30px; }
.res-cta-timeline-title {  font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 18px; }
.res-cta-timeline-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.res-cta-timeline-row:last-child { margin-bottom: 0; }
.res-cta-timeline-icon { width: 40px; height: 40px; border-radius: 12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; background: rgba(201,162,39,0.2); color: var(--res-accent); }
.res-cta-timeline-icon.done { background: rgba(76,124,89,0.25); color: var(--res-accent2); }
.res-cta-timeline-day { font-weight: 700; color: #fff; font-size: 0.88rem; }
.res-cta-timeline-desc { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ── CONTACT ── */
.res-contact { padding: 80px 0; background: var(--res-off-white); }
.res-contact-wrapper { background: #fff; border-radius: var(--res-radius-xl); overflow: hidden; box-shadow: var(--res-shadow-lg); border: 1px solid var(--res-gray-200); }
.res-contact-left { background: var(--res-gradient-main); padding: 34px; height: 100%; }
.res-contact-form-title {  font-size: 1.8rem; font-weight: 600; color: #fff; margin-bottom: 14px; }
.res-contact-form-sub { color: rgba(255,255,255,0.75); margin-bottom: 30px; font-size: 0.94rem; }
.res-contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.res-contact-info-icon { width: 40px; height: 40px; flex-shrink:0; border-radius: 12px; background: rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; color: #fff; }
.res-contact-info-label { font-size: 0.74rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.res-contact-info-value { color: #fff; font-size: 0.94rem; font-weight: 600; }
.res-contact-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.15); color: #fff; display:flex; align-items:center; justify-content:center; font-size: 1rem; transition: var(--res-transition); }
.res-contact-social a:hover { background: rgba(255,255,255,0.28); color: #fff; }
.res-contact-right { padding: 36px 34px; }
.res-form-group { margin-bottom: 18px; }
.res-form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--res-gray-700); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.res-form-control { width: 100%; background: var(--res-off-white); border: 2px solid var(--res-gray-200); border-radius: var(--res-radius-sm); padding: 12px 16px; font-size: 0.92rem; color: var(--res-gray-900); transition: var(--res-transition); outline: none;  }
.res-form-control:focus { border-color: var(--res-accent); background: #fff; box-shadow: 0 0 0 4px rgba(201,162,39,0.12); }
textarea.res-form-control { resize: vertical; min-height: 50px; }
.res-form-success { display: none; background: rgba(47,158,68,0.1); border: 1px solid rgba(47,158,68,0.3); border-radius: var(--res-radius-sm); padding: 16px 20px; color: var(--res-green); font-weight: 600; font-size: 0.92rem; align-items: center; gap: 10px; margin-top: 16px; }
.res-form-success.show { display: flex; }

/* ── STICKY WHATSAPP ── */
.res-wa-sticky { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display:flex; align-items:center; justify-content:center; color: #fff; font-size: 1.5rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5); z-index: 1000; animation: res-wa-bounce 2s ease-in-out infinite; }
.res-wa-sticky:hover, .res-wa-sticky:focus { color: #fff; transform: scale(1.08); }
@keyframes res-wa-bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }

/* ── Responsive tweaks ── */
@media (max-width: 991.98px) {
  .res-hero-title { font-size: 2.6rem; }
}
@media (max-width: 767.98px) {
  .res-hero-title { font-size: 2.1rem; }
  .res-why-big-stat { font-size: 3.4rem; }
  .res-cta-timeline-card { margin-top: 32px; }
}