:root {
  --brand: #0d3b7a;
  --brand-dark: #08244a;
  --gold: #d4af37;
  --ink: #152033;
  --muted: #667085;
  --line: #e7e2d4;
  --soft: #f7f5ef;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(21, 32, 51, .14);
  --shadow-strong: 0 26px 80px rgba(21, 32, 51, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.theme-blue { --brand: #0d3b7a; --brand-dark: #08244a; }
body.theme-purple { --brand: #800040; --brand-dark: #4f0028; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
.container { width: min(100% - 32px, 1180px); max-width: 1180px; }
.section-pad { padding: 92px 0; overflow: hidden; }
.section-soft { background: var(--soft); }
.eyebrow {
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, h4, .navbar-brand span { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(2.65rem, 6vw, 5.8rem); line-height: .98; letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: 0; }
h3 { font-size: 1.85rem; }
.lead { color: var(--muted); font-size: 17px; }

.topbar {
  background: var(--brand-dark);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  padding: 8px 0;
}
.site-header {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 32px rgba(21,32,51,.08);
  backdrop-filter: blur(14px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.navbar-brand { display: flex; align-items: center;
   /* gap: 12px;  */
   color: var(--brand) !important; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.55);
  font-weight: 800;
}
.navbar-brand small { display: block; color: var(--muted); font: 700 .68rem/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.nav-link { color: var(--ink); font-weight: 700; }
.nav-link:hover, .nav-link.active, .dropdown-item.active, .dropdown-item:active { color: var(--gold) !important; background: transparent; }
.dropdown-menu { border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; animation: dropdownFade .22s ease both; }

.btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.32) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(130%); }
.btn-brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.btn-gold { background: var(--gold); color: var(--brand-dark); border-color: var(--gold); }
.btn-gold:hover { background: #c39d27; color: var(--brand-dark); border-color: #c39d27; }
.btn-outline-brand { color: var(--brand); border-color: var(--brand); }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--brand-dark);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -140px;
  border: 1px solid rgba(212,175,55,.38);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(212,175,55,.14);
  animation: slowSpin 18s linear infinite;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,42,.88), rgba(8,20,42,.48)),
    var(--hero-image) center/cover no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero p { color: rgba(255,255,255,.82); max-width: 700px; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 160px 0 70px;
  color: #fff;
  background: var(--brand-dark);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,42,.88), rgba(8,20,42,.45)),
    var(--page-image) center/cover no-repeat;
}
.page-hero .container { position: relative; z-index: 1; }

.advanced-hero .hero-stat {
  display: inline-grid;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.advanced-hero .hero-stat strong { color: var(--gold); font-size: 1.7rem; line-height: 1; }
.advanced-hero .hero-stat span { color: rgba(255,255,255,.76); font-size: .86rem; }

.property-band {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.split-card, .lux-card, .price-card, .testimonial-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.lux-card, .price-card, .property-card, .testimonial-card, .feature-panel {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.lux-card:hover, .price-card:hover, .property-card:hover, .testimonial-card:hover, .feature-panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(212,175,55,.48);
}
.lux-card, .price-card, .testimonial-card { height: 100%; padding: 28px; }
.lux-card i, .price-card i, .contact-tile i { color: var(--gold); font-size: 1.8rem; margin-bottom: 16px; }
.lux-card p, .price-card p, .testimonial-card p { color: var(--muted); }
.image-tile { height: 100%; min-height: 360px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.property-card { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); background: #fff; height: 100%; }
.property-card img { height: 300px; width: 100%; }
.property-card .content { padding: 28px; }
.badge-brand { background: rgba(212,175,55,.18); color: var(--brand); border: 1px solid rgba(212,175,55,.4); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity-item {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}
.amenity-item i { color: var(--gold); margin-right: 10px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid a, .gallery-grid div { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: 100%; transition: transform .35s ease; }
.gallery-grid a:hover img, .gallery-grid div:hover img { transform: scale(1.05); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,245,239,.92)),
    #fff;
  box-shadow: var(--shadow);
}
.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}
.feature-panel i { color: var(--gold); font-size: 2rem; margin-bottom: 18px; }
.feature-panel p { color: var(--muted); }

.rate-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rate-box {
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: var(--shadow);
}
.rate-box span { display: block; color: rgba(255,255,255,.72); font-size: .9rem; }
.rate-box strong { display: block; color: var(--gold); font-size: 1.65rem; }

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--gold);
  box-shadow: 0 14px 30px rgba(21,32,51,.15);
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 250px;
  gap: 18px;
}
.premium-gallery .gallery-shot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.premium-gallery .gallery-shot.large { grid-row: span 2; }
.premium-gallery img { width: 100%; height: 100%; transition: transform .7s ease; }
.premium-gallery .gallery-shot:hover img { transform: scale(1.08); }
.premium-gallery .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(8,21,43,.72);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.testimonial-card {
  position: relative;
  border-top: 4px solid var(--gold);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; }

.map-frame {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-card { padding: 32px; }
.form-control, .form-select {
  min-height: 48px;
  border-radius: 8px;
  border-color: var(--line);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .22rem rgba(212,175,55,.18);
}

.cta-section {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 72px 0;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.85rem;
  box-shadow: 0 14px 32px rgba(37,211,102,.35);
  animation: pulseWhatsApp 2.6s ease infinite;
}

.site-footer {
  background: #08152b;
  color: rgba(255,255,255,.74);
  padding: 70px 0 28px;
}
.site-footer h5 { color: #fff; font-weight: 800; margin-bottom: 18px; }
.site-footer a { display: block; color: rgba(255,255,255,.74); margin-bottom: 9px; }
.site-footer a:hover { color: var(--gold); }
.footer-brand { color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .9rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; transition-delay: var(--delay, 0s); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-34px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right { opacity: 0; transform: translateX(34px); transition: opacity .75s ease, transform .75s ease; }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }
.tilt-card { transform-style: preserve-3d; will-change: transform; }

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes pulseWhatsApp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

.testimonial-section{
    padding:70px 20px;
}

.testimonial-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:34px;
}

.testimonial-slider{
    overflow:hidden;
    max-width:1200px;
    margin:auto;
}

.testimonial-track{
    display:flex;
    gap:25px;
    animation:slide 18s linear infinite;
}

.testimonial-card{
    min-width:360px;
    background:#fff;
    border-radius:14px;
    padding:25px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    border:1px solid #e6e6e6;
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.user{
    display:flex;
    align-items:center;
    gap:12px;
}

.user img{
    width:52px;
    height:52px;
    border-radius:50%;
}

.user h4{
    font-size:17px;
}

.user span{
    color:#777;
    font-size:13px;
}

.google-logo{
    width:24px;
}

.stars{
    color:#fbbc04;
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.testimonial-card p{
    color:#555;
    line-height:1.7;
    font-size:15px;
}

@keyframes slide{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-385px * 3));
    }
}

.testimonial-track:hover{
    animation-play-state:paused;
}

@media(max-width:768px){

.testimonial-card{
    min-width:300px;
}

}