:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD3;
  --dark: #0E0E0F;
  --dark2: #1A1A1C;
  --charcoal: #2C2C2E;
  --mid: #5A5A5C;
  --light: #F8F7F4;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
    scroll-behavior: smooth;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--dark); line-height: 1;
}
.logo-tagline {
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-top: 3px;
}

.header-contact {
  display: flex; align-items: center; gap: 24px;
}
.contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; color: #000; text-decoration: none;
  transition: color .2s;
}
.contact-item:hover { color: var(--gold); }
.contact-item svg { width: 15px; height: 15px; flex-shrink: 0; }

.header-cta {
  background: var(--gold); color: var(--white);
  border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-size: 15.5px; font-weight: 500; color: #000;
  text-decoration: none; padding: 6px 14px; border-radius: 6px;
  transition: background .2s, color .2s;
}
nav a:hover { background: var(--gold-pale); color: var(--gold); }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(14,14,15,0.88) 0%, rgba(44,44,46,0.75) 60%, rgba(201,168,76,0.08) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%230E0E0F'/%3E%3Cstop offset='100%25' stop-color='%232C2C2E'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23g1)'/%3E%3Ccircle cx='600' cy='150' r='250' fill='%23C9A84C' opacity='0.06'/%3E%3Ccircle cx='100' cy='500' r='180' fill='%23C9A84C' opacity='0.04'/%3E%3C/svg%3E") center/cover no-repeat;
}
/* geometric accent lines */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(201,168,76,0.06) 49%, rgba(201,168,76,0.06) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(201,168,76,0.04) 49%, rgba(201,168,76,0.04) 51%, transparent 52%);
  background-size: 60px 60px;
}

.hero-left {
  position: relative; z-index: 1;
  padding: 80px 60px 80px 80px;
  max-width: 680px;
  animation: fadeUp .9s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
}
.hero-title strong { font-weight: 700; }

.hero-sub {
  font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.7);
  max-width: 500px; margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 10px; border: none;
  cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,0.35); }

.btn-ghost {
  background: transparent; color: var(--white);
  font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Hero Form */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px 80px 24px;
  animation: fadeUp .9s .2s ease both;
}

.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(201,168,76,0.15);
}
.form-header { margin-bottom: 28px; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--dark); line-height: 1.2;
}
.form-sub { font-size: 13px; color: var(--mid); margin-top: 6px; }
.form-accent { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: 12px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #E5E5E5; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--dark); background: var(--light);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group textarea { resize: none; height: 80px; }
.form-group select { appearance: none; cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%; padding: 15px;
  background: var(--dark); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  border: none; border-radius: 10px; cursor: pointer;
  transition: all .2s; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.form-note { font-size: 11px; color: var(--mid); text-align: center; margin-top: 12px; }

/* ── WHY US STRIP ────────────────────────────── */
.strip {
  background: var(--dark);
  padding: 28px 0;
  overflow: hidden;
}
.strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 13.5px; font-weight: 500;
}
.strip-item svg { color: var(--gold); flex-shrink: 0; }
.strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

/* ── SECTION COMMONS ─────────────────────────── */
section { padding: 96px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 1px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px); font-weight: 600; line-height: 1.15;
  color: var(--dark); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 15.5px; color: var(--mid); line-height: 1.75; max-width: 600px; }

/* ── SERVICES ────────────────────────────────── */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 52px;
}
.service-card img 
{
    border-radius:10px;
}
.service-card {
  background: var(--white); border-radius: 16px;
  padding: 30px;
  border: 1px solid transparent;
  transition: all .3s; cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  text-decoration: none; margin-top: 18px;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ── ABOUT ───────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 20px;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%; aspect-ratio: 4/3; border-radius: 20px;
  background:
    linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-image-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #0E0E0F 0%, #2C2C2E 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.about-image-icon svg { width: 72px; height: 72px; color: var(--gold); opacity: 0.8; }
.about-image-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: 16px;
  padding: 20px 24px; text-align: center;
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: var(--white); line-height: 1;
}
.about-badge-text { font-size: 11px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.value-item {
  padding: 20px 22px;
  border: 1px solid #EEEEEE; border-radius: 12px;
  transition: border-color .2s;
}
.value-item:hover { border-color: var(--gold); }
.value-title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.value-title::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); flex-shrink: 0; }
.value-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── HOW WE WORK ─────────────────────────────── */
.process { background: var(--dark); color: var(--white); }
.process .section-title { color: var(--white); }
.process .section-desc { color: rgba(255,255,255,0.6); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%;
  height: 1px; background: rgba(201,168,76,0.25); z-index: 0;
}
.process-step {
  padding: 0 20px; text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.step-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── CTA SECTIONS ────────────────────────────── */
.cta-section { padding: 80px 0; background: var(--gold-pale); }
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.cta-card {
  background: var(--white); border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cta-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
}
.cta-card-icon svg { width: 28px; height: 28px; color: var(--gold); }
.cta-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--dark);
}
.cta-card-desc { font-size: 14px; color: var(--mid); line-height: 1.65; flex: 1; }
.cta-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 12px 22px; border-radius: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; align-self: flex-start;
}
.cta-card-btn:hover { background: var(--gold); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px;
}
.testi-card {
  padding: 32px; border-radius: 16px;
  background: var(--light); border: 1px solid #EEEEEE;
  transition: border-color .25s, box-shadow .25s;
}
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; color: var(--gold); }
.testi-text { font-size: 14.5px; color: var(--charcoal); line-height: 1.72; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* ── INVESTMENT CALCULATOR ────────────────────── */
.calculator { background: var(--dark); color: var(--white); }
.calculator .section-title { color: var(--white); }
.calculator .section-desc { color: rgba(255,255,255,0.6); }
.calc-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 52px; align-items: start;
}
.calc-form { }
.calc-group { margin-bottom: 24px; }
.calc-group label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 10px;
}
.calc-value { color: var(--gold); font-size: 15px; }
.calc-group input[type=range] {
  width: 100%; height: 4px; border-radius: 2px; outline: none; border: none;
  -webkit-appearance: none; cursor: pointer;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--pct,50%), rgba(255,255,255,0.15) var(--pct,50%), rgba(255,255,255,0.15) 100%);
}
.calc-group input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--gold); border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer;
}
.calc-result {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px; padding: 36px;
}
.calc-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.calc-amounts { display: flex; flex-direction: column; gap: 16px; }
.calc-amt-item { display: flex; justify-content: space-between; align-items: center; }
.calc-amt-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.calc-amt-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.calc-amt-val.highlight { color: var(--gold-light); font-size: 32px; }
.calc-divider { height: 1px; background: rgba(255,255,255,0.08); }
.calc-cta { margin-top: 24px; }

/* ── CONTACT ─────────────────────────────────── */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 52px; }
.contact-info { }
.contact-item2 { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.contact-info-val { font-size: 15px; font-weight: 500; color: var(--dark); }
.contact-form-box {
  background: var(--white); border-radius: 16px;
  padding: 40px 36px; box-shadow: var(--shadow);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--white);
}
.footer-brand-desc {
  font-size: 13px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; cursor: pointer;
  border: none;
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  animation: waPulse 2.5s infinite;
  transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 32px; height: 32px; color: white; }
.wa-label {
  background: var(--dark); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: 8px;
  opacity: 0; transform: translateX(10px);
  transition: all .3s; pointer-events: none;
}
.whatsapp-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px 40px; max-width: 100%; }
  .hero-right { padding: 0 32px 60px; }
  .hero-bg { background: linear-gradient(135deg, rgba(14,14,15,0.92) 0%, rgba(44,44,46,0.85) 100%), #1A1A1C; }
  .about-grid, .calc-wrap, .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-contact { display: none; }
  nav { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-form-card { padding: 28px 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
.mainlogo {height:80px;}

/* index services style start */
/* ===== SERVICES SECTION ===== */

.modern-services{
    background:#f5f7fb;
    padding:90px 20px;
    position:relative;
    overflow:hidden;
}

.modern-services .container{
    max-width:1300px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    background:#e9f0ff;
    color:#c9a84c;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header h2{
        font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header h2 span{
    color:#c9a84c;
}

.section-header p{
    max-width:750px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:30px;
}

/* CARD */

.service-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s ease;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.service-img{ 
    overflow:hidden;
    position:relative;
}

.service-img img{
     
    transition:0.5s ease;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    padding:28px;
}

.service-content h3{
    font-size:24px;
	font-family: 'Cormorant Garamond', serif;
    color:#111827;
    margin-bottom:15px;
    font-weight:700;
}

.service-content p{
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

.service-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#c9a84c;
    font-weight:600;
    transition:0.3s ease;
}

.service-content a:hover{
    gap:14px;
    color:#111827;
}

/* RESPONSIVE */

@media(max-width:992px){

    .section-header h2{
        font-size:38px;
    }

    .service-img{
        height:200px;
    }
}

@media(max-width:768px){

    .modern-services{
        padding:70px 15px;
    }

    .section-header h2{
        font-size:30px;
    }

    .section-header p{
        font-size:15px;
    }

    .service-content{
        padding:22px;
    }
}

@media(max-width:480px){

    .services-grid{
        gap:20px;
    }

    .service-img{
        height:190px;
    }

    .service-content h3{
        font-size:22px;
    }
}
/* index services style end */
/*   services page  style end */
 
/* Breadcrumb */
.breadcrumb-banner{
    background:linear-gradient(135deg, #000000, #0e1113);
    padding:120px 20px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.breadcrumb-banner::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.breadcrumb-content h1{
    font-size:50px;
	font-family: 'Cormorant Garamond', serif;
    font-weight:700;
    margin-bottom:15px;
    animation:fadeDown 1s ease;
}

.breadcrumb-content p{
    font-size:18px;
    opacity:0.9;
    animation:fadeUp 1s ease;
}


/* Responsive */
@media(max-width:991px){

   
    .breadcrumb-content h1{
        font-size:36px;
    }
}

@media(max-width:576px){

    .breadcrumb-banner{
        padding:90px 15px;
    }

    .breadcrumb-content h1{
        font-size:28px;
    }

    .breadcrumb-content p{
        font-size:15px;
    }

}
/*    services page style end */
 /* Banner */

.service-banner{
    position:relative;
    background:url('images/banner.jpg') center center/cover no-repeat;
    padding:150px 20px;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(3,14,34,0.92),rgba(10,88,202,0.82));
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    font-size:60px;
    font-weight:600;
    margin-bottom:20px;
    line-height:1.2;
}

.banner-content p{
    font-size:20px;
    opacity:0.9;
}

/* Services */

.zigzag-services{
    max-width:1450px;
    margin:auto;
    padding:100px 20px;
}

.zigzag-card{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:110px;
}

.zigzag-card.reverse{
    flex-direction:row-reverse;
}

/* Image */

.zigzag-image{
    flex:1;
    position:relative;
}

.zigzag-image img{
    width:auto;
    min-height:auto;
    object-fit:cover;
    border-radius:35px;
    box-shadow:0 30px 60px rgba(0,0,0,0.15);
    transition:0.5s;
}

.zigzag-card:hover .zigzag-image img{
    transform:scale(1.03);
}

.zigzag-image::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:#c9a84c;
    border-radius:30px;
    top:-25px;
    left:-25px;
    z-index:-1;
    opacity:0.15;
}

/* Content */

.zigzag-content{
    flex:2;
    background:#fff;
    padding:55px;
    border-radius:35px;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
    transition:0.4s;
}

.zigzag-content:hover{
    transform:translateY(-8px);
}

.service-tag{
    display:inline-block;
    background:#c9a84c36;
    color:#c9a84c;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.zigzag-content h2{
    font-size:42px;
	font-family: 'Cormorant Garamond', serif;
    color:#081f3f;
    margin-bottom:30px;
    font-weight:600;
    position:relative;
}

.zigzag-content h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-12px;
    width:70px;
    height:4px;
    background:#c9a84c;
    border-radius:10px;
}

.zigzag-content p{
    font-size:16px;
    line-height:1.95;
    color:#555;
    margin-bottom:18px;
}

/* Responsive */

@media(max-width:1200px){

    .zigzag-card,
    .zigzag-card.reverse{
        flex-direction:column;
    }

    .zigzag-image img{
        min-height:auto;
    }
}

@media(max-width:768px){

    .service-banner{
        padding:100px 20px;
    }

    .banner-content h1{
        font-size:38px;
    }

    .banner-content p{
        font-size:16px;
    }

    .zigzag-services{
        padding:70px 15px;
    }

    .zigzag-content{
        padding:30px;
    }

    .zigzag-content h2{
        font-size:30px;
    }

    .zigzag-content p{
        font-size:15px;
        line-height:1.85;
    }

    .zigzag-image img{
        border-radius:25px;
    }
}

@media(max-width:576px){

    .banner-content h1{
        font-size:30px;
    }

    .zigzag-card{
        gap:35px;
        margin-bottom:70px;
    }

    .zigzag-content{
        padding:25px 20px;
        border-radius:20px;
    }

    .zigzag-content h2{
        font-size:26px;
    }

    .service-tag{
        font-size:12px;
        padding:8px 15px;
    }
}


/* SECTION */

.preipo-section{
    position:relative;
    padding:120px 20px;
    overflow:hidden;
    background:linear-gradient(to bottom,#ffffff,#fcfaf4);
}
 
/* SHAPES */

.preipo-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;
}

.shape1{
    width:300px;
    height:300px;
    background:#c9a84c52;
    top:0;
    left:-100px;
}

.shape2{
    width:350px;
    height:350px;
    background:#c9a84c52;
    bottom:0;
    right:-100px;
}

/* WRAPPER */

.preipo-wrapper{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:80px;
}

/* LEFT IMAGE */

.preipo-image{
    flex:1;
    position:relative;
}

.image-box img{
    width:100%;
    border-radius:35px;
    object-fit:cover;
    box-shadow:0 30px 70px rgba(0,0,0,0.15);
    transition:0.5s;
}

.image-box:hover img{
    transform:scale(1.03);
}

/* FLOATING CARDS */

.floating-card{
    position:absolute;
    background:#fff;
    padding:22px 25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    animation:float 3s ease-in-out infinite;
}

.floating-card h4{
    font-size:20px;
    color:#081f3f;
    margin-bottom:6px;
}

.floating-card p{
    font-size:14px;
    color:#666;
}

.card1{
    top:40px;
    left:-30px;
}

.card2{
    bottom:40px;
    right:-30px;
}

/* RIGHT CONTENT */

.preipo-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    background:#c9a84c6e;
    color:#c9a84c;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.preipo-content h2{
    font-size:56px;
    line-height:1.2;
    font-family: 'Cormorant Garamond', serif;
    font-weight:600;
    color:#081f3f;
    margin-bottom:25px;
}

.preipo-content h2 span{
    color:#c9a84c;
}

.main-text{
    font-size:17px;
    line-height:2;
    color:#555;
    margin-bottom:35px;
}

/* FEATURES */

.feature-box{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.feature-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
}

.feature-item:hover{
    transform:translateX(10px);
}

.feature-icon{
    min-width:65px;
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#c9a84c,#64511c);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.feature-text h4{
    font-size:22px;
    color:#081f3f;
    margin-bottom:8px;
}

.feature-text p{
    color:#666;
    line-height:1.8;
}

/* BUTTONS */

.preipo-btns{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:16px 32px;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    transition:0.4s;
}

.primary-btn{
    background:linear-gradient(135deg,#c9a84c,#c9a84c);
    color:#fff;
    box-shadow:0 15px 35px rgb(201 168 76 / 46%);
}

.primary-btn:hover{
    transform:translateY(-5px);
}

.secondary-btn{
    border:2px solid #c9a84c;
    color:#c9a84c;
    background:#fff;
}

.secondary-btn:hover{
    background:#c9a84c;
    color:#fff;
}

/* FLOAT ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */

@media(max-width:1200px){

    .preipo-wrapper{
        flex-direction:column;
    }

    .preipo-content h2{
        font-size:44px;
    }

    .card1{
        left:10px;
    }

    .card2{
        right:10px;
    }
}

@media(max-width:768px){

    .preipo-section{
        padding:80px 15px;
    }

    .preipo-content h2{
        font-size:34px;
    }

    .main-text{
        font-size:15px;
    }

    .feature-item{
        flex-direction:column;
    }

    .feature-icon{
        margin-bottom:10px;
    }

    .floating-card{
        position:relative;
        margin-top:20px;
    }

    .card1,
    .card2{
        top:auto;
        left:auto;
        right:auto;
        bottom:auto;
    }
}

@media(max-width:576px){

    .preipo-content h2{
        font-size:28px;
    }

    .feature-text h4{
        font-size:18px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }
}

/* faq section */

.faq-section{
    position:relative;
    padding:120px 120px;
    background:#050505;
    overflow:hidden;
}

/* GLOW EFFECT */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.glow1{
    width:350px;
    height:350px;
    background:#c9a84c50;
    top:-100px;
    left:-100px;
}

.glow2{
    width:350px;
    height:350px;
    background:#00b4d840;
    bottom:-100px;
    right:-100px;
}


/* HEADING */

.faq-heading{
    text-align:center;
    margin-bottom:70px;
}

.faq-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#c9a84c;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.faq-heading h2{
      font-family: 'Cormorant Garamond', serif;
    font-size:56px;
    font-weight:600;
    color:#fff;
    margin-bottom:18px;
}

.faq-heading h2 span{
    color:#c9a84c;
}

.faq-heading p{
    font-size:18px;
    color:#9aa4b2;
}

/* FAQ WRAPPER */

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* FAQ ITEM */

.faq-item{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    transition:0.4s;
}

.faq-item:hover{
    transform:translateY(-5px);
    border-color:#c9a84c;
}

/* QUESTION */

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    padding:32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:24px;
        font-family: 'Cormorant Garamond', serif;
    font-weight:700;
    color:#fff;
    line-height:1.5;
    padding-right:20px;
}

/* ICON */

.faq-icon{
    min-width:55px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#c9a84c,#c9a84c);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:0.4s;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* ANSWER */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.5s ease;
    padding:0 32px;
}

.faq-item.active .faq-answer{
    max-height:1200px;
    padding:0 32px 32px;
}

.faq-answer p{
    color:#c7d0db;
    font-size:16px;
    line-height:2;
}

/* FEATURE BOX */

.faq-feature{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    padding:24px;
    border-radius:20px;
    margin-top:20px;
}

.faq-feature h4{
    font-size:21px;
        font-family: 'Cormorant Garamond', serif;
    color:#c9a84c;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .faq-section{
        padding:80px 15px;
    }

    .faq-heading h2{
        font-size:34px;
    }

    .faq-heading p{
        font-size:15px;
    }

    .faq-question{
        padding:24px;
    }

    .faq-question span{
        font-size:18px;
    }

    .faq-icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:15px;
    }

    .faq-answer p{
        font-size:15px;
        line-height:1.9;
    }

    .faq-feature h4{
        font-size:18px;
    }
}

@media(max-width:576px){

    .faq-heading h2{
        font-size:28px;
    }

    .faq-item{
        border-radius:20px;
    }

    .faq-question{
        padding:20px;
    }

    .faq-answer{
        padding:0 20px;
    }

    .faq-item.active .faq-answer{
        padding:0 20px 20px;
    }
}

/* why choose start */

/* SECTION */

.why-invest-section{
    position:relative;
    padding:120px 120px;
    background:#050505;
    overflow:hidden;
}
 

/* GLOW EFFECT */

.blur-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.blur1{
    width:350px;
    height:350px;
    background:#c9a84c55;
    top:-100px;
    left:-100px;
}

.blur2{
    width:350px;
    height:350px;
    background:#c9a84c35;
    bottom:-100px;
    right:-100px;
}

/* HEADING */

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#c9a84c;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:50px;
    line-height:1.2;
    font-family: 'Cormorant Garamond', serif;
    color:#fff;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:#c9a84c;
}

.section-heading p{
    color:#9ba7b5;
    font-size:18px;
}

/* GRID */

.invest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.invest-card{
    position:relative;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:35px;
    padding:45px 35px;
    overflow:hidden;
    transition:0.5s;
    backdrop-filter:blur(15px);
}

.invest-card:hover{
    transform:translateY(-12px);
    border-color:#c9a84c;
}

.active-card{
    
    border:1px solid #c9a84c;
}

/* CARD GLOW */

.card-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:#c9a84c35;
    border-radius:50%;
    top:-80px;
    right:-80px;
    filter:blur(50px);
}

/* ICON */

.icon-box{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background:linear-gradient(135deg,#c9a84c,#c9a84c);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:35px;
    box-shadow:0 20px 40px rgb(201 168 76 / 40%);
}

.icon-box i{
    font-size:32px;
    color:#fff;
}

/* CONTENT */

.card-content h3{
    font-size:30px;
    
    font-family: 'Cormorant Garamond', serif;
    color:#fff;
    margin-bottom:20px;
    line-height:1.4;
    font-weight:700;
}

.card-content p{
    color:#b8c1cc;
    font-size:16px;
    line-height:2;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .invest-grid{
        grid-template-columns:1fr;
    }

    .active-card{
        transform:none;
    }
}

@media(max-width:768px){

    .why-invest-section{
        padding:80px 15px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .section-heading p{
        font-size:15px;
    }

    .invest-card{
        padding:35px 25px;
        border-radius:25px;
    }

    .card-content h3{
        font-size:24px;
    }

    .card-content p{
        font-size:15px;
        line-height:1.9;
    }

    .icon-box{
        width:90px;
        height:90px;
        border-radius:25px;
    }

    .icon-box i{
        font-size:34px;
    }
}

@media(max-width:576px){

    .section-heading h2{
        font-size:30px;
    }

    .section-tag{
        font-size:12px;
        padding:10px 18px;
    }

    .card-content h3{
        font-size:22px;
    }
}
.footer-logo img {height:80px !important;}
nav .active {
    background: var(--gold-pale);
    color: #785e17;
}

