/* ================================
   GLOBAL
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  margin: 0;
  font-family: Poppins;
  background: #f8fafc;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}


/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}


/* ================================
   HERO
================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  /* Fallback image if video fails to load */
  background: #0f172a url('/assets/images/hero.jpg') center/cover no-repeat;
}

/* Background video — fills the hero section on both desktop and mobile */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of the video for readable text */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
  z-index: 1;
}

/* Content sits above video + overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 55px;
}

.btn-main {
  background: #c8a96a;
  padding: 12px 25px;
  color: #000;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 12px 25px;
  color: #fff;
}


/* ================================
   SERVICES
================================ */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 GRID */
  gap: 30px;
}

.service-pro-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* HOVER */
.service-pro-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
/* ENTRY ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.services-pro-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-pro-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON ANIMATION */
.service-pro-card .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.service-pro-card svg {
  width: 28px;
  height: 28px;
  fill: #c8a96a;
}

/* ICON ANIMATION */
.service-pro-card:hover .icon {
  background: #c8a96a;
}

.service-pro-card:hover svg {
  fill: #fff;
  transform: scale(1.1);
}

/* ================================
   AGENTS GRID
================================ */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}


/* ================================
   AGENT CARD
================================ */
.agent-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.agent-card:hover {
  transform: translateY(-10px);
}


/* ANIMATED BORDER */
.agent-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(270deg, #c8a96a, #ffffff, #c8a96a);
  background-size: 400% 400%;
  animation: borderFlow 6s linear infinite;
  z-index: -1;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* GLOW SWIPE */
.agent-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.agent-card:hover::after {
  left: 100%;
}


/* IMAGE */
.agent-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 15px;
}

.agent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-card:hover img {
  transform: scale(1.08);
}


/* CONTENT */
.agent-content {
  padding: 15px;
  text-align: center;
}

.agent-content p {
  color: #777;
  font-size: 14px;
}


/* ================================
   AGENT BUTTONS (FINAL SYSTEM)
================================ */
.agent-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.agent-buttons .btn {
  padding: 10px;
  border-radius: 30px;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


/* BUTTON COLORS */
.btn.call {
  background: #0f172a;
  color: #fff;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.email {
  background: #1e293b;
  color: #fff;
}

.btn.property {
  background: #c8a96a;
  color: #000;
}


/* BUTTON HOVER */
.agent-buttons .btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* BUTTON SHINE */
.agent-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: 0.5s;
}

.agent-buttons .btn:hover::before {
  left: 100%;
}


/* ================================
   TESTIMONIAL
================================ */

.testimonials {
  background: #0f172a;
  color: #fff;
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
}

/* QUOTE STYLE */
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.testimonial-card h4 {
  margin-top: 15px;
  font-size: 13px;
  color: #c8a96a;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   FOOTER
================================ */
.footer {
  background: #020617;
  color: #ccc;
  text-align: center;
  padding: 50px 20px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-contact {
  margin: 15px 0;
  font-size: 14px;
}

.footer-contact p {
  margin: 5px 0;
}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .agents-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
    
    .agent-card {
  height: auto;
}

.agent-img {
  aspect-ratio: 4/5;
}

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .services-pro-grid {
    grid-template-columns: 1fr;
  }

  .agent-buttons {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-box {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  height: 120px;
}

/* BUTTON */
.contact-form button {
  background: #c8a96a;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* MESSAGES */
.success {
  color: green;
}

.error {
  color: red;
}

/* ================================
   CTA LUXURY
================================ */

.cta {
  text-align: center;
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  padding: 80px 20px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  color: #333;
  margin-bottom: 20px;
}

/* ================================
   WHATSAPP FLOAT FIX
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ================================
   FEATURED AGENT
================================ */

.featured-agent {
  background: #0f172a;
  color: #fff;
  padding: 80px 0;
}

.featured-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.featured-img {
  width: 250px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 15px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* FEATURED SLIDER STYLES */
.featured-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.featured-slide {
  min-width: 300px;
  background: #1e293b;
  padding: 20px;
  border-radius: 15px;
  scroll-snap-align: start;
}

.featured-content .badge {
  background: #c8a96a;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  color: #000;
  font-weight: 600;
}

/* ================================
   FEATURED AGENTS SLIDER
================================ */
.featured-agents {
  background: linear-gradient(135deg, #0f172a, #1a2635);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.featured-agents .section-title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 28px;
}

@media (max-width: 768px) {
  .featured-agents .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.featured-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .featured-slider-container {
    padding: 0 20px;
  }
}

.featured-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-slider::-webkit-scrollbar {
  display: none;
}

.featured-slide {
  min-width: calc(33.333% - 30px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

/* Mobile - keep same styling just different width */
@media (max-width: 992px) {
  .featured-slide {
    min-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .featured-slide {
    min-width: calc(100% - 40px);
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .featured-slide {
    min-width: 100%;
    scroll-snap-align: center;
  }
}

.featured-slide-inner {
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 169, 106, 0.3);
}

/* Mobile hover effect - use same styling */
@media (max-width: 768px) {
  .featured-slide-inner:active {
    transform: scale(0.98);
  }
}

.featured-slide-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(200, 169, 106, 0.2);
  border-color: #c8a96a;
}

.featured-slide .featured-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

/* Mobile image height */
@media (max-width: 768px) {
  .featured-slide .featured-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .featured-slide .featured-img {
    height: 220px;
  }
}

.featured-slide .featured-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #1e293b, transparent);
  z-index: 1;
}

.featured-slide .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-slide-inner:hover .featured-img img {
  transform: scale(1.1);
}

/* Mobile image zoom on touch */
@media (max-width: 768px) {
  .featured-slide-inner:active .featured-img img {
    transform: scale(1.05);
  }
}

.featured-slide .featured-content {
  padding: 25px 20px 25px;
  text-align: center;
  position: relative;
  background: #1e293b;
  z-index: 2;
}

.featured-slide .badge {
  display: inline-block;
  background: #c8a96a;
  color: #000;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(200, 169, 106, 0.3);
  position: relative;
  top: -45px;
  margin-bottom: -25px;
  text-transform: uppercase;
}

/* Mobile badge */
@media (max-width: 768px) {
  .featured-slide .badge {
    font-size: 12px;
    padding: 6px 16px;
    top: -40px;
    margin-bottom: -20px;
  }
}

.featured-slide h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

/* Mobile heading */
@media (max-width: 768px) {
  .featured-slide h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .featured-slide h3 {
    font-size: 20px;
  }
}

.featured-slide p {
  color: #c8a96a;
  font-size: 15px;
  margin-bottom: 15px;
  opacity: 0.9;
  font-weight: 500;
}

/* Mobile text */
@media (max-width: 768px) {
  .featured-slide p {
    font-size: 14px;
  }
}

.featured-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

/* Mobile contact icons */
@media (max-width: 768px) {
  .featured-contact {
    gap: 12px;
    margin: 15px 0;
  }
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 169, 106, 0.3);
}

/* Mobile contact icon size */
@media (max-width: 768px) {
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.contact-icon:hover {
  background: #c8a96a;
  transform: translateY(-3px);
  color: #000;
  border-color: #c8a96a;
  box-shadow: 0 5px 15px rgba(200, 169, 106, 0.4);
}

/* Mobile touch effect */
@media (max-width: 768px) {
  .contact-icon:active {
    background: #c8a96a;
    transform: scale(0.95);
    color: #000;
  }
}

.btn-small {
  display: inline-block;
  background: transparent;
  color: #c8a96a;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #c8a96a;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile button */
@media (max-width: 768px) {
  .btn-small {
    padding: 8px 20px;
    font-size: 13px;
    margin-top: 5px;
  }
}

.btn-small:hover {
  background: #c8a96a;
  color: #000;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(200, 169, 106, 0.3);
}

/* Mobile button touch */
@media (max-width: 768px) {
  .btn-small:active {
    background: #c8a96a;
    color: #000;
    transform: scale(0.95);
  }
}

/* Slider Navigation - same for mobile/desktop */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #c8a96a;
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.slider-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  border-color: #c8a96a;
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

/* Hide navigation on very small screens - use swipe instead */
@media (max-width: 480px) {
  .slider-nav {
    display: none;
  }
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .slider-dots {
    margin-top: 20px;
  }
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dot:hover {
  background: rgba(200, 169, 106, 0.5);
  transform: scale(1.2);
}

.dot.active {
  background: #c8a96a;
  transform: scale(1.2);
  width: 25px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(200, 169, 106, 0.5);
}

/* Mobile dots */
@media (max-width: 768px) {
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 20px;
  }
}

/* Touch feedback for mobile */
@media (max-width: 768px) {
  .featured-slide-inner {
    cursor: pointer;
  }
  
  .featured-slide-inner:active {
    opacity: 0.9;
  }
}

/* Ensure smooth scrolling on mobile */
@media (max-width: 768px) {
  .featured-slider {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 15px;
  }
}

/* Loading animation for images */
.featured-slide .featured-img img {
  opacity: 0;
  animation: imageLoad 0.5s ease forwards;
}

@keyframes imageLoad {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gradient overlay - same for mobile */
.featured-slide .featured-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #1e293b, transparent);
  z-index: 1;
}

/* Ensure text is always readable */
.featured-slide .featured-content {
  position: relative;
  z-index: 2;
  background: #1e293b;
}
/* ================================
   AGENT BADGE
================================ */

.agent-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c8a96a;
  color: #000;
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* MOBILE FIXES FOR FEATURED AGENT */
@media (max-width: 768px) {

  .featured-box,
  .featured-slide {
    flex-direction: column;
    text-align: center;
  }

  .featured-img {
    width: 100%;
    max-width: 250px;
    margin: auto;
  }
  
  .featured-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth; /* IMPORTANT */
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

/* Hide ugly scrollbar */
.featured-slider::-webkit-scrollbar {
  display: none;
}

.featured-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-slide {
  min-width: 320px;
  flex: 0 0 auto;
  background: #1e293b;
  padding: 20px;
  border-radius: 15px;
  scroll-snap-align: start;
  transition: 0.3s;
}

} /* <-- close @media (max-width: 768px) block */

.featured-slide:hover {
  transform: scale(1.03);
}

/* ==========================================================
   ========== PREMIUM SERVICES SECTION (NEW) ===============
========================================================== */
.services-luxe {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
  overflow: hidden;
}

.services-bg-accent {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,106,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-luxe::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15,23,42,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.services-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a96a;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(200,169,106,0.1);
  border-radius: 30px;
  margin-bottom: 18px;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.services-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.services-luxe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

.service-luxe-card {
  position: relative;
  background: #fff;
  padding: 36px 28px 32px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15,23,42,0.04);
  border: 1px solid rgba(200,169,106,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-luxe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8a96a, #e5d3a3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-luxe-card::after {
  content: "";
  position: absolute;
  bottom: -60%;
  right: -60%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,169,106,0.12), transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  pointer-events: none;
}

.service-luxe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15,23,42,0.1);
  border-color: rgba(200,169,106,0.3);
}
.service-luxe-card:hover::before { transform: scaleX(1); }
.service-luxe-card:hover::after {
  bottom: -30%;
  right: -30%;
}

.service-luxe-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #faf7f0, #fff);
  border: 1px solid rgba(200,169,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #c8a96a;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-luxe-icon svg {
  width: 28px;
  height: 28px;
}

.service-luxe-card:hover .service-luxe-icon {
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
  border-color: #c8a96a;
}

.service-luxe-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.service-luxe-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-luxe-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c8a96a;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-luxe-cta svg {
  transition: transform 0.3s ease;
}

.service-luxe-card:hover .service-luxe-cta {
  color: #0f172a;
}
.service-luxe-card:hover .service-luxe-cta svg {
  transform: translateX(6px);
}

@media (max-width: 1024px) {
  .services-luxe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .services-luxe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-title { font-size: 30px; }
  .service-luxe-card { padding: 28px 22px; min-height: 240px; }
  .services-luxe { padding: 80px 0; }
}
@media (max-width: 480px) {
  .services-luxe-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   ========== PREMIUM CONTACT PAGE (NEW) ===================
========================================================== */
.contact-luxe {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #faf7f0 0%, #ffffff 60%);
  overflow: hidden;
}

.contact-luxe-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,106,0.12), transparent 70%);
  pointer-events: none;
}

.contact-luxe-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a96a;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(200,169,106,0.1);
  border-radius: 30px;
  margin-bottom: 18px;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.contact-subtitle {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.contact-luxe-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* LEFT PANEL */
.contact-info-card {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 45px 38px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,23,42,0.25);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200,169,106,0.2), transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.info-intro {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 35px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
}

.info-item span.info-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8a96a;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item a,
.info-item p {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  display: block;
}
.info-item a:hover { color: #e5d3a3; }

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-socials a:hover {
  background: #c8a96a;
  transform: translateY(-3px);
}

/* RIGHT PANEL */
.contact-form-card {
  background: #fff;
  padding: 45px 42px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
  border: 1px solid rgba(200,169,106,0.1);
}

.contact-form-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  color: #0f172a;
}

.form-intro {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 30px;
}

.contact-luxe-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-luxe-form .form-field {
  margin-bottom: 18px;
}

.contact-luxe-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.contact-luxe-form label span {
  color: #c8a96a;
}

.contact-luxe-form input,
.contact-luxe-form select,
.contact-luxe-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
  color: #0f172a;
}
.contact-luxe-form input:focus,
.contact-luxe-form select:focus,
.contact-luxe-form textarea:focus {
  border-color: #c8a96a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,169,106,0.12);
}

.contact-luxe-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.contact-luxe-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 42px;
}

.btn-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  color: #0f172a;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-family: inherit;
  box-shadow: 0 10px 25px rgba(200,169,106,0.25);
}
.btn-luxe:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200,169,106,0.4);
}

@media (max-width: 900px) {
  .contact-luxe-grid { grid-template-columns: 1fr; }
  .contact-title { font-size: 30px; }
  .contact-info-card, .contact-form-card { padding: 32px 26px; }
  .contact-luxe-form .form-row { grid-template-columns: 1fr; }
}


/* ==========================================================
   ========== SUCCESS POPUP MODAL ==========================
========================================================== */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: overlayIn 0.3s ease forwards;
}

.success-overlay.closing {
  animation: overlayOut 0.3s ease forwards;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes overlayOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.success-modal {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  animation: modalIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15) forwards;
}

.success-overlay.closing .success-modal {
  animation: modalOut 0.3s ease forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.95); }
}

.success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #64748b;
  transition: all 0.3s ease;
}
.success-close:hover { background: #e2e8f0; color: #0f172a; }

.success-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
}

.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #10b981);
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 18px rgba(34,197,94,0); }
}

.success-check {
  position: relative;
  width: 90px;
  height: 90px;
  z-index: 1;
}
.success-check circle {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkCircle 0.7s ease-out 0.2s forwards;
}
.success-check path {
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkPath 0.4s ease-out 0.8s forwards;
}
@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes checkPath {
  to { stroke-dashoffset: 0; }
}

.success-modal h3 {
  font-size: 28px;
  margin: 0 0 10px;
  color: #0f172a;
  font-weight: 700;
}

.success-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}


/* ==========================================================
   ========== SITE-WIDE PROMOTIONAL POPUP ==================
========================================================== */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-popup-overlay.show { opacity: 1; }
.site-popup-overlay.closing { opacity: 0; }

.site-popup {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  max-height: 90vh;
}

.site-popup-overlay.show .site-popup {
  transform: scale(1) translateY(0);
}

.site-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #0f172a;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.site-popup-close:hover { background: #fff; transform: scale(1.1); }

.site-popup-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  min-height: 300px;
}
.site-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-popup-image.agent-mode::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.3));
}

.site-popup-body {
  padding: 45px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-popup-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c8a96a;
  font-weight: 700;
  padding: 5px 14px;
  background: rgba(200,169,106,0.12);
  border-radius: 30px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.site-popup-body h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.2;
}

.site-popup-body .popup-role {
  color: #c8a96a;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 16px;
}

.site-popup-body .popup-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.site-popup-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.popup-btn.primary {
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(200,169,106,0.3);
}
.popup-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,169,106,0.45);
}
.popup-btn.secondary {
  background: #fff;
  color: #0f172a;
  border-color: #e2e8f0;
}
.popup-btn.secondary:hover {
  border-color: #c8a96a;
  color: #c8a96a;
}

@media (max-width: 720px) {
  .site-popup {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .site-popup-image { min-height: 220px; max-height: 220px; }
  .site-popup-body { padding: 30px 26px; }
  .site-popup-body h3 { font-size: 22px; }
}


/* ==========================================================
   ========== CRITICAL FIXES (v2) ==========================
========================================================== */

/* LOADER — hide gracefully so it never blocks view */
#loader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: #c8a96a;
  animation: loaderFade 0.6s ease 1.2s forwards;
  pointer-events: none;
}
#loader .loader-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #c8a96a, #e5d3a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderPulse 1.2s ease infinite;
}
@keyframes loaderFade {
  to { opacity: 0; visibility: hidden; }
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}

/* FORCE-SHOW fade-in elements in the NEW premium sections
   so they ALWAYS render even if JS doesn't fire */
.services-luxe .fade-in,
.services-header.fade-in,
.service-luxe-card.fade-in,
.contact-luxe .fade-in,
.contact-luxe-header.fade-in,
.contact-info-card.fade-in,
.contact-form-card.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ALIGN TO BRAND COLORS — replace off-brand greys with navy/gold palette */
.services-subtitle { color: #4a5568; }
.services-title { color: #0f172a; }
.service-luxe-card p { color: #4a5568; }
.service-luxe-card h3 { color: #0f172a; }

.contact-title { color: #0f172a; }
.contact-subtitle { color: #4a5568; }
.contact-form-card h3 { color: #0f172a; }
.form-intro { color: #4a5568; }
.contact-luxe-form label { color: #0f172a; }

.success-modal h3 { color: #0f172a; }
.success-text { color: #4a5568; }

.site-popup-body h3 { color: #0f172a; }
.site-popup-body .popup-desc { color: #4a5568; }

/* SITE POPUP — fix layout when NO IMAGE is set (was collapsing weirdly in 2-col grid) */
.site-popup.no-image {
  grid-template-columns: 1fr;
  max-width: 500px;
}
.site-popup.has-image {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
  .site-popup.has-image,
  .site-popup.no-image {
    grid-template-columns: 1fr;
  }
}

/* Make popup body look great in single-column mode */
.site-popup.no-image .site-popup-body {
  padding: 50px 44px;
  text-align: center;
}
.site-popup.no-image .site-popup-eyebrow {
  align-self: center;
}
.site-popup.no-image .site-popup-actions {
  justify-content: center;
}

/* CONTACT FORM — tighter brand alignment */
.contact-luxe {
  background: linear-gradient(180deg, #faf7f0 0%, #ffffff 60%);
}
.contact-luxe-form input,
.contact-luxe-form select,
.contact-luxe-form textarea {
  color: #0f172a;
  background: #faf7f0;
  border-color: rgba(200,169,106,0.2);
}
.contact-luxe-form input:focus,
.contact-luxe-form select:focus,
.contact-luxe-form textarea:focus {
  background: #fff;
  border-color: #c8a96a;
}

/* SERVICES — ensure grid always shows cleanly */
.services-luxe-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) { .services-luxe-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 768px)  { .services-luxe-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .services-luxe-grid { grid-template-columns: 1fr !important; } }