/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
}


/* This styles the hanging container */
.premium-card {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    width: 340px;
    
    /* The Glass Effect */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px); /* Blurs the background slightly for a pro look */
    
    /* Borders & Corners */
    border-left: 4px solid #D4AF37 !important; /* Elegant gold vertical bar */
    border-radius: 4px; /* Subtle rounding is more premium than heavy rounding */
    
    /* Shadow & Depth */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
    z-index: 999 !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); /* Smoother animation */
}

.card-content {
    padding: 30px;
    font-family: 'Playfair Display', serif; /* This is the "Luxury" font */
}

.luxury-badge {
    color: #D4AF37;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 15px;
    border-bottom: 1px solid #D4AF37;
    display: inline-block;
    padding-bottom: 4px;
}

.card-content h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

.card-content p {
    font-family: 'Inter', sans-serif; /* Clean body font */
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.premium-link {
    text-decoration: none;
    color: #fff;
    background: #1a1a1a;
    padding: 12px 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.4s;
}

.premium-link:hover {
    background: #D4AF37;
    color: #1a1a1a;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-btn:hover { color: #111; }

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #E6E6E6;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 55px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #1F3C88;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #C9A24D;
}

/* underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #C9A24D;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */

  /* HOME PAGE HERO */
.hero {
    min-height: 100vh; /* VERY IMPORTANT */
    background-image: url("../assets/images/homepage.png"); /* adjust path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("../assets/images/home-bg.jpg") center/cover no-repeat;
    height: 100vh;
    width: 100%;
}

main, .hero-content {
    padding-top: 100px; /* This prevents the fixed navbar from covering your title */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevents the horizontal scroll issue seen in the shot */
}
/* Specific image for Luxury Residential Page */
.residential-hero {
    min-height: 80vh;
    background-image: url("../assets/images/luxury-residential.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  color: #ffffff; /* Logo blue */
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f5f7fb;
    overflow: hidden;
}

/* ANIMATED WATERMARK */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/watermark.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 380px;
    opacity: 0.03;
    animation: watermarkFloat 25s ease-in-out infinite;
    z-index: 1;
}

/* HERO CONTENT ABOVE WATERMARK */
.hero-content {
    position: relative;
    z-index: 2;
}

/* KEYFRAMES */
@keyframes watermarkFloat {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.035;
    }
    50% {
        transform: scale(1.08) translateY(8px);
        opacity: 0.055;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.035;
    }
}



/* BUTTON */
.btn-gold {
  display: inline-block;
  padding: 14px 34px;
  background: #ffae00;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-gold:hover {
  background: #B38C3D;
}

/* =========================
   PAGE SECTIONS
========================= */
.section {
  padding: 70px 20px;
}

.section.light {
  background: #F5F7FA;
}

.section h2 {
  font-size: 34px;
  text-align: center;
  color: #1F3C88;
  margin-bottom: 20px;
}

.section p {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  text-align: center;
}

/* PROPERTIES SECTION */
.properties-section {
  padding: 80px 8%;
  background: #F5F7FA;
}

.section-title {
  font-size: 32px;
  color: #1F3C88;
  text-align: center;
  margin-bottom: 50px;
}

/* GRID */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.property-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
}

.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CARD CONTENT */
.property-info {
  padding: 20px;
}

.property-info h3 {
  font-size: 20px;
  color: #1F3C88;
  margin-bottom: 6px;
}

.property-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #C9A24D;
  color: #C9A24D;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #C9A24D;
  color: #FFFFFF;
}



/* ===============================
   FOOTER (CLEAN & COMPACT)
================================ */

.footer {
  background: #1c3f94;
  color: #ffffff;

  padding: 18px 20px;
  text-align: center;

  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer p {
  margin: 0;
  opacity: 0.9;
}


/* HOME PAGE WATERMARK */
.home-page {
  position: relative;
  background-color: #ffffff;
}

/* Watermark logo */
.home-page::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: url("../assets/images/logo.png") no-repeat center;
  background-size: center 60%;
  opacity: 0.03; /* watermark strength */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Keep content above watermark */
.home-page > * {
  position: relative;
  z-index: 2;
}

.page-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
    background: #f4f4f4;
    width: 100%;
    display: block;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #1c3f94;
    margin-bottom: 10px;
    display: block;
}

.page-hero p {
    font-size: 1.2rem;
    color: #555;
    display: block;
}

/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 70px 20px;
    background: #ffffff;
}

/* FIXED container name */
.about-container {
    max-width: 1000px;
    margin-left: 60px;   /* pushes content to LEFT */
    margin-right: auto;
}

/* HEADINGS */
.about-section h2 {
    font-size: 28px;
    margin: 40px 0 15px;
    color: #1c3f94;
}

/* PARAGRAPHS */
.about-section p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
}

/* ================= FOUNDER ================= */

.founder-section {
    margin-top: 60px;
    padding: 40px;
    background: #f7f9fd;
    border-left: 5px solid #c9a24d;
}

.founder-text {
    font-style: italic;
    font-size: 17px;
    line-height: 1.9;
}

.founder-name {
    margin-top: 15px;
    font-weight: bold;
    color: #1c3f94;
}

/* ================= TIMELINE ================= */

.timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}

.timeline-item span {
    font-weight: bold;
    color: #c9a24d;
    min-width: 70px;
}

/* ================= STATS ================= */

.stats-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 20px;
    background: #ffffff;
    text-align: left;
}

.stat-box h3 {
    font-size: 42px;
    color: #1c3f94;
}

.stat-box p {
    margin-top: 8px;
    color: #555;
}

/* ================= REVEAL ANIMATION ================= */

/* Initial hidden state */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

/* When JS adds class */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= ABOUT HERO ================= */

.about-hero {
    text-align: center;
    padding: 120px 20px 80px;
}

.about-logo {
    width: 120px;
    margin: 20px auto 16px;
    display: block;
    opacity: 0.95;
    animation: fadeScale 1.2s ease forwards;
}


@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= INTERIOR DESIGN PAGE ================= */

.interior-hero {
    text-align: center;
    padding: 140px 20px 100px;
    background: #f8f9fb;
}

.interior-hero h1 {
    font-size: 42px;
    color: #163c8c;
    margin-bottom: 16px;
}

.hero-logo {
    width: 90px;
    margin: 10px auto 18px;
    opacity: 0.9;
}

.interior-hero p {
    font-size: 18px;
    color: #555;
}

/* Intro */
.interior-intro {
    padding: 80px 20px;
    background: #ffffff;
}

.interior-intro h2 {
    text-align: center;
    color: #163c8c;
    margin-bottom: 20px;
}

.interior-intro p {
    max-width: 900px;
    margin: auto;
    text-align: center;
    line-height: 1.8;
    color: #444;
}

/* Services */
.interior-services {
    padding: 90px 20px;
    background: #f6f7fa;
    text-align: center;
}

.interior-services h2 {
    color: #163c8c;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    color: #163c8c;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
}

/* Process */
.interior-process {
    padding: 90px 20px;
    background: #ffffff;
    text-align: center;
}

.interior-process h2 {
    color: #163c8c;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    width: 220px;
}

.step span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #163c8c;
    color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
}

.step p {
    color: #444;
}

/* CTA */
.interior-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, #163c8c, #0f2c6e);
    text-align: center;
    color: #fff;
}

.interior-cta h2 {
    margin-bottom: 25px;
}

.cta-btn {
    padding: 14px 36px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

/* ===============================
   SERVICE PAGES – RENOVATION
================================ */

.service-hero {
  background: #f6f7f9;
  padding: 100px 20px;
  text-align: center;
}

.service-hero h1 {
  font-size: 42px;
  color: #1f3c88; /* Logo blue */
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 18px;
  color: #555;
}

.service-overview {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.service-overview h2 {
  font-size: 32px;
  color: #1f3c88;
  margin-bottom: 20px;
}

.service-overview p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.service-features {
  padding: 80px 20px;
  background: #f9fafc;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 35px;
  border-left: 5px solid #c9a24d; /* Gold accent */
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card h3 {
  color: #1f3c88;
  margin-bottom: 12px;
}

.feature-card p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.6;
}

.service-cta {
  background: linear-gradient(135deg, #1f3c88, #142a5c);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.service-cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 17px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #c9a24d;
  color: #fff;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.btn-primary:hover {
  background: #b18c3e;
}

/* =========================
   SERVICE HERO (INNER PAGES)
========================= */

.service-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  width: 100%;
  margin-top: 80px; /* header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

/* Background image for Renovation page */
.renovation-hero {
  background-image: url("../assets/images/renovation.png") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Hero text */
.service-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.service-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .service-hero {
    height: 65vh;
    min-height: 420px;
  }

  .service-hero h1 {
    font-size: 2.2rem;
  }

  .service-hero p {
    font-size: 1rem;
  }
}


/* =====================================================
   COMMON CONTAINER
===================================================== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =====================================================
   SERVICE HERO SECTION
===================================================== */
.service-hero {
    background: #f6f7f9;
    padding: 120px 20px 90px;
    text-align: center;
}

.service-hero h1 {
    font-size: 42px;
    color: #1f3c88; /* Brand blue */
    margin-bottom: 12px;
}

.service-hero p {
    font-size: 18px;
    color: #555;
}

/* =====================================================
   SERVICE OVERVIEW
===================================================== */
.service-overview {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.service-overview h2 {
    font-size: 32px;
    color: #1f3c88;
    margin-bottom: 20px;
}

.service-overview p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* =====================================================
   SERVICE FEATURES GRID
===================================================== */
.service-features {
    background: #f9fafc;
    padding: 90px 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 35px 30px;
    border-left: 5px solid #c9a24d; /* Gold accent */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: #1f3c88;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.6;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.interior-process {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.interior-process h2 {
    font-size: 32px;
    color: #1f3c88;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.step {
    width: 220px;
}

.step span {
    display: inline-block;
    width: 62px;
    height: 62px;
    line-height: 62px;
    border-radius: 50%;
    background: #1f3c88;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    font-size: 15.5px;
    color: #444;
}

/* =====================================================
   CTA SECTION
===================================================== */
.service-cta {
    background: linear-gradient(135deg, #1f3c88, #142a5c);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.service-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #c9a24d;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: #b18c3e;
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE FIXES
===================================================== */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 34px;
    }

    .service-overview h2,
    .interior-process h2,
    .service-cta h2 {
        font-size: 26px;
    }

    .process-steps {
        gap: 25px;
    }
}

/* ================================
   INTERIOR DESIGN HERO BACKGROUND
================================ */

.interior-hero {
    position: relative;
    background: url("../assets/images/interior_design.png") center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark luxury overlay */
.interior-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content above overlay */
.interior-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.interior-hero-content h1 {
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;  
  position: relative;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.interior-hero-content p {
  color: #ffffff;
  opacity: 1;
  z-index: 2;
  position: relative;  
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


.interior-hero img {
    width: 90px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .interior-hero h1 {
        font-size: 32px;
    }
}

/* Remove underline only in Services section */
.services a {
    text-decoration: none;
    border-bottom: none;
}

.services li,
.services li a {
    text-decoration: none !important;
    border: none !important;
}

.services a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Remove underline from entire service cards */
.service-card {
    text-decoration: none !important;
    color: inherit;
}

/* Remove underline from all children inside card */
.service-card * {
    text-decoration: none !important;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 6%;
    background: #f6f8fb;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* GLASS CARD */
.service-card {
    text-decoration: none !important;
    color: #0f2c5c;
    padding: 40px 30px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* REMOVE UNDERLINES COMPLETELY */
.service-card * {
    text-decoration: none !important;
}

/* GOLD ACCENT STRIP */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8962e);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.18);
}

/* TITLE */
.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f2c5c;
}

/* DESCRIPTION */
.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* SUBTLE GLOW ON HOVER */
.service-card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    opacity: 0.6;
}

/* HERO */
.renovation-hero {
    background: url("../assets/images/renovation.png") center/cover no-repeat;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* INTRO */
.service-intro {
    padding: 80px 8%;
    text-align: center;
}

.service-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0f2c5c;
}

.service-intro p {
    max-width: 850px;
    margin: auto;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

/* FEATURES */
.renovation-features {
    padding: 80px 8%;
    background: #f7f9fc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h3 {
    color: #0f2c5c;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* PROCESS */
.process-section {
    padding: 80px 8%;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    padding: 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-step span {
    display: block;
    font-size: 32px;
    color: #d4af37;
    font-weight: 700;
}

.process-step h4 {
    margin: 15px 0 10px;
    color: #0f2c5c;
}

/* CTA */
.service-cta {
    background: linear-gradient(135deg, #0f2c5c, #123d7a);
    color: #fff;
    text-align: center;
    padding: 80px 8%;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 17px;
}

.cta-btn {
    background: #d4af37;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    background: #b8962e;
}

/* REMOVE UNDERLINES FROM NAV LINKS */
.main-nav a {
    text-decoration: none !important;
    color: #0f2c5c; /* keep brand color */
    font-weight: 500;
    gap: 50px;
}

.main-nav a:hover {
    color: #ffee00; /* luxury gold */
}

/* FORCE HERO TEXT COLOR */
.renovation-hero .hero-content h1,
.renovation-hero .hero-content p {
    color: #ffffff !important;
}


.premium-card {
    display: none; /* Hide by default */
    opacity: 0;
    transform: translateX(100px); /* Slide it off-screen to the right */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* 1. Fix the Header for Service Pages */
.site-header {
    background: #ffffff !important;
    display: block;
    width: 100%;
}

/* 2. Remove that dark/grey 'unknown' background */
body {
    background-color: #ffffff !important;
}

/* 3. Style the Residential Hero to be clean and light */
.service-hero {
    background: #f8f9fb; /* Light grey instead of dark overlay */
    padding: 100px 20px;
    text-align: center;
    color: #1f3c88; /* Brand Blue */
}

.service-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1f3c88;
}

.service-hero p {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* 4. Ensure Nav links aren't stacked vertically */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}


/* Force the Header to be a horizontal row */
.nav-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    padding: 0 5%;
}

/* Force the Links to be horizontal and remove bullet points */
.nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    list-style: none !important;
}

.nav-links a {
    text-decoration: none;
    color: #1c3f94;
    font-weight: 600;
    white-space: nowrap; /* Keeps links on one line */
}

/* Fix for the 'Unknown Color' (Grey background) */
.service-hero {
    background: #ffffff !important; /* Forces background to white */
    padding: 60px 0;
    text-align: center;
}

    /* EMERGENCY LAYOUT FIX */
    .nav-container {
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-between !important;
      align-items: center !important;
      padding: 15px 5%;
      background: #fff;
    }
    .nav-links {
      display: flex !important;
      flex-direction: row !important;
      gap: 25px !important;
      list-style: none !important; /* Removes those bullet points */
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      text-decoration: none !important;
      color: #1c3f94 !important;
      font-weight: 600;
      white-space: nowrap;
    }
    .logo img { height: 50px; }
  
    /* FIX NAVBAR LAYOUT */
.main-nav ul {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;

    list-style: none;
    margin: 0;
    padding: 0;
}

/* REMOVE BULLETS & FORCE INLINE */
.main-nav li {
    display: inline-block;
}

/* NAV LINKS STYLE */
.main-nav a {
    text-decoration: none;
    color: #0d2c6c;
    font-weight: 500;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

/* FORCE NAVBAR TO HORIZONTAL — FINAL FIX */
header nav ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 30px !important;

    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

header nav ul li {
    display: inline-block !important;
}

header nav ul li a {
    text-decoration: none !important;
    color: #0d2c6c;
    font-weight: 500;
}

header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 60px;
}

/* 1. Fix the Header to the top of every page */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Base height of the nav bar */
    background: #ffffff;
    z-index: 999; /* Keeps it above everything else */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

/* 2. Style the Logo to overlap the header */
.logo {
    position: relative;
    padding-left: 20px;
}

.logo img {
    height: 100px !important; /* Increased size */
    width: auto;
    position: absolute;
    top: -10px; /* Adjust this to let the logo "hang" over the header */
    left: 20px;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* 3. Push the rest of the page content down so it's not hidden under the header */
body {
    padding-top: 80px; 
}
/* The Header/Navbar should be high, but not the highest */
.site-header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000 !important; /* Base level for navbar */
    background: #ffffff;
}

/* The Logo needs to be HIGHER than the header to overlap it */
.logo img {
    position: absolute; /* or relative, depending on your layout */
    z-index: 9999 !important; /* Much higher than the header */
}

/* If you have a specific hanging container */
.nav-container {
    position: relative;
    z-index: 1001; 
}

/* GLOBAL HEADER FIX */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: white;
    z-index: 1000;
}

header nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #0d2c6c;
    font-weight: 500;
}

.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-layout {
    width: 100%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.hero-left {
    color: #0d2c6c;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: #ffb300;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}


@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }
}

/* Ensure the Header is the top layer */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999 !important; /* Extremely high to stay on top */
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ensure the logo container allows the image to 'hang' without being hidden */
.logo {
    position: relative;
    z-index: 10000 !important; /* Higher than the header background */
}

/* Fix the content cards (Upcoming Projects) so they don't slide under/over incorrectly */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    background: white;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.nav-links {
    display: flex;
    gap: 40px;
}


.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #0b2a5b;
}

.hero {
    position: relative;
    height: 100vh;
    margin-top: 90px;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1f3c88;
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   SCROLL ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT ALIGN ABOUT CONTENT */
.about-left {
  max-width: 900px;
  margin-left: 80px;   /* pushes content from extreme left */
  margin-right: auto;  /* keeps it left aligned */
  text-align: left;
}

/* Founder Message */
.founder-section h2,
.timeline-section h2 {
  text-align: left;
}

.founder-text {
  max-width: 700px;
  line-height: 1.7;
}

/* Timeline alignment */
.timeline {
  margin-top: 30px;
}

.timeline-item {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.timeline-item span {
  font-weight: 600;
  color: #c9a44d; /* luxury gold */
  min-width: 80px;
}

.about-left {
  border-left: 4px solid #c9a44d;
  padding-left: 40px;
}

/* ===============================
   ABOUT CTA SECTION
================================ */

.about-cta {
  min-height: 60vh;
  background: #1c3f94;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */

  text-align: center;
  padding: 40px 20px;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.about-cta .btn-primary {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 30px;
  background: #c9a24d;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  background: #b8923f;
  transform: translateY(-3px);
}

/* Popup container */
.project-popup {
  position: fixed;
  top: 80px; /* just below navbar */
  right: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 999;
}

.project-popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0);
}

/* Rope effect */
.popup-rope {
  width: 2px;
  height: 30px;
  background: #c9a24d;
  margin: auto;
}

/* Popup card */
.popup-card {
  width: 280px;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border-top: 4px solid #c9a24d;
  position: relative;
  animation: swingIn 0.8s ease;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

/* Text */
.popup-card h4 {
  margin: 0 0 10px;
  color: #1c3f94;
  font-size: 18px;
}

.popup-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Button */
.popup-card button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #1c3f94;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.popup-card button:hover {
  background: #16357d;
}

/* Hanging animation */
@keyframes swingIn {
  0% {
    transform: translateY(-20px) rotate(-5deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* ================= CONTACT PAGE STYLES ================= */

/* Hero Section */
.contact-hero {
    height: 45vh;
    background: linear-gradient(rgba(28, 63, 148, 0.8), rgba(28, 63, 148, 0.8)), 
                url('../assets/images/contact-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 160px; /* Space for the fixed header */
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Contact Section Layout */
.contact-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Side by side on desktop */
    gap: 50px;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Left Info Styling */
.contact-info h2 {
    color: #1c3f94;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

/* Right Form Styling */
.contact-form h2 {
    margin-bottom: 25px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, 
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #d1d9e6;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #1c3f94;
    box-shadow: 0 0 5px rgba(28, 63, 148, 0.1);
    outline: none;
}

.contact-form button {
    background-color: #ffb400; /* Matching your orange/gold theme */
    color: white;
    padding: 12px 15px;
    width: fit-content;
    align-self:center;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
}

.contact-form button:hover {
    background-color: #e6a200;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stacked on mobile */
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

.site-header {
    z-index: 9999 !important; /* Always on top */
}

.logo img {
    z-index: 10000 !important; /* On top of the header bar */
}

/* This pushes the Contact Hero down so the title isn't hidden by the logo */
.contact-hero {
    padding-top: 120px; 
}
.map-section {
  padding: 70px 20px;
  background: #f7f9fd; /* light luxury background */
}

.map-container {
  max-width: 1100px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.map-container iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* --- Gallery Grid Layout --- */
/* Container and Header */
.gallery-page {
    padding: 120px 5% 60px; /* Space for your hanging logo */
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    color: #1c3f94;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Filter Buttons Styling */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #1c3f94;
    background: transparent;
    color: #1c3f94;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #1c3f94;
    color: #fff;
}

/* The Grid - 3 Columns */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Perfect Squares */
.card-inner {
    position: relative;
    aspect-ratio: 1 / 1; /* This makes it a perfect square regardless of image size */
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents images from stretching */
    transition: 0.6s transform;
}

/* Elegant Hover Effect */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(28, 63, 148, 0.85); /* Premium blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s opacity;
}

.gallery-card:hover .card-overlay { opacity: 1; }
.gallery-card:hover img { transform: scale(1.1); }

.overlay-text {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay-text p {
    color: #ffb400; /* Gold Accent */
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.overlay-text h3 {
    font-size: 1.4rem;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 992px) { .luxury-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .luxury-grid { grid-template-columns: 1fr; } }


#thank-you-message {
    background: #f8faff;
    border: 1px solid #1c3f94;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats Section Styling */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background: #f8faff;
    margin: 40px 0;
    border-radius: 8px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #1c3f94; /* Brand Blue */
    margin-bottom: 5px;
}

/* Timeline Vertical Styling */
.timeline {
    border-left: 2px solid #ffb400; /* Gold Line */
    margin: 40px auto;
    padding-left: 30px;
    max-width: 600px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #1c3f94;
    border: 2px solid #ffb400;
    border-radius: 50%;
}

.year {
    font-weight: bold;
    color: #ffb400;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.phi-box {
    padding: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 3px solid #1c3f94;
}

/* ===== PREMIUM GOLD MAP BORDER ===== */
.map-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

/* Gold accent frame */
.map-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #c9a24d; /* luxury gold */
  border-radius: 18px;
  pointer-events: none;
}

/* Soft premium shadow */
.map-container {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.map-title {
  text-align: center;
  font-size: 28px;
  color: #1c3f94;
  margin-bottom: 30px;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 80px 20px;
  background: #f7f9fd;
}

/* ===== GOLD PIN ===== */
.gold-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 5;
}

/* Pin head */
.gold-pin::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #c9a24d;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 18px rgba(201, 162, 77, 0.8);
}

/* Pin tail */
.gold-pin::after {
  content: "";
  width: 4px;
  height: 22px;
  background: #c9a24d;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}

/* Pulse animation */
.pin-pulse {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 26px;
  height: 26px;
  background: rgba(201, 162, 77, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.9;
  }
  100% {
    transform: translateX(-50%) scale(2.2);
    opacity: 0;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1c3f94;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #1c3f94;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover luxury effect */
.social-icons a:hover {
  background: #c9a24d;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.5);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #ffffff; /* IMPORTANT */
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 60px !important;
  height: 60px !important;
  background: #25d366 !important;
  font-size: 28px;
  border-radius: 50% !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Floating Social Icons */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Individual Icon Style */
.floating-social a {
  width: 52px;
  height: 52px;
  background: #c9a14a; /* Luxury gold */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.45);
  animation: floatIcon 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.floating-social a:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 28px rgba(201, 161, 74, 0.7);
}

/* Staggered Animation */
.floating-social a:nth-child(1) { animation-delay: 0s; }
.floating-social a:nth-child(2) { animation-delay: 0.2s; }
.floating-social a:nth-child(3) { animation-delay: 0.4s; }
.floating-social a:nth-child(4) { animation-delay: 0.6s; }

/* Floating Keyframes */
@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .floating-social {
    right: 14px;
    bottom: 14px;
  }

  .floating-social a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .floating-social a:not(:first-child) {
    display: none;
  }
}


/* Hide on scroll */
.floating-social.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Gallery Cards */
.gallery-section {
  padding: 80px 6%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-info {
  padding: 18px;
}

.card-info span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b08d57;
  font-weight: 600;
}

.card-info h3 {
  margin-top: 6px;
  font-size: 18px;
  color: #111;
}

.gallery-hero {
  text-align: center;
  padding: 80px 6% 40px;
}

.gallery-hero h1 {
  font-size: 42px;
  margin: 12px 0;
}

.gallery-hero p {
  font-size: 16px;
  color: #666;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.gallery-hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #b08d57;
  margin: 14px auto 0;
  border-radius: 2px;
}


/* ======================================
   PROPERTY DEVELOPMENT – INNER PAGE
====================================== */

/* HERO */
.inner-hero {
    padding: 140px 8% 80px;
    background: linear-gradient(180deg, #f7f9fc, #ffffff);
    text-align: center;
}

.inner-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0b2c6d;
    margin-bottom: 12px;
}

.inner-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* INTRO */
.content-section {
    padding: 80px 8%;
}

.content-container {
    max-width: 900px;
}

.content-container h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #111;
}

.content-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* PROCESS */
.process-section {
    padding: 100px 8%;
    background: #f9fafc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    color: #0b2c6d;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.process-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.process-card i {
    font-size: 38px;
    color: #0b2c6d;
    margin-bottom: 22px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.process-card p {
    font-size: 15.5px;
    color: #666;
    line-height: 1.6;
}

/* WHY ENRICH */
.why-enrich {
    padding: 100px 8%;
    background: #ffffff;
}

.why-enrich h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #0b2c6d;
}

.why-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.why-grid div {
    background: #f7f9fc;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

section.renovation-hero {
  background-image: url("../assets/images/renovation.png") !important;
}

/* --- MOBILE STYLES --- */
@media screen and (max-width: 768px) {
    
    /* 1. Stop horizontal scrolling */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    /* 2. Make all sections stack vertically instead of side-by-side */
    /* Note: Replace '.flex-container' with whatever class holds your rows */
    .row, .container, .flex-box { 
        flex-direction: column !important;
        width: 100% !important;
    }

    /* 3. Make images shrink to fit the screen */
    img {
        max-width: 100%;
        height: auto;
    }

    /* 4. Adjust text size if needed */
    h1 { font-size: 28px; }
    p { font-size: 16px; padding: 0 15px; }
}

/* --- MOBILE FIXES --- */
@media screen and (max-width: 768px) {
    
    /* 1. Fix the squashed Logo */
    img {
        height: auto !important; /* Keeps the image shape correct */
        max-width: 100%; /* Prevents it from overflowing */
    }
    
    /* Specific fix for the header logo if it has a class like .logo */
    header img, .navbar-brand img {
        width: 120px; /* Gives it a reasonable width */
        display: block;
        margin: 0 auto; /* Centers it */
    }

    /* 2. Temporarily hide the "Waitlist" popup on mobile so you can see the menu */
    /* (Assuming the popup has a class like 'modal' or 'popup' - adjust if needed) */
    .popup, .modal, .waitlist-container {
        display: none !important;
    }
}

/* --- MOBILE NAVIGATION FIX --- */

/* 1. Desktop Default: Hide hamburger, show menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333; /* Dark color for lines */
    margin: 5px 0;
}

/* 2. Mobile View (Phones) */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block; /* Show the 3-line button */
        z-index: 1001;
    }

    .nav-links {
        display: none; /* HIDE the menu links by default */
        position: absolute;
        top: 100%; /* Push it right below the header */
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* This class 'active' will be added by JavaScript when you click */
    .nav-links.active {
        display: flex; 
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        display: block;
    }
}